Home
last modified time | relevance | path

Searched refs:section_list (Results 1 – 25 of 56) sorted by relevance

123

/openbsd/gnu/llvm/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.cpp226 static void updateSectionLoadAddress(const SectionList &section_list, in updateSectionLoadAddress() argument
231 const uint32_t num_sections = section_list.GetSize(); in updateSectionLoadAddress()
233 SectionSP section_sp(section_list.GetSectionAtIndex(i)); in updateSectionLoadAddress()
340 const SectionList *section_list = image_object_file->GetSectionList(); in ReadJITDescriptorImpl() local
341 if (section_list) { in ReadJITDescriptorImpl()
345 updateSectionLoadAddress(*section_list, target, symbolfile_addr, in ReadJITDescriptorImpl()
374 const SectionList *section_list = image_object_file->GetSectionList(); in ReadJITDescriptorImpl() local
375 if (section_list) { in ReadJITDescriptorImpl()
376 const uint32_t num_sections = section_list->GetSize(); in ReadJITDescriptorImpl()
378 SectionSP section_sp(section_list->GetSectionAtIndex(i)); in ReadJITDescriptorImpl()
/openbsd/gnu/llvm/lldb/source/Plugins/DynamicLoader/Static/
H A DDynamicLoaderStatic.cpp92 SectionList *section_list = image_object_file->GetSectionList(); in LoadAllImagesAtFileAddresses() local
93 if (section_list) { in LoadAllImagesAtFileAddresses()
101 const size_t num_sections = section_list->GetSize(); in LoadAllImagesAtFileAddresses()
107 SectionSP section_sp(section_list->GetSectionAtIndex(sect_idx)); in LoadAllImagesAtFileAddresses()
/openbsd/gnu/llvm/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp693 if (section_list) { in SetLoadAddress()
847 if (!section_list) in GetImageInfoAddress()
918 if (!section_list) in GetEntryPointAddress()
948 if (!section_list) in ParseDependentModules()
2330 if (!section_list) in ParseSymbolTable()
2365 if (!section_list) in ParseDynamicSymbols()
2555 if (!section_list) in ParseTrampolineSymbols()
2761 if (!section_list) in RelocateDebugSections()
2818 if (!section_list) in ParseSymtab()
2974 if (!section_list) in ParseUnwindSymbols()
[all …]
H A DELFHeader.cpp294 elf_half shndx, const lldb_private::SectionList *section_list) { in sectionIndexToCString() argument
306 section_list->GetSectionAtIndex(shndx).get(); in sectionIndexToCString()
316 const lldb_private::SectionList *section_list) { in Dump() argument
321 st_shndx, sectionIndexToCString(st_shndx, section_list), in Dump()
H A DELFHeader.h251 const lldb_private::SectionList *section_list);
271 const lldb_private::SectionList *section_list);
/openbsd/gnu/llvm/lldb/source/API/
H A DSBModule.cpp363 SectionList *section_list = module_sp->GetSectionList(); in GetNumSections() local
364 if (section_list) in GetNumSections()
365 return section_list->GetSize(); in GetNumSections()
378 SectionList *section_list = module_sp->GetSectionList(); in GetSectionAtIndex() local
380 if (section_list) in GetSectionAtIndex()
381 sb_section.SetSP(section_list->GetSectionAtIndex(idx)); in GetSectionAtIndex()
557 SectionList *section_list = module_sp->GetSectionList(); in FindSection() local
558 if (section_list) { in FindSection()
560 SectionSP section_sp(section_list->FindSectionByName(const_sect_name)); in FindSection()
/openbsd/gnu/llvm/lldb/source/Plugins/ObjectFile/JIT/
H A DObjectFileJIT.cpp184 SectionList *section_list = GetSectionList(); in SetLoadAddress() local
185 if (section_list) { in SetLoadAddress()
186 const size_t num_sections = section_list->GetSize(); in SetLoadAddress()
191 SectionSP section_sp(section_list->GetSectionAtIndex(sect_idx)); in SetLoadAddress()
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFContext.cpp17 static DWARFDataExtractor LoadSection(SectionList *section_list, in LoadSection() argument
19 if (!section_list) in LoadSection()
22 auto section_sp = section_list->FindSectionByType(section_type, true); in LoadSection()
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBLocationToDWARFExpression.cpp90 SectionList *section_list = module->GetSectionList(); in ConvertPDBLocationToDWARFExpression() local
91 if (!section_list) in ConvertPDBLocationToDWARFExpression()
96 auto section = section_list->FindSectionByID(section_id); in ConvertPDBLocationToDWARFExpression()
/openbsd/gnu/llvm/lldb/source/Symbol/
H A DSymbolFile.cpp246 const SectionList *section_list = module_sp->GetSectionList(); in GetDebugInfoSize() local
247 if (section_list) in GetDebugInfoSize()
248 return section_list->GetDebugInfoSize(); in GetDebugInfoSize()
H A DObjectFile.cpp627 SectionList *section_list = GetSectionList(); in GetLoadableData() local
628 if (!section_list) in GetLoadableData()
631 size_t section_count = section_list->GetNumSections(0); in GetLoadableData()
634 SectionSP section_sp = section_list->GetSectionAtIndex(i); in GetLoadableData()
H A DFunction.cpp137 SectionList *section_list = caller_module_sp->GetSectionList(); in GetLoadAddress() local
138 if (!section_list) { in GetLoadAddress()
143 Address the_addr = Address(unresolved_pc, section_list); in GetLoadAddress()
/openbsd/gnu/llvm/lldb/source/Plugins/ObjectFile/wasm/
H A DObjectFileWasm.cpp374 SectionList *section_list = GetSectionList(); in SetLoadAddress() local
375 if (!section_list) in SetLoadAddress()
378 const size_t num_sections = section_list->GetSize(); in SetLoadAddress()
380 SectionSP section_sp(section_list->GetSectionAtIndex(sect_idx)); in SetLoadAddress()
/openbsd/gnu/llvm/lldb/source/Core/
H A DAddressRange.cpp34 const SectionList *section_list) in AddressRange() argument
35 : m_base_addr(file_addr, section_list), m_byte_size(byte_size) {} in AddressRange()
H A DAddress.cpp235 Address::Address(addr_t address, const SectionList *section_list) in Address() argument
237 ResolveAddressUsingFileSections(address, section_list); in Address()
249 const SectionList *section_list) { in ResolveAddressUsingFileSections() argument
250 if (section_list) { in ResolveAddressUsingFileSections()
252 section_list->FindSectionContainingFileAddress(file_addr)); in ResolveAddressUsingFileSections()
H A DModule.cpp442 SectionList *section_list = GetSectionList(); in ResolveFileAddress() local
443 if (section_list) in ResolveFileAddress()
444 return so_addr.ResolveAddressUsingFileSections(vm_addr, section_list); in ResolveFileAddress()
1391 SectionList *section_list = GetSectionList(); in SetSymbolFileFileSpec() local
1393 if (section_list && symbol_file) { in SetSymbolFileFileSpec()
1431 size_t num_sections = section_list->GetNumSections(0); in SetSymbolFileFileSpec()
1434 section_list->GetSectionAtIndex(idx - 1)); in SetSymbolFileFileSpec()
1436 section_list->DeleteSection(idx - 1); in SetSymbolFileFileSpec()
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp213 SectionList *section_list = module->GetSectionList(); in MakeGlobalLocationExpression() local
214 assert(section_list); in MakeGlobalLocationExpression()
216 auto section_ptr = section_list->FindSectionByID(section); in MakeGlobalLocationExpression()
/openbsd/gnu/usr.bin/binutils/binutils/
H A Dobjcopy.c110 struct section_list struct
125 static struct section_list *change_sections; argument
562 static struct section_list *
565 struct section_list *p; in find_section_list()
574 p = xmalloc (sizeof (struct section_list)); in find_section_list()
757 struct section_list *p; in is_strip_section()
1184 struct section_list *pset; in copy_object()
1811 struct section_list *p; in setup_section()
1960 struct section_list *p; in copy_section()
2263 struct section_list *p; in strip_main()
[all …]
/openbsd/gnu/llvm/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderDarwin.cpp250 SectionList *section_list = image_object_file->GetSectionList(); in UpdateImageLoadAddress() local
251 if (section_list) { in UpdateImageLoadAddress()
260 section_list->FindSectionByName(info.segments[i].name)); in UpdateImageLoadAddress()
293 section_list->FindSectionByName(info.segments[seg_idx].name)); in UpdateImageLoadAddress()
327 SectionList *section_list = image_object_file->GetSectionList(); in UnloadModuleSections() local
328 if (section_list) { in UnloadModuleSections()
332 section_list->FindSectionByName(info.segments[i].name)); in UnloadModuleSections()
/openbsd/gnu/llvm/lldb/include/lldb/Core/
H A DAddressRange.h64 const SectionList *section_list = nullptr);
H A DAddress.h158 Address(lldb::addr_t file_addr, const SectionList *section_list);
/openbsd/gnu/usr.bin/binutils-2.17/binutils/
H A Dobjcopy.c111 struct section_list struct
126 static struct section_list *change_sections; argument
597 static struct section_list *
600 struct section_list *p; in find_section_list()
609 p = xmalloc (sizeof (struct section_list)); in find_section_list()
792 struct section_list *p; in is_strip_section()
1327 struct section_list *pset; in copy_object()
2059 struct section_list *p; in setup_section()
2204 struct section_list *p; in copy_section()
2498 struct section_list *p; in strip_main()
[all …]
/openbsd/gnu/llvm/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp1925 MachSymtabSectionInfo(SectionList *section_list) in MachSymtabSectionInfo() argument
2345 SectionList *section_list = GetSectionList(); in ParseSymtab() local
2346 if (section_list == nullptr) in ParseSymtab()
2628 MachSymtabSectionInfo section_info(section_list); in ParseSymtab()
5391 SectionList *section_list = GetSectionList();
5392 if (section_list) {
5763 if (section_list) {
6115 SectionList *section_list = GetSectionList();
6116 if (!section_list)
6178 SectionList *section_list = GetSectionList();
[all …]
/openbsd/gnu/llvm/lldb/source/Plugins/Process/mach-core/
H A DProcessMachCore.cpp183 SectionList *section_list = core_objfile->GetSectionList(); in CreateMemoryRegions() local
184 const uint32_t num_sections = section_list->GetNumSections(0); in CreateMemoryRegions()
189 Section *section = section_list->GetSectionAtIndex(i).get(); in CreateMemoryRegions()
/openbsd/gnu/llvm/lldb/source/Plugins/ObjectFile/PECOFF/
H A DObjectFilePECOFF.cpp472 SectionList *section_list = GetSectionList(); in SetLoadAddress() local
473 if (section_list) { in SetLoadAddress()
478 const size_t num_sections = section_list->GetSize(); in SetLoadAddress()
484 SectionSP section_sp(section_list->GetSectionAtIndex(sect_idx)); in SetLoadAddress()
1164 SectionList *section_list = GetSectionList(); in GetEntryPointAddress() local
1167 if (!section_list) in GetEntryPointAddress()
1171 section_list); in GetEntryPointAddress()

123