Home
last modified time | relevance | path

Searched refs:SectionList (Results 1 – 25 of 74) sorted by relevance

123

/external/llvm-project/lldb/source/Core/
DSection.cpp399 #pragma mark SectionList
401 SectionList &SectionList::operator=(const SectionList &rhs) { in operator =()
407 size_t SectionList::AddSection(const lldb::SectionSP &section_sp) { in AddSection()
418 bool SectionList::DeleteSection(size_t idx) { in DeleteSection()
426 size_t SectionList::FindSectionIndex(const Section *sect) { in FindSectionIndex()
439 size_t SectionList::AddUniqueSection(const lldb::SectionSP &sect_sp) { in AddUniqueSection()
447 bool SectionList::ReplaceSection(user_id_t sect_id, in ReplaceSection()
465 size_t SectionList::GetNumSections(uint32_t depth) const { in GetNumSections()
476 SectionSP SectionList::GetSectionAtIndex(size_t idx) const { in GetSectionAtIndex()
484 SectionList::FindSectionByName(ConstString section_dstr) const { in FindSectionByName()
[all …]
DDynamicLoader.cpp127 const SectionList *sections = GetSectionListFromModule(module); in UnloadSectionsCommon()
138 const SectionList *
140 SectionList *sections = nullptr; in GetSectionListFromModule()
DAddressRange.cpp24 class SectionList;
33 const SectionList *section_list) in AddressRange()
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFContext.h22 SectionList *m_main_section_list;
23 SectionList *m_dwo_section_list;
57 explicit DWARFContext(SectionList *main_section_list, in DWARFContext()
58 SectionList *dwo_section_list) in DWARFContext()
/external/llvm-project/lldb/include/lldb/Core/
DSection.h34 class SectionList {
46 SectionList() = default;
48 SectionList &operator=(const SectionList &rhs);
126 SectionList &GetChildren() { return m_children; } in GetChildren()
128 const SectionList &GetChildren() const { return m_children; } in GetChildren()
255 SectionList m_children; // Child sections
DAddressRange.h19 class SectionList; variable
64 const SectionList *section_list = nullptr);
DAddress.h25 class SectionList; variable
158 Address(lldb::addr_t file_addr, const SectionList *section_list);
349 const SectionList *sections);
DModule.h48 class SectionList; variable
571 virtual SectionList *GetSectionList();
1039 SectionList *GetUnifiedSectionList();
/external/swiftshader/third_party/subzero/src/
DIceELFObjectWriter.h109 using SectionList = std::vector<ELFSection *>; variable
146 void assignSectionNumbersInfo(SectionList &AllSections);
155 SectionList &AllSections);
DIceELFObjectWriter.cpp137 SectionList &AllSections) { in assignRelSectionNumInPairs()
167 void ELFObjectWriter::assignSectionNumbersInfo(SectionList &AllSections) { in assignSectionNumbersInfo()
325 for (auto &SectionList : VarsBySection) in writeDataSection() local
326 SectionList.reserve(Vars.size()); in writeDataSection()
329 for (auto &SectionList : VarsBySection) { in writeDataSection() local
330 writeDataOfType(static_cast<SectionType>(I++), SectionList, RelocationKind, in writeDataSection()
650 SectionList AllSections; in writeNonUserSections()
/external/llvm-project/lldb/source/Plugins/ObjectFile/JIT/
DObjectFileJIT.cpp140 void ObjectFileJIT::CreateSections(SectionList &unified_section_list) { in CreateSections()
142 m_sections_up = std::make_unique<SectionList>(); in CreateSections()
164 SectionList *sections = GetSectionList(); in Dump()
212 SectionList *section_list = GetSectionList(); in SetLoadAddress()
/external/llvm-project/lldb/include/lldb/Target/
DDynamicLoader.h26 class SectionList; variable
287 const lldb_private::SectionList *
/external/llvm-project/lldb/include/lldb/Symbol/
DObjectFile.h40 lldb_private::SectionList &section_list) = 0;
314 virtual SectionList *GetSectionList(bool update_module_section_list = true);
316 virtual void CreateSections(SectionList &unified_section_list) = 0;
683 std::unique_ptr<lldb_private::SectionList> m_sections_up;
/external/llvm-project/lldb/source/Plugins/SymbolVendor/wasm/
DSymbolVendorWasm.cpp114 SectionList *module_section_list = module_sp->GetSectionList(); in CreateInstance()
115 SectionList *objfile_section_list = sym_objfile_sp->GetSectionList(); in CreateInstance()
/external/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/
DSymbolVendorELF.cpp117 SectionList *module_section_list = module_sp->GetSectionList(); in CreateInstance()
118 SectionList *objfile_section_list = dsym_objfile_sp->GetSectionList(); in CreateInstance()
/external/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
DELFHeader.h251 const lldb_private::SectionList *section_list);
271 const lldb_private::SectionList *section_list);
DObjectFileELF.cpp655 SectionList *section_list = GetSectionList(); in SetLoadAddress()
809 SectionList *section_list = GetSectionList(); in GetImageInfoAddress()
879 SectionList *section_list = GetSectionList(); in GetEntryPointAddress()
911 SectionList *section_list = GetSectionList(); in ParseDependentModules()
1768 void ObjectFileELF::CreateSections(SectionList &unified_section_list) { in CreateSections()
1772 m_sections_up = std::make_unique<SectionList>(); in CreateSections()
1942 SectionList *section_list, in ParseSymbols()
1978 SectionList *module_section_list = in ParseSymbols()
2286 SectionList *section_list = m_sections_up.get(); in ParseSymbolTable()
2321 SectionList *section_list = GetSectionList(); in ParseDynamicSymbols()
[all …]
/external/llvm-project/lldb/source/Plugins/ObjectFile/wasm/
DObjectFileWasm.cpp256 void ObjectFileWasm::CreateSections(SectionList &unified_section_list) { in CreateSections()
260 m_sections_up = std::make_unique<SectionList>(); in CreateSections()
362 SectionList *section_list = GetSectionList(); in SetLoadAddress()
437 SectionList *sections = GetSectionList(); in Dump()
/external/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
DObjectFileBreakpad.cpp129 void ObjectFileBreakpad::CreateSections(SectionList &unified_section_list) { in CreateSections()
132 m_sections_up = std::make_unique<SectionList>(); in CreateSections()
/external/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
DDynamicLoaderHexagonDYLD.cpp222 const SectionList *sections = GetSectionListFromModule(module); in UpdateLoadedSections()
253 const SectionList *sections = GetSectionListFromModule(module); in UnloadSections()
543 const SectionList *DynamicLoaderHexagonDYLD::GetSectionListFromModule( in GetSectionListFromModule()
545 SectionList *sections = nullptr; in GetSectionListFromModule()
DDynamicLoaderHexagonDYLD.h132 const lldb_private::SectionList *
/external/llvm-project/lldb/source/Symbol/
DCompactUnwindInfo.cpp199 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()
/external/llvm-project/lldb/source/Plugins/JITLoader/GDB/
DJITLoaderGDB.cpp229 static void updateSectionLoadAddress(const SectionList &section_list, in updateSectionLoadAddress()
343 const SectionList *section_list = image_object_file->GetSectionList(); in ReadJITDescriptorImpl()
377 const SectionList *section_list = image_object_file->GetSectionList(); in ReadJITDescriptorImpl()
/external/llvm-project/llvm/lib/TextAPI/MachO/
DTextStub.cpp804 using SectionList = std::vector<SymbolSection>; typedef
848 [](SectionList &CurrentSections, in NormalizedTBD_V4()
944 auto handleSymbols = [File](const SectionList &CurrentSections, in denormalize()
992 SectionList Exports;
993 SectionList Reexports;
994 SectionList Undefineds;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/MachO/
DTextStub.cpp801 using SectionList = std::vector<SymbolSection>; typedef
845 [](SectionList &CurrentSections, in NormalizedTBD_V4()
941 auto handleSymbols = [File](const SectionList &CurrentSections, in denormalize()
988 SectionList Exports;
989 SectionList Reexports;
990 SectionList Undefineds;

123