summaryrefslogtreecommitdiffstats
path: root/lldb/source/API/SBSymbol.cpp
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2013-09-12 23:23:35 +0000
committerJason Molenda <jmolenda@apple.com>2013-09-12 23:23:35 +0000
commit6b3e6d54871f02cdaca323a80051f2d744b39b76 (patch)
treef4eaf6aa66fd66b3e977f654b25e845cd7e4aced /lldb/source/API/SBSymbol.cpp
parenta5ebe426a5a6202240e95a5b478b5163761310a7 (diff)
downloadbcm5719-llvm-6b3e6d54871f02cdaca323a80051f2d744b39b76.tar.gz
bcm5719-llvm-6b3e6d54871f02cdaca323a80051f2d744b39b76.zip
Disassembler::DisassembleRange() currently calls Target::ReadMemory
with prefer_file_cache == false. This is what we want to do when the user is doing a disassemble command -- show the actual memory contents in case the memory has been corrupted or something -- but when we're profiling functions for stepping or unwinding (ThreadPlanStepRange::GetInstructionsForAddress, UnwindAssemblyInstEmulation::GetNonCallSiteUnwindP) we can read __TEXT instructions directly out of the file, if it exists. <rdar://problem/14397491> llvm-svn: 190638
Diffstat (limited to 'lldb/source/API/SBSymbol.cpp')
-rw-r--r--lldb/source/API/SBSymbol.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/source/API/SBSymbol.cpp b/lldb/source/API/SBSymbol.cpp
index dd057e81a55..ef3d0764c96 100644
--- a/lldb/source/API/SBSymbol.cpp
+++ b/lldb/source/API/SBSymbol.cpp
@@ -139,11 +139,13 @@ SBSymbol::GetInstructions (SBTarget target, const char *flavor_string)
if (module_sp)
{
AddressRange symbol_range (m_opaque_ptr->GetAddress(), m_opaque_ptr->GetByteSize());
+ const bool prefer_file_cache = false;
sb_instructions.SetDisassembler (Disassembler::DisassembleRange (module_sp->GetArchitecture (),
NULL,
flavor_string,
exe_ctx,
- symbol_range));
+ symbol_range,
+ prefer_file_cache));
}
}
}
OpenPOWER on IntegriCloud