| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | Section.cpp | 421 #pragma mark SectionList 423 SectionList::SectionList() : m_sections() {} in SectionList() function in SectionList 425 SectionList::~SectionList() {} in ~SectionList() 427 SectionList &SectionList::operator=(const SectionList &rhs) { in operator =() 444 bool SectionList::DeleteSection(size_t idx) { in DeleteSection() 452 size_t SectionList::FindSectionIndex(const Section *sect) { in FindSectionIndex() 473 bool SectionList::ReplaceSection(user_id_t sect_id, in ReplaceSection() 491 size_t SectionList::GetNumSections(uint32_t depth) const { in GetNumSections() 502 SectionSP SectionList::GetSectionAtIndex(size_t idx) const { in GetSectionAtIndex() 550 SectionSP SectionList::FindSectionByType(SectionType sect_type, in FindSectionByType() [all …]
|
| H A D | DynamicLoader.cpp | 132 const SectionList *sections = GetSectionListFromModule(module); in UnloadSectionsCommon() 143 const SectionList * 145 SectionList *sections = nullptr; in GetSectionListFromModule()
|
| H A D | AddressRange.cpp | 25 class SectionList; 34 const SectionList *section_list) in AddressRange()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/ |
| H A D | Section.h | 49 class SectionList { 55 SectionList(); 57 ~SectionList(); 59 SectionList &operator=(const SectionList &rhs); 136 SectionList &GetChildren() { return m_children; } in GetChildren() 138 const SectionList &GetChildren() const { return m_children; } in GetChildren() 272 SectionList m_children; // Child sections
|
| H A D | Address.h | 34 class SectionList; variable 182 Address(lldb::addr_t file_addr, const SectionList *section_list); 401 const SectionList *sections);
|
| H A D | AddressRange.h | 20 class SectionList; variable 80 const SectionList *section_list = nullptr);
|
| H A D | Module.h | 57 class SectionList; variable 684 virtual SectionList *GetSectionList(); 1165 SectionList *GetUnifiedSectionList();
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/ |
| H A D | ObjectFileJIT.cpp | 137 void ObjectFileJIT::CreateSections(SectionList &unified_section_list) { in CreateSections() 139 m_sections_ap.reset(new SectionList()); in CreateSections() 161 SectionList *sections = GetSectionList(); in Dump() 210 SectionList *section_list = GetSectionList(); in SetLoadAddress()
|
| H A D | ObjectFileJIT.h | 72 void CreateSections(lldb_private::SectionList &unified_section_list) override;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/ |
| H A D | ObjectFile.h | 41 lldb_private::SectionList §ion_list) = 0; 326 virtual SectionList *GetSectionList(bool update_module_section_list = true); 328 virtual void CreateSections(SectionList &unified_section_list) = 0; 783 std::unique_ptr<lldb_private::SectionList> m_sections_ap;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/ |
| H A D | DynamicLoader.h | 31 class SectionList; variable 342 const lldb_private::SectionList *
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/ |
| H A D | SymbolVendorELF.cpp | 125 SectionList *module_section_list = module_sp->GetSectionList(); in CreateInstance() 126 SectionList *objfile_section_list = dsym_objfile_sp->GetSectionList(); in CreateInstance()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ |
| H A D | ELFHeader.h | 267 const lldb_private::SectionList *section_list); 287 const lldb_private::SectionList *section_list);
|
| H A D | ObjectFileELF.cpp | 806 SectionList *section_list = GetSectionList(); in SetLoadAddress() 971 SectionList *section_list = GetSectionList(); in GetImageInfoAddress() 1041 SectionList *section_list = GetSectionList(); in GetEntryPointAddress() 1075 SectionList *section_list = GetSectionList(); in ParseDependentModules() 2081 SectionList *module_section_list = in ParseSymbols() 2394 SectionList *section_list = m_sections_ap.get(); in ParseSymbolTable() 2429 SectionList *section_list = GetSectionList(); in ParseDynamicSymbols() 2622 SectionList *section_list = m_sections_ap.get(); in ParseTrampolineSymbols() 2763 SectionList *section_list = GetSectionList(); in RelocateDebugSections() 2933 SectionList *section_list = GetSectionList(); in ParseUnwindSymbols() [all …]
|
| H A D | ELFHeader.cpp | 293 elf_half shndx, const lldb_private::SectionList *section_list) { in sectionIndexToCString() 315 const lldb_private::SectionList *section_list) { in Dump()
|
| H A D | ObjectFileELF.h | 120 void CreateSections(lldb_private::SectionList &unified_section_list) override; 287 lldb_private::SectionList *section_list,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/ |
| H A D | CompactUnwindInfo.cpp | 202 SectionList *sl = m_objfile.GetSectionList(); in GetUnwindPlan() 503 SectionList *sl = m_objfile.GetSectionList(); in GetCompactUnwindInfoForFunction() 575 SectionList *sl = m_objfile.GetSectionList(); in GetCompactUnwindInfoForFunction() 594 SectionList *sl = m_objfile.GetSectionList(); in GetCompactUnwindInfoForFunction() 659 SectionList *sl = m_objfile.GetSectionList(); in GetCompactUnwindInfoForFunction() 678 SectionList *sl = m_objfile.GetSectionList(); in GetCompactUnwindInfoForFunction() 819 SectionList *sl = m_objfile.GetSectionList(); in CreateUnwindPlan_x86_64() 1083 SectionList *sl = m_objfile.GetSectionList(); in CreateUnwindPlan_i386()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad/ |
| H A D | SymbolFileBreakpad.cpp | 63 const SectionList &list = *m_obj->GetSectionList(); in operator ++() 182 const SectionList &list = *module.GetSectionList(); in AddSymbols()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/ |
| H A D | DynamicLoaderHexagonDYLD.cpp | 219 const SectionList *sections = GetSectionListFromModule(module); in UpdateLoadedSections() 250 const SectionList *sections = GetSectionListFromModule(module); in UnloadSections() 544 const SectionList *DynamicLoaderHexagonDYLD::GetSectionListFromModule( in GetSectionListFromModule() 546 SectionList *sections = nullptr; in GetSectionListFromModule()
|
| H A D | DynamicLoaderHexagonDYLD.h | 137 const lldb_private::SectionList *
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/ |
| H A D | JITLoaderGDB.cpp | 214 static void updateSectionLoadAddress(const SectionList §ion_list, in updateSectionLoadAddress() 328 const SectionList *section_list = in ReadJITDescriptorImpl() 365 const SectionList *section_list = image_object_file->GetSectionList(); in ReadJITDescriptorImpl()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/ |
| H A D | ObjectFileBreakpad.h | 81 void CreateSections(SectionList &unified_section_list) override;
|
| H A D | ObjectFileBreakpad.cpp | 272 void ObjectFileBreakpad::CreateSections(SectionList &unified_section_list) { in CreateSections() 275 m_sections_ap = llvm::make_unique<SectionList>(); in CreateSections()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBModule.cpp | 339 SectionList *section_list = module_sp->GetSectionList(); in GetNumSections() 352 SectionList *section_list = module_sp->GetSectionList(); in GetSectionAtIndex() 507 SectionList *section_list = module_sp->GetSectionList(); in FindSection()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/ |
| H A D | DynamicLoaderStatic.cpp | 96 SectionList *section_list = image_object_file->GetSectionList(); in LoadAllImagesAtFileAddresses()
|