/external/llvm-project/lldb/source/Core/ |
D | Section.cpp | 399 #pragma mark SectionList 401 SectionList &SectionList::operator=(const SectionList &rhs) { in operator =() 407 size_t SectionList::AddSection(const lldb::SectionSP §ion_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 §_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 …]
|
D | DynamicLoader.cpp | 127 const SectionList *sections = GetSectionListFromModule(module); in UnloadSectionsCommon() 138 const SectionList * 140 SectionList *sections = nullptr; in GetSectionListFromModule()
|
D | AddressRange.cpp | 24 class SectionList; 33 const SectionList *section_list) in AddressRange()
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFContext.h | 22 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/ |
D | Section.h | 34 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
|
D | AddressRange.h | 19 class SectionList; variable 64 const SectionList *section_list = nullptr);
|
D | Address.h | 25 class SectionList; variable 158 Address(lldb::addr_t file_addr, const SectionList *section_list); 349 const SectionList *sections);
|
D | Module.h | 48 class SectionList; variable 571 virtual SectionList *GetSectionList(); 1039 SectionList *GetUnifiedSectionList();
|
/external/swiftshader/third_party/subzero/src/ |
D | IceELFObjectWriter.h | 109 using SectionList = std::vector<ELFSection *>; variable 146 void assignSectionNumbersInfo(SectionList &AllSections); 155 SectionList &AllSections);
|
D | IceELFObjectWriter.cpp | 137 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/ |
D | ObjectFileJIT.cpp | 140 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/ |
D | DynamicLoader.h | 26 class SectionList; variable 287 const lldb_private::SectionList *
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
D | ObjectFile.h | 40 lldb_private::SectionList §ion_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/ |
D | SymbolVendorWasm.cpp | 114 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/ |
D | SymbolVendorELF.cpp | 117 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/ |
D | ELFHeader.h | 251 const lldb_private::SectionList *section_list); 271 const lldb_private::SectionList *section_list);
|
D | ObjectFileELF.cpp | 655 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/ |
D | ObjectFileWasm.cpp | 256 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/ |
D | ObjectFileBreakpad.cpp | 129 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/ |
D | DynamicLoaderHexagonDYLD.cpp | 222 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()
|
D | DynamicLoaderHexagonDYLD.h | 132 const lldb_private::SectionList *
|
/external/llvm-project/lldb/source/Symbol/ |
D | CompactUnwindInfo.cpp | 199 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/ |
D | JITLoaderGDB.cpp | 229 static void updateSectionLoadAddress(const SectionList §ion_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/ |
D | TextStub.cpp | 804 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/ |
D | TextStub.cpp | 801 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;
|