diff options
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBFunction.i | 3 | ||||
-rw-r--r-- | lldb/scripts/Python/interface/SBSymbol.i | 3 | ||||
-rw-r--r-- | lldb/scripts/Python/interface/SBTarget.i | 6 |
3 files changed, 12 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBFunction.i b/lldb/scripts/Python/interface/SBFunction.i index 8eee92f28d5..0b4d1f2cbb4 100644 --- a/lldb/scripts/Python/interface/SBFunction.i +++ b/lldb/scripts/Python/interface/SBFunction.i @@ -65,6 +65,9 @@ public: lldb::SBInstructionList GetInstructions (lldb::SBTarget target); + lldb::SBInstructionList + GetInstructions (lldb::SBTarget target, const char *flavor); + lldb::SBAddress GetStartAddress (); diff --git a/lldb/scripts/Python/interface/SBSymbol.i b/lldb/scripts/Python/interface/SBSymbol.i index a3656972469..a2cec0ec73e 100644 --- a/lldb/scripts/Python/interface/SBSymbol.i +++ b/lldb/scripts/Python/interface/SBSymbol.i @@ -38,6 +38,9 @@ public: lldb::SBInstructionList GetInstructions (lldb::SBTarget target); + lldb::SBInstructionList + GetInstructions (lldb::SBTarget target, const char *flavor_string); + SBAddress GetStartAddress (); diff --git a/lldb/scripts/Python/interface/SBTarget.i b/lldb/scripts/Python/interface/SBTarget.i index c4fe24be4d5..4e3161eedf9 100644 --- a/lldb/scripts/Python/interface/SBTarget.i +++ b/lldb/scripts/Python/interface/SBTarget.i @@ -704,8 +704,14 @@ public: ReadInstructions (lldb::SBAddress base_addr, uint32_t count); lldb::SBInstructionList + ReadInstructions (lldb::SBAddress base_addr, uint32_t count, const char *flavor_string); + + lldb::SBInstructionList GetInstructions (lldb::SBAddress base_addr, const void *buf, size_t size); + lldb::SBInstructionList + GetInstructionsWithFlavor (lldb::SBAddress base_addr, const char *flavor_string, const void *buf, size_t size); + lldb::SBSymbolContextList FindSymbols (const char *name, lldb::SymbolType type = eSymbolTypeAny); |