aboutsummaryrefslogtreecommitdiff
path: root/gdb/python
AgeCommit message (Expand)AuthorFilesLines
2023-07-04gdb: add __repr__() implementation to a few Python typesMatheus Branco Borella5-6/+160
2023-07-03Fix two Python calls that don't check for errorsTom Tromey1-2/+6
2023-06-28Remove some Python 2 codeTom Tromey2-13/+3
2023-06-22Implement DAP "hover" contextTom Tromey1-0/+13
2023-06-22Implement DAP logging breakpointsTom Tromey1-3/+50
2023-06-22Handle supportsVariablePaging in DAPTom Tromey1-1/+6
2023-06-22Implement type checking for DAP breakpoint requestsTom Tromey1-46/+82
2023-06-22Handle exceptions when creating DAP breakpointsTom Tromey1-33/+56
2023-06-22Reuse breakpoints more frequently in DAPTom Tromey1-2/+4
2023-06-22Fix type of DAP hitConditionTom Tromey1-4/+7
2023-06-22gdb/DAP Few bug fixes & Evaluate Array Watch varsSimon Farre2-2/+2
2023-06-20Use unique_xmalloc_ptr for mi_parse::commandTom Tromey1-1/+1
2023-06-19Fixes f1a614dc8f015743e9fe7fe5f3f019303f8db718Simon Farre1-0/+2
2023-06-19gdb/Python: Added ThreadExitedEventSimon Farre5-0/+33
2023-06-19gdb/dap - Getting thread namesSimon Farre1-1/+7
2023-06-12Remove f-strings from DAPTom Tromey4-4/+4
2023-06-12Implement DAP conditional breakpointsTom Tromey1-16/+53
2023-06-12Do not report totalFrames from DAP stackTrace requestTom Tromey1-7/+5
2023-06-12Implement DAP breakpointLocations requestTom Tromey2-0/+46
2023-06-12Add "stop at main" extension to DAP launch requestTom Tromey1-1/+12
2023-06-12Add "target" parameter to DAP attach requestTom Tromey1-2/+8
2023-06-12Handle DAP supportsVariableType capabilityTom Tromey3-1/+14
2023-06-12Implement DAP setExpression requestTom Tromey1-1/+23
2023-06-12Add gdb.Value.assign methodTom Tromey1-0/+30
2023-06-12Add type-checking to DAP requestsTom Tromey10-28/+161
2023-06-12Use tuples for default arguments in DAPTom Tromey2-3/+3
2023-06-12Fix a latent bug in DAP request decoratorTom Tromey1-2/+3
2023-06-12Rename one DAP functionTom Tromey1-1/+1
2023-06-12Add singleThread support to some DAP requestsTom Tromey1-12/+33
2023-06-12Implement DAP stepOut requestTom Tromey1-0/+6
2023-06-12Implement DAP attach requestTom Tromey1-1/+12
2023-06-12Implement DAP setExceptionBreakpoints requestTom Tromey2-7/+62
2023-06-05gdb: building inferior strings from within GDBAndrew Burgess1-5/+3
2023-06-05[gdb] Fix more typosTom de Vries1-1/+1
2023-06-03[gdb] Fix typosTom de Vries1-1/+1
2023-06-03[gdb/python] Fix doc string of valpy_const_valueTom de Vries1-1/+1
2023-05-31python, btrace: Fix some small formatting issues.Felix Willgerodt2-5/+6
2023-05-25gdb: remove breakpoint_pointer_iteratorSimon Marchi2-6/+6
2023-05-25gdb: remove bp_location_pointer_iteratorSimon Marchi1-2/+2
2023-05-24Add "args" and "env" parameters to DAP launch requestTom Tromey1-2/+18
2023-05-24Add attributes and methods to gdb.InferiorTom Tromey1-0/+169
2023-05-23Handle DAP evaluate request without a frame IDTom Tromey1-1/+3
2023-05-23Add global_context parameter to gdb.parse_and_evalTom Tromey1-6/+22
2023-05-23Implement DAP loadedSources requestTom Tromey2-0/+41
2023-05-23Implement gdb.execute_miTom Tromey3-0/+306
2023-05-23Change mi_parse_argv to a methodTom Tromey1-1/+1
2023-05-23Use accessor for mi_parse::argsTom Tromey1-2/+3
2023-05-23Use field_signed from Python MI commandsTom Tromey2-0/+17
2023-05-22Remove some FIXME comments from DAPTom Tromey4-7/+0
2023-05-16gdb/python: extend the Python Disassembler API to allow for stylingAndrew Burgess1-51/+820