aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Symbol/Function.cpp
diff options
context:
space:
mode:
authorKate Stone <katherine.stone@apple.com>2016-09-06 20:57:50 +0000
committerKate Stone <katherine.stone@apple.com>2016-09-06 20:57:50 +0000
commitb9c1b51e45b845debb76d8658edabca70ca56079 (patch)
treedfcb5a13ef2b014202340f47036da383eaee74aa /lldb/source/Symbol/Function.cpp
parentd5aa73376966339caad04013510626ec2e42c760 (diff)
downloadllvm-b9c1b51e45b845debb76d8658edabca70ca56079.zip
llvm-b9c1b51e45b845debb76d8658edabca70ca56079.tar.gz
llvm-b9c1b51e45b845debb76d8658edabca70ca56079.tar.bz2
*** This commit represents a complete reformatting of the LLDB source code
*** to conform to clang-format’s LLVM style. This kind of mass change has *** two obvious implications: Firstly, merging this particular commit into a downstream fork may be a huge effort. Alternatively, it may be worth merging all changes up to this commit, performing the same reformatting operation locally, and then discarding the merge for this particular commit. The commands used to accomplish this reformatting were as follows (with current working directory as the root of the repository): find . \( -iname "*.c" -or -iname "*.cpp" -or -iname "*.h" -or -iname "*.mm" \) -exec clang-format -i {} + find . -iname "*.py" -exec autopep8 --in-place --aggressive --aggressive {} + ; The version of clang-format used was 3.9.0, and autopep8 was 1.2.4. Secondly, “blame” style tools will generally point to this commit instead of a meaningful prior commit. There are alternatives available that will attempt to look through this change and find the appropriate prior commit. YMMV. llvm-svn: 280751
Diffstat (limited to 'lldb/source/Symbol/Function.cpp')
-rw-r--r--lldb/source/Symbol/Function.cpp1011
1 files changed, 417 insertions, 594 deletions
diff --git a/lldb/source/Symbol/Function.cpp b/lldb/source/Symbol/Function.cpp
index 598af27..06f8ad5 100644
--- a/lldb/source/Symbol/Function.cpp
+++ b/lldb/source/Symbol/Function.cpp
@@ -12,8 +12,8 @@
#include "lldb/Core/Module.h"
#include "lldb/Core/Section.h"
#include "lldb/Host/Host.h"
-#include "lldb/Symbol/CompilerType.h"
#include "lldb/Symbol/CompileUnit.h"
+#include "lldb/Symbol/CompilerType.h"
#include "lldb/Symbol/LineTable.h"
#include "lldb/Symbol/SymbolFile.h"
#include "lldb/Symbol/SymbolVendor.h"
@@ -28,685 +28,508 @@ using namespace lldb_private;
// It is designed to contain the name, linkage name, and declaration
// location.
//----------------------------------------------------------------------
-FunctionInfo::FunctionInfo (const char *name, const Declaration *decl_ptr) :
- m_name(name),
- m_declaration(decl_ptr)
-{
+FunctionInfo::FunctionInfo(const char *name, const Declaration *decl_ptr)
+ : m_name(name), m_declaration(decl_ptr) {}
+
+FunctionInfo::FunctionInfo(const ConstString &name, const Declaration *decl_ptr)
+ : m_name(name), m_declaration(decl_ptr) {}
+
+FunctionInfo::~FunctionInfo() {}
+
+void FunctionInfo::Dump(Stream *s, bool show_fullpaths) const {
+ if (m_name)
+ *s << ", name = \"" << m_name << "\"";
+ m_declaration.Dump(s, show_fullpaths);
}
+int FunctionInfo::Compare(const FunctionInfo &a, const FunctionInfo &b) {
+ int result = ConstString::Compare(a.GetName(), b.GetName());
+ if (result)
+ return result;
-FunctionInfo::FunctionInfo (const ConstString& name, const Declaration *decl_ptr) :
- m_name(name),
- m_declaration(decl_ptr)
-{
+ return Declaration::Compare(a.m_declaration, b.m_declaration);
}
+Declaration &FunctionInfo::GetDeclaration() { return m_declaration; }
-FunctionInfo::~FunctionInfo()
-{
+const Declaration &FunctionInfo::GetDeclaration() const {
+ return m_declaration;
}
-void
-FunctionInfo::Dump(Stream *s, bool show_fullpaths) const
-{
- if (m_name)
- *s << ", name = \"" << m_name << "\"";
- m_declaration.Dump(s, show_fullpaths);
+ConstString FunctionInfo::GetName() const { return m_name; }
+
+size_t FunctionInfo::MemorySize() const {
+ return m_name.MemorySize() + m_declaration.MemorySize();
}
+InlineFunctionInfo::InlineFunctionInfo(const char *name, const char *mangled,
+ const Declaration *decl_ptr,
+ const Declaration *call_decl_ptr)
+ : FunctionInfo(name, decl_ptr), m_mangled(ConstString(mangled), true),
+ m_call_decl(call_decl_ptr) {}
-int
-FunctionInfo::Compare(const FunctionInfo& a, const FunctionInfo& b)
-{
- int result = ConstString::Compare(a.GetName(), b.GetName());
- if (result)
- return result;
+InlineFunctionInfo::InlineFunctionInfo(const ConstString &name,
+ const Mangled &mangled,
+ const Declaration *decl_ptr,
+ const Declaration *call_decl_ptr)
+ : FunctionInfo(name, decl_ptr), m_mangled(mangled),
+ m_call_decl(call_decl_ptr) {}
- return Declaration::Compare(a.m_declaration, b.m_declaration);
-}
+InlineFunctionInfo::~InlineFunctionInfo() {}
+int InlineFunctionInfo::Compare(const InlineFunctionInfo &a,
+ const InlineFunctionInfo &b) {
-Declaration&
-FunctionInfo::GetDeclaration()
-{
- return m_declaration;
+ int result = FunctionInfo::Compare(a, b);
+ if (result)
+ return result;
+ // only compare the mangled names if both have them
+ return Mangled::Compare(a.m_mangled, a.m_mangled);
}
-const Declaration&
-FunctionInfo::GetDeclaration() const
-{
- return m_declaration;
+void InlineFunctionInfo::Dump(Stream *s, bool show_fullpaths) const {
+ FunctionInfo::Dump(s, show_fullpaths);
+ if (m_mangled)
+ m_mangled.Dump(s);
}
-ConstString
-FunctionInfo::GetName() const
-{
- return m_name;
+void InlineFunctionInfo::DumpStopContext(Stream *s,
+ LanguageType language) const {
+ // s->Indent("[inlined] ");
+ s->Indent();
+ if (m_mangled)
+ s->PutCString(m_mangled.GetName(language).AsCString());
+ else
+ s->PutCString(m_name.AsCString());
}
-size_t
-FunctionInfo::MemorySize() const
-{
- return m_name.MemorySize() + m_declaration.MemorySize();
+ConstString InlineFunctionInfo::GetName(LanguageType language) const {
+ if (m_mangled)
+ return m_mangled.GetName(language);
+ return m_name;
}
-
-InlineFunctionInfo::InlineFunctionInfo
-(
- const char *name,
- const char *mangled,
- const Declaration *decl_ptr,
- const Declaration *call_decl_ptr
-) :
- FunctionInfo(name, decl_ptr),
- m_mangled(ConstString(mangled), true),
- m_call_decl (call_decl_ptr)
-{
+ConstString InlineFunctionInfo::GetDisplayName(LanguageType language) const {
+ if (m_mangled)
+ return m_mangled.GetDisplayDemangledName(language);
+ return m_name;
}
-InlineFunctionInfo::InlineFunctionInfo
-(
- const ConstString& name,
- const Mangled &mangled,
- const Declaration *decl_ptr,
- const Declaration *call_decl_ptr
-) :
- FunctionInfo(name, decl_ptr),
- m_mangled(mangled),
- m_call_decl (call_decl_ptr)
-{
-}
+Declaration &InlineFunctionInfo::GetCallSite() { return m_call_decl; }
-InlineFunctionInfo::~InlineFunctionInfo()
-{
+const Declaration &InlineFunctionInfo::GetCallSite() const {
+ return m_call_decl;
}
-int
-InlineFunctionInfo::Compare(const InlineFunctionInfo& a, const InlineFunctionInfo& b)
-{
+Mangled &InlineFunctionInfo::GetMangled() { return m_mangled; }
- int result = FunctionInfo::Compare(a, b);
- if (result)
- return result;
- // only compare the mangled names if both have them
- return Mangled::Compare(a.m_mangled, a.m_mangled);
-}
+const Mangled &InlineFunctionInfo::GetMangled() const { return m_mangled; }
-void
-InlineFunctionInfo::Dump(Stream *s, bool show_fullpaths) const
-{
- FunctionInfo::Dump(s, show_fullpaths);
- if (m_mangled)
- m_mangled.Dump(s);
+size_t InlineFunctionInfo::MemorySize() const {
+ return FunctionInfo::MemorySize() + m_mangled.MemorySize();
}
-void
-InlineFunctionInfo::DumpStopContext (Stream *s, LanguageType language) const
-{
-// s->Indent("[inlined] ");
- s->Indent();
- if (m_mangled)
- s->PutCString (m_mangled.GetName(language).AsCString());
- else
- s->PutCString (m_name.AsCString());
+//----------------------------------------------------------------------
+//
+//----------------------------------------------------------------------
+Function::Function(CompileUnit *comp_unit, lldb::user_id_t func_uid,
+ lldb::user_id_t type_uid, const Mangled &mangled, Type *type,
+ const AddressRange &range)
+ : UserID(func_uid), m_comp_unit(comp_unit), m_type_uid(type_uid),
+ m_type(type), m_mangled(mangled), m_block(func_uid), m_range(range),
+ m_frame_base(nullptr), m_flags(), m_prologue_byte_size(0) {
+ m_block.SetParentScope(this);
+ assert(comp_unit != nullptr);
+}
+
+Function::Function(CompileUnit *comp_unit, lldb::user_id_t func_uid,
+ lldb::user_id_t type_uid, const char *mangled, Type *type,
+ const AddressRange &range)
+ : UserID(func_uid), m_comp_unit(comp_unit), m_type_uid(type_uid),
+ m_type(type), m_mangled(ConstString(mangled), true), m_block(func_uid),
+ m_range(range), m_frame_base(nullptr), m_flags(),
+ m_prologue_byte_size(0) {
+ m_block.SetParentScope(this);
+ assert(comp_unit != nullptr);
+}
+
+Function::~Function() {}
+
+void Function::GetStartLineSourceInfo(FileSpec &source_file,
+ uint32_t &line_no) {
+ line_no = 0;
+ source_file.Clear();
+
+ if (m_comp_unit == nullptr)
+ return;
+
+ if (m_type != nullptr && m_type->GetDeclaration().GetLine() != 0) {
+ source_file = m_type->GetDeclaration().GetFile();
+ line_no = m_type->GetDeclaration().GetLine();
+ } else {
+ LineTable *line_table = m_comp_unit->GetLineTable();
+ if (line_table == nullptr)
+ return;
+
+ LineEntry line_entry;
+ if (line_table->FindLineEntryByAddress(GetAddressRange().GetBaseAddress(),
+ line_entry, nullptr)) {
+ line_no = line_entry.line;
+ source_file = line_entry.file;
+ }
+ }
+}
+
+void Function::GetEndLineSourceInfo(FileSpec &source_file, uint32_t &line_no) {
+ line_no = 0;
+ source_file.Clear();
+
+ // The -1 is kind of cheesy, but I want to get the last line entry for the
+ // given function, not the
+ // first entry of the next.
+ Address scratch_addr(GetAddressRange().GetBaseAddress());
+ scratch_addr.SetOffset(scratch_addr.GetOffset() +
+ GetAddressRange().GetByteSize() - 1);
+
+ LineTable *line_table = m_comp_unit->GetLineTable();
+ if (line_table == nullptr)
+ return;
+
+ LineEntry line_entry;
+ if (line_table->FindLineEntryByAddress(scratch_addr, line_entry, nullptr)) {
+ line_no = line_entry.line;
+ source_file = line_entry.file;
+ }
+}
+
+Block &Function::GetBlock(bool can_create) {
+ if (!m_block.BlockInfoHasBeenParsed() && can_create) {
+ SymbolContext sc;
+ CalculateSymbolContext(&sc);
+ if (sc.module_sp) {
+ sc.module_sp->GetSymbolVendor()->ParseFunctionBlocks(sc);
+ } else {
+ Host::SystemLog(Host::eSystemLogError, "error: unable to find module "
+ "shared pointer for function '%s' "
+ "in %s\n",
+ GetName().GetCString(), m_comp_unit->GetPath().c_str());
+ }
+ m_block.SetBlockInfoHasBeenParsed(true, true);
+ }
+ return m_block;
}
+CompileUnit *Function::GetCompileUnit() { return m_comp_unit; }
-ConstString
-InlineFunctionInfo::GetName (LanguageType language) const
-{
- if (m_mangled)
- return m_mangled.GetName(language);
- return m_name;
-}
+const CompileUnit *Function::GetCompileUnit() const { return m_comp_unit; }
+
+void Function::GetDescription(Stream *s, lldb::DescriptionLevel level,
+ Target *target) {
+ Type *func_type = GetType();
+ const char *name = func_type ? func_type->GetName().AsCString() : "<unknown>";
+
+ *s << "id = " << (const UserID &)*this << ", name = \"" << name
+ << "\", range = ";
-ConstString
-InlineFunctionInfo::GetDisplayName (LanguageType language) const
-{
- if (m_mangled)
- return m_mangled.GetDisplayDemangledName(language);
- return m_name;
+ Address::DumpStyle fallback_style;
+ if (level == eDescriptionLevelVerbose)
+ fallback_style = Address::DumpStyleModuleWithFileAddress;
+ else
+ fallback_style = Address::DumpStyleFileAddress;
+ GetAddressRange().Dump(s, target, Address::DumpStyleLoadAddress,
+ fallback_style);
}
-Declaration &
-InlineFunctionInfo::GetCallSite ()
-{
- return m_call_decl;
+void Function::Dump(Stream *s, bool show_context) const {
+ s->Printf("%p: ", static_cast<const void *>(this));
+ s->Indent();
+ *s << "Function" << static_cast<const UserID &>(*this);
+
+ m_mangled.Dump(s);
+
+ if (m_type)
+ s->Printf(", type = %p", static_cast<void *>(m_type));
+ else if (m_type_uid != LLDB_INVALID_UID)
+ s->Printf(", type_uid = 0x%8.8" PRIx64, m_type_uid);
+
+ s->EOL();
+ // Dump the root object
+ if (m_block.BlockInfoHasBeenParsed())
+ m_block.Dump(s, m_range.GetBaseAddress().GetFileAddress(), INT_MAX,
+ show_context);
}
-const Declaration &
-InlineFunctionInfo::GetCallSite () const
-{
- return m_call_decl;
+void Function::CalculateSymbolContext(SymbolContext *sc) {
+ sc->function = this;
+ m_comp_unit->CalculateSymbolContext(sc);
}
+ModuleSP Function::CalculateSymbolContextModule() {
+ SectionSP section_sp(m_range.GetBaseAddress().GetSection());
+ if (section_sp)
+ return section_sp->GetModule();
-Mangled&
-InlineFunctionInfo::GetMangled()
-{
- return m_mangled;
+ return this->GetCompileUnit()->GetModule();
}
-const Mangled&
-InlineFunctionInfo::GetMangled() const
-{
- return m_mangled;
+CompileUnit *Function::CalculateSymbolContextCompileUnit() {
+ return this->GetCompileUnit();
}
-size_t
-InlineFunctionInfo::MemorySize() const
-{
- return FunctionInfo::MemorySize() + m_mangled.MemorySize();
-}
+Function *Function::CalculateSymbolContextFunction() { return this; }
-//----------------------------------------------------------------------
-//
-//----------------------------------------------------------------------
-Function::Function
-(
- CompileUnit *comp_unit,
- lldb::user_id_t func_uid,
- lldb::user_id_t type_uid,
- const Mangled &mangled,
- Type * type,
- const AddressRange& range
-) :
- UserID (func_uid),
- m_comp_unit (comp_unit),
- m_type_uid (type_uid),
- m_type (type),
- m_mangled (mangled),
- m_block (func_uid),
- m_range (range),
- m_frame_base (nullptr),
- m_flags (),
- m_prologue_byte_size (0)
-{
- m_block.SetParentScope(this);
- assert(comp_unit != nullptr);
-}
-
-Function::Function
-(
- CompileUnit *comp_unit,
- lldb::user_id_t func_uid,
- lldb::user_id_t type_uid,
- const char *mangled,
- Type *type,
- const AddressRange &range
-) :
- UserID (func_uid),
- m_comp_unit (comp_unit),
- m_type_uid (type_uid),
- m_type (type),
- m_mangled (ConstString(mangled), true),
- m_block (func_uid),
- m_range (range),
- m_frame_base (nullptr),
- m_flags (),
- m_prologue_byte_size (0)
-{
- m_block.SetParentScope(this);
- assert(comp_unit != nullptr);
-}
-
-
-Function::~Function()
-{
-}
-
-void
-Function::GetStartLineSourceInfo (FileSpec &source_file, uint32_t &line_no)
-{
- line_no = 0;
- source_file.Clear();
-
- if (m_comp_unit == nullptr)
- return;
-
- if (m_type != nullptr && m_type->GetDeclaration().GetLine() != 0)
- {
- source_file = m_type->GetDeclaration().GetFile();
- line_no = m_type->GetDeclaration().GetLine();
- }
- else
- {
- LineTable *line_table = m_comp_unit->GetLineTable();
- if (line_table == nullptr)
- return;
-
- LineEntry line_entry;
- if (line_table->FindLineEntryByAddress (GetAddressRange().GetBaseAddress(), line_entry, nullptr))
- {
- line_no = line_entry.line;
- source_file = line_entry.file;
- }
- }
+lldb::DisassemblerSP Function::GetInstructions(const ExecutionContext &exe_ctx,
+ const char *flavor,
+ bool prefer_file_cache) {
+ ModuleSP module_sp(GetAddressRange().GetBaseAddress().GetModule());
+ if (module_sp) {
+ const bool prefer_file_cache = false;
+ return Disassembler::DisassembleRange(module_sp->GetArchitecture(), nullptr,
+ flavor, exe_ctx, GetAddressRange(),
+ prefer_file_cache);
+ }
+ return lldb::DisassemblerSP();
}
-void
-Function::GetEndLineSourceInfo (FileSpec &source_file, uint32_t &line_no)
-{
- line_no = 0;
- source_file.Clear();
-
- // The -1 is kind of cheesy, but I want to get the last line entry for the given function, not the
- // first entry of the next.
- Address scratch_addr(GetAddressRange().GetBaseAddress());
- scratch_addr.SetOffset (scratch_addr.GetOffset() + GetAddressRange().GetByteSize() - 1);
-
- LineTable *line_table = m_comp_unit->GetLineTable();
- if (line_table == nullptr)
- return;
-
- LineEntry line_entry;
- if (line_table->FindLineEntryByAddress (scratch_addr, line_entry, nullptr))
- {
- line_no = line_entry.line;
- source_file = line_entry.file;
- }
+bool Function::GetDisassembly(const ExecutionContext &exe_ctx,
+ const char *flavor, bool prefer_file_cache,
+ Stream &strm) {
+ lldb::DisassemblerSP disassembler_sp =
+ GetInstructions(exe_ctx, flavor, prefer_file_cache);
+ if (disassembler_sp) {
+ const bool show_address = true;
+ const bool show_bytes = false;
+ disassembler_sp->GetInstructionList().Dump(&strm, show_address, show_bytes,
+ &exe_ctx);
+ return true;
+ }
+ return false;
}
-Block &
-Function::GetBlock (bool can_create)
-{
- if (!m_block.BlockInfoHasBeenParsed() && can_create)
- {
- SymbolContext sc;
- CalculateSymbolContext(&sc);
- if (sc.module_sp)
- {
- sc.module_sp->GetSymbolVendor()->ParseFunctionBlocks(sc);
- }
- else
- {
- Host::SystemLog (Host::eSystemLogError,
- "error: unable to find module shared pointer for function '%s' in %s\n",
- GetName().GetCString(),
- m_comp_unit->GetPath().c_str());
- }
- m_block.SetBlockInfoHasBeenParsed (true, true);
- }
- return m_block;
+// Symbol *
+// Function::CalculateSymbolContextSymbol ()
+//{
+// return // TODO: find the symbol for the function???
+//}
+
+void Function::DumpSymbolContext(Stream *s) {
+ m_comp_unit->DumpSymbolContext(s);
+ s->Printf(", Function{0x%8.8" PRIx64 "}", GetID());
}
-CompileUnit*
-Function::GetCompileUnit()
-{
- return m_comp_unit;
+size_t Function::MemorySize() const {
+ size_t mem_size = sizeof(Function) + m_block.MemorySize();
+ return mem_size;
}
-const CompileUnit*
-Function::GetCompileUnit() const
-{
- return m_comp_unit;
+bool Function::GetIsOptimized() {
+ bool result = false;
+
+ // Currently optimization is only indicted by the
+ // vendor extension DW_AT_APPLE_optimized which
+ // is set on a compile unit level.
+ if (m_comp_unit) {
+ result = m_comp_unit->GetIsOptimized();
+ }
+ return result;
}
+bool Function::IsTopLevelFunction() {
+ bool result = false;
+
+ if (Language *language = Language::FindPlugin(GetLanguage()))
+ result = language->IsTopLevelFunction(*this);
-void
-Function::GetDescription(Stream *s, lldb::DescriptionLevel level, Target *target)
-{
- Type* func_type = GetType();
- const char *name = func_type ? func_type->GetName().AsCString() : "<unknown>";
-
- *s << "id = " << (const UserID&)*this << ", name = \"" << name << "\", range = ";
-
- Address::DumpStyle fallback_style;
- if (level == eDescriptionLevelVerbose)
- fallback_style = Address::DumpStyleModuleWithFileAddress;
- else
- fallback_style = Address::DumpStyleFileAddress;
- GetAddressRange().Dump(s, target, Address::DumpStyleLoadAddress, fallback_style);
+ return result;
}
-void
-Function::Dump(Stream *s, bool show_context) const
-{
- s->Printf("%p: ", static_cast<const void*>(this));
- s->Indent();
- *s << "Function" << static_cast<const UserID&>(*this);
+ConstString Function::GetDisplayName() const {
+ if (!m_mangled)
+ return ConstString();
+ return m_mangled.GetDisplayDemangledName(GetLanguage());
+}
- m_mangled.Dump(s);
+CompilerDeclContext Function::GetDeclContext() {
+ ModuleSP module_sp = CalculateSymbolContextModule();
- if (m_type)
- s->Printf(", type = %p", static_cast<void*>(m_type));
- else if (m_type_uid != LLDB_INVALID_UID)
- s->Printf(", type_uid = 0x%8.8" PRIx64, m_type_uid);
-
- s->EOL();
- // Dump the root object
- if (m_block.BlockInfoHasBeenParsed ())
- m_block.Dump(s, m_range.GetBaseAddress().GetFileAddress(), INT_MAX, show_context);
-}
-
-
-void
-Function::CalculateSymbolContext(SymbolContext* sc)
-{
- sc->function = this;
- m_comp_unit->CalculateSymbolContext(sc);
-}
-
-ModuleSP
-Function::CalculateSymbolContextModule ()
-{
- SectionSP section_sp (m_range.GetBaseAddress().GetSection());
- if (section_sp)
- return section_sp->GetModule();
-
- return this->GetCompileUnit()->GetModule();
-}
-
-CompileUnit *
-Function::CalculateSymbolContextCompileUnit ()
-{
- return this->GetCompileUnit();
-}
-
-Function *
-Function::CalculateSymbolContextFunction ()
-{
- return this;
-}
-
-lldb::DisassemblerSP
-Function::GetInstructions (const ExecutionContext &exe_ctx,
- const char *flavor,
- bool prefer_file_cache)
-{
- ModuleSP module_sp (GetAddressRange().GetBaseAddress().GetModule());
- if (module_sp)
- {
- const bool prefer_file_cache = false;
- return Disassembler::DisassembleRange (module_sp->GetArchitecture(),
- nullptr,
- flavor,
- exe_ctx,
- GetAddressRange(),
- prefer_file_cache);
- }
- return lldb::DisassemblerSP();
-}
-
-bool
-Function::GetDisassembly (const ExecutionContext &exe_ctx,
- const char *flavor,
- bool prefer_file_cache,
- Stream &strm)
-{
- lldb::DisassemblerSP disassembler_sp = GetInstructions (exe_ctx, flavor, prefer_file_cache);
- if (disassembler_sp)
- {
- const bool show_address = true;
- const bool show_bytes = false;
- disassembler_sp->GetInstructionList().Dump (&strm, show_address, show_bytes, &exe_ctx);
- return true;
+ if (module_sp) {
+ SymbolVendor *sym_vendor = module_sp->GetSymbolVendor();
+
+ if (sym_vendor) {
+ SymbolFile *sym_file = sym_vendor->GetSymbolFile();
+
+ if (sym_file)
+ return sym_file->GetDeclContextForUID(GetID());
}
- return false;
+ }
+ return CompilerDeclContext();
}
+Type *Function::GetType() {
+ if (m_type == nullptr) {
+ SymbolContext sc;
-//Symbol *
-//Function::CalculateSymbolContextSymbol ()
-//{
-// return // TODO: find the symbol for the function???
-//}
+ CalculateSymbolContext(&sc);
+ if (!sc.module_sp)
+ return nullptr;
-void
-Function::DumpSymbolContext(Stream *s)
-{
- m_comp_unit->DumpSymbolContext(s);
- s->Printf(", Function{0x%8.8" PRIx64 "}", GetID());
-}
+ SymbolVendor *sym_vendor = sc.module_sp->GetSymbolVendor();
-size_t
-Function::MemorySize () const
-{
- size_t mem_size = sizeof(Function) + m_block.MemorySize();
- return mem_size;
-}
+ if (sym_vendor == nullptr)
+ return nullptr;
-bool
-Function::GetIsOptimized ()
-{
- bool result = false;
+ SymbolFile *sym_file = sym_vendor->GetSymbolFile();
- // Currently optimization is only indicted by the
- // vendor extension DW_AT_APPLE_optimized which
- // is set on a compile unit level.
- if (m_comp_unit)
- {
- result = m_comp_unit->GetIsOptimized();
- }
- return result;
-}
+ if (sym_file == nullptr)
+ return nullptr;
-bool
-Function::IsTopLevelFunction ()
-{
- bool result = false;
-
- if (Language* language = Language::FindPlugin(GetLanguage()))
- result = language->IsTopLevelFunction(*this);
-
- return result;
+ m_type = sym_file->ResolveTypeUID(m_type_uid);
+ }
+ return m_type;
}
-ConstString
-Function::GetDisplayName () const
-{
- if (!m_mangled)
- return ConstString();
- return m_mangled.GetDisplayDemangledName(GetLanguage());
+const Type *Function::GetType() const { return m_type; }
+
+CompilerType Function::GetCompilerType() {
+ Type *function_type = GetType();
+ if (function_type)
+ return function_type->GetFullCompilerType();
+ return CompilerType();
}
-CompilerDeclContext
-Function::GetDeclContext()
-{
- ModuleSP module_sp = CalculateSymbolContextModule ();
+uint32_t Function::GetPrologueByteSize() {
+ if (m_prologue_byte_size == 0 &&
+ m_flags.IsClear(flagsCalculatedPrologueSize)) {
+ m_flags.Set(flagsCalculatedPrologueSize);
+ LineTable *line_table = m_comp_unit->GetLineTable();
+ uint32_t prologue_end_line_idx = 0;
+
+ if (line_table) {
+ LineEntry first_line_entry;
+ uint32_t first_line_entry_idx = UINT32_MAX;
+ if (line_table->FindLineEntryByAddress(GetAddressRange().GetBaseAddress(),
+ first_line_entry,
+ &first_line_entry_idx)) {
+ // Make sure the first line entry isn't already the end of the prologue
+ addr_t prologue_end_file_addr = LLDB_INVALID_ADDRESS;
+ addr_t line_zero_end_file_addr = LLDB_INVALID_ADDRESS;
+
+ if (first_line_entry.is_prologue_end) {
+ prologue_end_file_addr =
+ first_line_entry.range.GetBaseAddress().GetFileAddress();
+ prologue_end_line_idx = first_line_entry_idx;
+ } else {
+ // Check the first few instructions and look for one that has
+ // is_prologue_end set to true.
+ const uint32_t last_line_entry_idx = first_line_entry_idx + 6;
+ for (uint32_t idx = first_line_entry_idx + 1;
+ idx < last_line_entry_idx; ++idx) {
+ LineEntry line_entry;
+ if (line_table->GetLineEntryAtIndex(idx, line_entry)) {
+ if (line_entry.is_prologue_end) {
+ prologue_end_file_addr =
+ line_entry.range.GetBaseAddress().GetFileAddress();
+ prologue_end_line_idx = idx;
+ break;
+ }
+ }
+ }
+ }
- if (module_sp)
- {
- SymbolVendor *sym_vendor = module_sp->GetSymbolVendor();
+ // If we didn't find the end of the prologue in the line tables,
+ // then just use the end address of the first line table entry
+ if (prologue_end_file_addr == LLDB_INVALID_ADDRESS) {
+ // Check the first few instructions and look for one that has
+ // a line number that's different than the first entry.
+ uint32_t last_line_entry_idx = first_line_entry_idx + 6;
+ for (uint32_t idx = first_line_entry_idx + 1;
+ idx < last_line_entry_idx; ++idx) {
+ LineEntry line_entry;
+ if (line_table->GetLineEntryAtIndex(idx, line_entry)) {
+ if (line_entry.line != first_line_entry.line) {
+ prologue_end_file_addr =
+ line_entry.range.GetBaseAddress().GetFileAddress();
+ prologue_end_line_idx = idx;
+ break;
+ }
+ }
+ }
+
+ if (prologue_end_file_addr == LLDB_INVALID_ADDRESS) {
+ prologue_end_file_addr =
+ first_line_entry.range.GetBaseAddress().GetFileAddress() +
+ first_line_entry.range.GetByteSize();
+ prologue_end_line_idx = first_line_entry_idx;
+ }
+ }
- if (sym_vendor)
- {
- SymbolFile *sym_file = sym_vendor->GetSymbolFile();
+ const addr_t func_start_file_addr =
+ m_range.GetBaseAddress().GetFileAddress();
+ const addr_t func_end_file_addr =
+ func_start_file_addr + m_range.GetByteSize();
+
+ // Now calculate the offset to pass the subsequent line 0 entries.
+ uint32_t first_non_zero_line = prologue_end_line_idx;
+ while (1) {
+ LineEntry line_entry;
+ if (line_table->GetLineEntryAtIndex(first_non_zero_line,
+ line_entry)) {
+ if (line_entry.line != 0)
+ break;
+ }
+ if (line_entry.range.GetBaseAddress().GetFileAddress() >=
+ func_end_file_addr)
+ break;
+
+ first_non_zero_line++;
+ }
- if (sym_file)
- return sym_file->GetDeclContextForUID (GetID());
+ if (first_non_zero_line > prologue_end_line_idx) {
+ LineEntry first_non_zero_entry;
+ if (line_table->GetLineEntryAtIndex(first_non_zero_line,
+ first_non_zero_entry)) {
+ line_zero_end_file_addr =
+ first_non_zero_entry.range.GetBaseAddress().GetFileAddress();
+ }
}
- }
- return CompilerDeclContext();
-}
-
-Type*
-Function::GetType()
-{
- if (m_type == nullptr)
- {
- SymbolContext sc;
-
- CalculateSymbolContext (&sc);
-
- if (!sc.module_sp)
- return nullptr;
-
- SymbolVendor *sym_vendor = sc.module_sp->GetSymbolVendor();
-
- if (sym_vendor == nullptr)
- return nullptr;
-
- SymbolFile *sym_file = sym_vendor->GetSymbolFile();
-
- if (sym_file == nullptr)
- return nullptr;
-
- m_type = sym_file->ResolveTypeUID(m_type_uid);
- }
- return m_type;
-}
-
-const Type*
-Function::GetType() const
-{
- return m_type;
-}
-
-CompilerType
-Function::GetCompilerType()
-{
- Type *function_type = GetType();
- if (function_type)
- return function_type->GetFullCompilerType ();
- return CompilerType();
-}
-
-uint32_t
-Function::GetPrologueByteSize ()
-{
- if (m_prologue_byte_size == 0 && m_flags.IsClear(flagsCalculatedPrologueSize))
- {
- m_flags.Set(flagsCalculatedPrologueSize);
- LineTable* line_table = m_comp_unit->GetLineTable ();
- uint32_t prologue_end_line_idx = 0;
-
- if (line_table)
- {
- LineEntry first_line_entry;
- uint32_t first_line_entry_idx = UINT32_MAX;
- if (line_table->FindLineEntryByAddress(GetAddressRange().GetBaseAddress(), first_line_entry, &first_line_entry_idx))
- {
- // Make sure the first line entry isn't already the end of the prologue
- addr_t prologue_end_file_addr = LLDB_INVALID_ADDRESS;
- addr_t line_zero_end_file_addr = LLDB_INVALID_ADDRESS;
-
- if (first_line_entry.is_prologue_end)
- {
- prologue_end_file_addr = first_line_entry.range.GetBaseAddress().GetFileAddress();
- prologue_end_line_idx = first_line_entry_idx;
- }
- else
- {
- // Check the first few instructions and look for one that has
- // is_prologue_end set to true.
- const uint32_t last_line_entry_idx = first_line_entry_idx + 6;
- for (uint32_t idx = first_line_entry_idx + 1; idx < last_line_entry_idx; ++idx)
- {
- LineEntry line_entry;
- if (line_table->GetLineEntryAtIndex (idx, line_entry))
- {
- if (line_entry.is_prologue_end)
- {
- prologue_end_file_addr = line_entry.range.GetBaseAddress().GetFileAddress();
- prologue_end_line_idx = idx;
- break;
- }
- }
- }
- }
-
- // If we didn't find the end of the prologue in the line tables,
- // then just use the end address of the first line table entry
- if (prologue_end_file_addr == LLDB_INVALID_ADDRESS)
- {
- // Check the first few instructions and look for one that has
- // a line number that's different than the first entry.
- uint32_t last_line_entry_idx = first_line_entry_idx + 6;
- for (uint32_t idx = first_line_entry_idx + 1; idx < last_line_entry_idx; ++idx)
- {
- LineEntry line_entry;
- if (line_table->GetLineEntryAtIndex (idx, line_entry))
- {
- if (line_entry.line != first_line_entry.line)
- {
- prologue_end_file_addr = line_entry.range.GetBaseAddress().GetFileAddress();
- prologue_end_line_idx = idx;
- break;
- }
- }
- }
-
- if (prologue_end_file_addr == LLDB_INVALID_ADDRESS)
- {
- prologue_end_file_addr = first_line_entry.range.GetBaseAddress().GetFileAddress() + first_line_entry.range.GetByteSize();
- prologue_end_line_idx = first_line_entry_idx;
- }
- }
-
- const addr_t func_start_file_addr = m_range.GetBaseAddress().GetFileAddress();
- const addr_t func_end_file_addr = func_start_file_addr + m_range.GetByteSize();
-
- // Now calculate the offset to pass the subsequent line 0 entries.
- uint32_t first_non_zero_line = prologue_end_line_idx;
- while (1)
- {
- LineEntry line_entry;
- if (line_table->GetLineEntryAtIndex(first_non_zero_line, line_entry))
- {
- if (line_entry.line != 0)
- break;
- }
- if (line_entry.range.GetBaseAddress().GetFileAddress() >= func_end_file_addr)
- break;
-
- first_non_zero_line++;
- }
-
- if (first_non_zero_line > prologue_end_line_idx)
- {
- LineEntry first_non_zero_entry;
- if (line_table->GetLineEntryAtIndex(first_non_zero_line, first_non_zero_entry))
- {
- line_zero_end_file_addr = first_non_zero_entry.range.GetBaseAddress().GetFileAddress();
- }
- }
-
- // Verify that this prologue end file address in the function's
- // address range just to be sure
- if (func_start_file_addr < prologue_end_file_addr && prologue_end_file_addr < func_end_file_addr)
- {
- m_prologue_byte_size = prologue_end_file_addr - func_start_file_addr;
- }
-
- if (prologue_end_file_addr < line_zero_end_file_addr && line_zero_end_file_addr < func_end_file_addr)
- {
- m_prologue_byte_size += line_zero_end_file_addr - prologue_end_file_addr;
- }
- }
+
+ // Verify that this prologue end file address in the function's
+ // address range just to be sure
+ if (func_start_file_addr < prologue_end_file_addr &&
+ prologue_end_file_addr < func_end_file_addr) {
+ m_prologue_byte_size = prologue_end_file_addr - func_start_file_addr;
+ }
+
+ if (prologue_end_file_addr < line_zero_end_file_addr &&
+ line_zero_end_file_addr < func_end_file_addr) {
+ m_prologue_byte_size +=
+ line_zero_end_file_addr - prologue_end_file_addr;
}
+ }
}
-
- return m_prologue_byte_size;
-}
+ }
-lldb::LanguageType
-Function::GetLanguage() const
-{
- if (m_comp_unit)
- return m_comp_unit->GetLanguage();
- else
- return lldb::eLanguageTypeUnknown;
+ return m_prologue_byte_size;
}
-ConstString
-Function::GetName() const
-{
- LanguageType language = lldb::eLanguageTypeUnknown;
- if (m_comp_unit)
- language = m_comp_unit->GetLanguage();
- return m_mangled.GetName(language);
+lldb::LanguageType Function::GetLanguage() const {
+ if (m_comp_unit)
+ return m_comp_unit->GetLanguage();
+ else
+ return lldb::eLanguageTypeUnknown;
}
-ConstString
-Function::GetNameNoArguments() const
-{
- LanguageType language = lldb::eLanguageTypeUnknown;
- if (m_comp_unit)
- language = m_comp_unit->GetLanguage();
- return m_mangled.GetName(language, Mangled::ePreferDemangledWithoutArguments);
+ConstString Function::GetName() const {
+ LanguageType language = lldb::eLanguageTypeUnknown;
+ if (m_comp_unit)
+ language = m_comp_unit->GetLanguage();
+ return m_mangled.GetName(language);
}
-
-
+ConstString Function::GetNameNoArguments() const {
+ LanguageType language = lldb::eLanguageTypeUnknown;
+ if (m_comp_unit)
+ language = m_comp_unit->GetLanguage();
+ return m_mangled.GetName(language, Mangled::ePreferDemangledWithoutArguments);
+}