diff options
author | Greg Clayton <gclayton@apple.com> | 2011-12-10 21:05:26 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-12-10 21:05:26 +0000 |
commit | 6f6bf26a3e8e5baeec72aad1a68f384c0a9264dd (patch) | |
tree | f602656ba7ae12d1c288b3abdaa86d0eb9f9f5f8 /lldb/source/Core/Address.cpp | |
parent | 53d2fb0aa26bc73c89bae3c74afd103f28602c65 (diff) | |
download | bcm5719-llvm-6f6bf26a3e8e5baeec72aad1a68f384c0a9264dd.tar.gz bcm5719-llvm-6f6bf26a3e8e5baeec72aad1a68f384c0a9264dd.zip |
<rdar://problem/9958446>
<rdar://problem/10561406>
Stopped the SymbolFileDWARF::FindFunctions (...) from always calculating
the line table entry for all functions that were found. This can slow down
the expression parser if it ends up finding a bunch of matches. Fixed the
places that were relying on the line table entry being filled in.
Discovered a recursive stack blowout that happened when "main" didn't have
line info for it and there was no line information for "main"
llvm-svn: 146330
Diffstat (limited to 'lldb/source/Core/Address.cpp')
-rw-r--r-- | lldb/source/Core/Address.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lldb/source/Core/Address.cpp b/lldb/source/Core/Address.cpp index 89131caddea..2ea3bb17312 100644 --- a/lldb/source/Core/Address.cpp +++ b/lldb/source/Core/Address.cpp @@ -729,7 +729,7 @@ Address::Dump (Stream *s, ExecutionContextScope *exe_scope, DumpStyle style, Dum } uint32_t -Address::CalculateSymbolContext (SymbolContext *sc, uint32_t resolve_scope) +Address::CalculateSymbolContext (SymbolContext *sc, uint32_t resolve_scope) const { sc->Clear(); // Absolute addresses don't have enough information to reconstruct even their target. @@ -747,7 +747,7 @@ Address::CalculateSymbolContext (SymbolContext *sc, uint32_t resolve_scope) } Module * -Address::CalculateSymbolContextModule () +Address::CalculateSymbolContextModule () const { if (m_section) return m_section->GetModule(); @@ -755,7 +755,7 @@ Address::CalculateSymbolContextModule () } CompileUnit * -Address::CalculateSymbolContextCompileUnit () +Address::CalculateSymbolContextCompileUnit () const { if (m_section) { @@ -771,7 +771,7 @@ Address::CalculateSymbolContextCompileUnit () } Function * -Address::CalculateSymbolContextFunction () +Address::CalculateSymbolContextFunction () const { if (m_section) { @@ -787,7 +787,7 @@ Address::CalculateSymbolContextFunction () } Block * -Address::CalculateSymbolContextBlock () +Address::CalculateSymbolContextBlock () const { if (m_section) { @@ -803,7 +803,7 @@ Address::CalculateSymbolContextBlock () } Symbol * -Address::CalculateSymbolContextSymbol () +Address::CalculateSymbolContextSymbol () const { if (m_section) { @@ -819,7 +819,7 @@ Address::CalculateSymbolContextSymbol () } bool -Address::CalculateSymbolContextLineEntry (LineEntry &line_entry) +Address::CalculateSymbolContextLineEntry (LineEntry &line_entry) const { if (m_section) { |