| /freebsd-14.2/contrib/llvm-project/lldb/source/Core/ |
| H A D | Section.cpp | 467 #pragma mark SectionList 469 SectionList &SectionList::operator=(const SectionList &rhs) { in operator =() 486 bool SectionList::DeleteSection(size_t idx) { in DeleteSection() 494 size_t SectionList::FindSectionIndex(const Section *sect) { in FindSectionIndex() 515 bool SectionList::ReplaceSection(user_id_t sect_id, in ReplaceSection() 533 size_t SectionList::GetNumSections(uint32_t depth) const { in GetNumSections() 544 SectionSP SectionList::GetSectionAtIndex(size_t idx) const { in GetSectionAtIndex() 592 SectionSP SectionList::FindSectionByType(SectionType sect_type, in FindSectionByType() 634 bool SectionList::ContainsSection(user_id_t sect_id) const { in ContainsSection() 671 uint64_t SectionList::GetDebugInfoSize() const { in GetDebugInfoSize() [all …]
|
| H A D | AddressRange.cpp | 25 class SectionList; 34 const SectionList *section_list) in AddressRange()
|
| H A D | DynamicLoader.cpp | 129 const SectionList *sections = GetSectionListFromModule(module); in UnloadSectionsCommon() 140 const SectionList * 142 SectionList *sections = nullptr; in GetSectionListFromModule()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFContext.h | 23 SectionList *m_main_section_list; 24 SectionList *m_dwo_section_list; 58 explicit DWARFContext(SectionList *main_section_list, in DWARFContext() 59 SectionList *dwo_section_list) in DWARFContext()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Section.h | 35 class SectionList { 47 SectionList() = default; 49 SectionList &operator=(const SectionList &rhs); 140 SectionList &GetChildren() { return m_children; } in GetChildren() 142 const SectionList &GetChildren() const { return m_children; } in GetChildren() 276 SectionList m_children; // Child sections
|
| H A D | AddressRange.h | 19 class SectionList; variable 64 const SectionList *section_list = nullptr);
|
| H A D | Address.h | 28 class SectionList; variable 161 Address(lldb::addr_t file_addr, const SectionList *section_list); 372 const SectionList *sections);
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Expression/ |
| H A D | ObjectFileJIT.cpp | 106 void ObjectFileJIT::CreateSections(SectionList &unified_section_list) { in CreateSections() 108 m_sections_up = std::make_unique<SectionList>(); in CreateSections() 130 SectionList *sections = GetSectionList(); in Dump() 171 SectionList *section_list = GetSectionList(); in SetLoadAddress()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Object/ |
| H A D | GOFFObjectFile.cpp | 65 SectionList.emplace_back(DummySection); // Dummy entry at index 0. in GOFFObjectFile() 143 SectionList.emplace_back(Section); in GOFFObjectFile() 152 SectionList.emplace_back(Section); in GOFFObjectFile() 165 SectionList.emplace_back(Section); in GOFFObjectFile() 346 for (size_t I = 0, E = SectionList.size(); I < E; ++I) { in getSymbolSection() 368 SectionEntryImpl EsdIds = SectionList[Sec.d.a]; in getSectionEdEsdRecord() 374 SectionEntryImpl EsdIds = SectionList[Sec.d.a]; in getSectionPrEsdRecord()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Placeholder/ |
| H A D | ObjectFilePlaceholder.cpp | 37 lldb_private::SectionList &unified_section_list) { in CreateSections() 38 m_sections_up = std::make_unique<lldb_private::SectionList>(); in CreateSections()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/COFF/ |
| H A D | ObjectFileCOFF.cpp | 157 if (SectionList *sections = GetSectionList()) in Dump() 181 void ObjectFileCOFF::CreateSections(lldb_private::SectionList §ions) { in CreateSections() 185 m_sections_up = std::make_unique<SectionList>(); in CreateSections() 258 SectionList *sections = GetSectionList(); in ParseSymtab()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/wasm/ |
| H A D | SymbolVendorWasm.cpp | 108 SectionList *module_section_list = module_sp->GetSectionList(); in CreateInstance() 109 SectionList *objfile_section_list = sym_objfile_sp->GetSectionList(); in CreateInstance()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/PECOFF/ |
| H A D | SymbolVendorPECOFF.cpp | 106 SectionList *module_section_list = module_sp->GetSectionList(); in CreateInstance() 107 SectionList *objfile_section_list = dsym_objfile_sp->GetSectionList(); in CreateInstance()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | DynamicLoader.h | 26 class SectionList; variable 367 const lldb_private::SectionList *
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/ |
| H A D | SymbolVendorELF.cpp | 110 SectionList *module_section_list = module_sp->GetSectionList(); in CreateInstance() 111 SectionList *objfile_section_list = dsym_objfile_sp->GetSectionList(); in CreateInstance()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/orc/ |
| H A D | elfnix_platform.h | 41 using SectionList = std::vector<ExecutorAddrRange>; member 50 std::vector<std::pair<std::string, SectionList>> InitSections;
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JSON/ |
| H A D | ObjectFileJSON.cpp | 165 SectionList *section_list = GetModule()->GetSectionList(); in ParseSymtab() 177 void ObjectFileJSON::CreateSections(SectionList &unified_section_list) { in CreateSections() 180 m_sections_up = std::make_unique<SectionList>(); in CreateSections()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Expression/ |
| H A D | ObjectFileJIT.h | 29 lldb_private::SectionList §ion_list) = 0; 90 void CreateSections(lldb_private::SectionList &unified_section_list) override;
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/wasm/ |
| H A D | ObjectFileWasm.cpp | 290 void ObjectFileWasm::CreateSections(SectionList &unified_section_list) { in CreateSections() 294 m_sections_up = std::make_unique<SectionList>(); in CreateSections() 374 SectionList *section_list = GetSectionList(); in SetLoadAddress() 449 SectionList *sections = GetSectionList(); in Dump()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | ObjectFile.h | 298 virtual SectionList *GetSectionList(bool update_module_section_list = true); 300 virtual void CreateSections(SectionList &unified_section_list) = 0; 760 std::unique_ptr<lldb_private::SectionList> m_sections_up;
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ |
| H A D | ELFHeader.h | 251 const lldb_private::SectionList *section_list); 271 const lldb_private::SectionList *section_list);
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/ |
| H A D | DynamicLoaderHexagonDYLD.cpp | 212 const SectionList *sections = GetSectionListFromModule(module); in UpdateLoadedSections() 243 const SectionList *sections = GetSectionListFromModule(module); in UnloadSections() 529 const SectionList *DynamicLoaderHexagonDYLD::GetSectionListFromModule( in GetSectionListFromModule() 531 SectionList *sections = nullptr; in GetSectionListFromModule()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | CompactUnwindInfo.cpp | 200 SectionList *sl = m_objfile.GetSectionList(); in GetUnwindPlan() 501 SectionList *sl = m_objfile.GetSectionList(); in GetCompactUnwindInfoForFunction() 573 SectionList *sl = m_objfile.GetSectionList(); in GetCompactUnwindInfoForFunction() 592 SectionList *sl = m_objfile.GetSectionList(); in GetCompactUnwindInfoForFunction() 657 SectionList *sl = m_objfile.GetSectionList(); in GetCompactUnwindInfoForFunction() 676 SectionList *sl = m_objfile.GetSectionList(); in GetCompactUnwindInfoForFunction() 818 SectionList *sl = m_objfile.GetSectionList(); in CreateUnwindPlan_x86_64() 1083 SectionList *sl = m_objfile.GetSectionList(); in CreateUnwindPlan_i386()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ |
| H A D | ObjectFileBreakpad.cpp | 126 void ObjectFileBreakpad::CreateSections(SectionList &unified_section_list) { in CreateSections() 129 m_sections_up = std::make_unique<SectionList>(); in CreateSections()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/ |
| H A D | JITLoaderGDB.cpp | 228 static void updateSectionLoadAddress(const SectionList §ion_list, in updateSectionLoadAddress() 343 const SectionList *section_list = image_object_file->GetSectionList(); in ReadJITDescriptorImpl() 379 const SectionList *section_list = image_object_file->GetSectionList(); in ReadJITDescriptorImpl()
|