diff options
author | Greg Clayton <gclayton@apple.com> | 2012-03-06 22:24:44 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2012-03-06 22:24:44 +0000 |
commit | 9c76611055e82a37e83bdbc45bd242c1662204e3 (patch) | |
tree | 5d90311f13e34ea3410f89b3e95730fbd92b16a0 /lldb/scripts/Python/interface/SBTarget.i | |
parent | 5652716a7a069a5acdaf6f77c4412d1a683607b6 (diff) | |
download | bcm5719-llvm-9c76611055e82a37e83bdbc45bd242c1662204e3.tar.gz bcm5719-llvm-9c76611055e82a37e83bdbc45bd242c1662204e3.zip |
Added the ability to disassembly "count" instructions given a SBAddress.
This was done in SBTarget:
lldb::SBInstructionList
lldb::SBTarget::ReadInstructions (lldb::SBAddress base_addr, uint32_t count);
Also cleaned up a few files in the LLDB.framework settings.
llvm-svn: 152152
Diffstat (limited to 'lldb/scripts/Python/interface/SBTarget.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBTarget.i | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBTarget.i b/lldb/scripts/Python/interface/SBTarget.i index b6333d44d9f..fccecd3b490 100644 --- a/lldb/scripts/Python/interface/SBTarget.i +++ b/lldb/scripts/Python/interface/SBTarget.i @@ -669,6 +669,9 @@ public: GetBroadcaster () const; lldb::SBInstructionList + ReadInstructions (lldb::SBAddress base_addr, uint32_t count); + + lldb::SBInstructionList GetInstructions (lldb::SBAddress base_addr, const void *buf, size_t size); bool |