diff options
author | Greg Clayton <gclayton@apple.com> | 2012-06-27 22:22:28 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2012-06-27 22:22:28 +0000 |
commit | fed39aa653441238382bedfb1ad2bfcd09a1962f (patch) | |
tree | f257d43c7e526e9214f40ebd8e45355474db915e /lldb/scripts/Python | |
parent | 0b9d158a7c8966ecac59c79a6d506ad7c28299ca (diff) | |
download | bcm5719-llvm-fed39aa653441238382bedfb1ad2bfcd09a1962f.tar.gz bcm5719-llvm-fed39aa653441238382bedfb1ad2bfcd09a1962f.zip |
Added the ability to read the dSYM plist file with source remappings even when DebugSymbols isn't used to find the dSYM. We now parse the plist as XML in the MacOSX symbol vendor.
Added the ability to get a section load address given a target which is needed for a previous checking which saves crashlogs.
llvm-svn: 159298
Diffstat (limited to 'lldb/scripts/Python')
-rw-r--r-- | lldb/scripts/Python/interface/SBSection.i | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBSection.i b/lldb/scripts/Python/interface/SBSection.i index 95838755c59..1ee908a9fc6 100644 --- a/lldb/scripts/Python/interface/SBSection.i +++ b/lldb/scripts/Python/interface/SBSection.i @@ -66,6 +66,9 @@ public: GetFileAddress (); lldb::addr_t + GetLoadAddress (lldb::SBTarget &target); + + lldb::addr_t GetByteSize (); uint64_t |