gdb_examine
Analyze and display memory contents during debugging sessions by specifying an address, expression, and format (e.g., hex or instructions) with GDB session integration.
Instructions
Examine memory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Number of units to display | |
expression | Yes | Memory address or expression | |
format | No | Display format (e.g., "x" for hex, "i" for instruction) | |
sessionId | Yes | GDB session ID |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"description": "Number of units to display",
"type": "number"
},
"expression": {
"description": "Memory address or expression",
"type": "string"
},
"format": {
"description": "Display format (e.g., \"x\" for hex, \"i\" for instruction)",
"type": "string"
},
"sessionId": {
"description": "GDB session ID",
"type": "string"
}
},
"required": [
"sessionId",
"expression"
],
"type": "object"
}