From 3046e668301ec9df4ead087fdc906877b9dcbf82 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Wed, 10 Jul 2013 01:23:25 +0000 Subject: Cleanup on the unified section list changes. Main changes are: - ObjectFile::GetSymtab() and ObjectFile::ClearSymtab() no longer takes any flags - Module coordinates with the object files and contain a unified section list so that object file and symbol file can share sections when they need to, yet contain their own sections. Other cleanups: - Fixed Symbol::GetByteSize() to not have the symbol table compute the byte sizes on the fly - Modified the ObjectFileMachO class to compute symbol sizes all at once efficiently - Modified the Symtab class to store a file address lookup table for more efficient lookups - Removed Section::Finalize() and SectionList::Finalize() as they did nothing - Improved performance of the detection of symbol files that have debug maps by excluding stripped files and core files, debug files, object files and stubs - Added the ability to tell if an ObjectFile has been stripped with ObjectFile::IsStripped() (used this for the above performance improvement) llvm-svn: 185990 --- lldb/source/API/SBModule.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lldb/source/API/SBModule.cpp') diff --git a/lldb/source/API/SBModule.cpp b/lldb/source/API/SBModule.cpp index 661fa56a867..390ca64e6c1 100644 --- a/lldb/source/API/SBModule.cpp +++ b/lldb/source/API/SBModule.cpp @@ -406,7 +406,7 @@ SBModule::GetNumSections () { // Give the symbol vendor a chance to add to the unified section list. module_sp->GetSymbolVendor(); - SectionList *section_list = module_sp->GetUnifiedSectionList(); + SectionList *section_list = module_sp->GetSectionList(); if (section_list) return section_list->GetSize(); } @@ -422,7 +422,7 @@ SBModule::GetSectionAtIndex (size_t idx) { // Give the symbol vendor a chance to add to the unified section list. module_sp->GetSymbolVendor(); - SectionList *section_list = module_sp->GetUnifiedSectionList (); + SectionList *section_list = module_sp->GetSectionList (); if (section_list) sb_section.SetSP(section_list->GetSectionAtIndex (idx)); @@ -587,7 +587,7 @@ SBModule::FindSection (const char *sect_name) { // Give the symbol vendor a chance to add to the unified section list. module_sp->GetSymbolVendor(); - SectionList *section_list = module_sp->GetUnifiedSectionList(); + SectionList *section_list = module_sp->GetSectionList(); if (section_list) { ConstString const_sect_name(sect_name); -- cgit v1.2.3