Searched refs:section_list (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Static/
H A DDynamicLoaderStatic.cpp85 SectionList *section_list = image_object_file->GetSectionList(); local
86 if (section_list) {
94 const size_t num_sections = section_list->GetSize();
100 SectionSP section_sp(section_list->GetSectionAtIndex(sect_idx));
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFContext.cpp16 static DWARFDataExtractor LoadSection(SectionList *section_list, argument
18 if (!section_list)
21 auto section_sp = section_list->FindSectionByType(section_type, true);
H A DSymbolFileDWARFDwo.cpp36 const SectionList *section_list = local
38 if (section_list) {
39 SectionSP section_sp(section_list->FindSectionByType(sect_type, true));
H A DSymbolFileDWARFDwp.cpp124 const lldb_private::SectionList *section_list = local
126 if (section_list) {
128 section_list->FindSectionByType(sect_type, true));
H A DSymbolFileDWARF.cpp498 const SectionList *section_list = m_objfile_sp->GetSectionList(); local
499 if (section_list == nullptr)
506 section = section_list->FindSectionByName(GetDWARFMachOSegmentName()).get();
509 section_list = &section->GetChildren();
512 section_list->FindSectionByType(eSectionTypeDWARFDebugInfo, true).get();
517 section_list->FindSectionByType(eSectionTypeDWARFDebugAbbrev, true)
539 section_list->FindSectionByType(eSectionTypeDWARFDebugLine, true)
554 section_list->FindSectionByType(eSectionTypeDWARFDebugStr, true)
588 const SectionList *section_list = module_sp->GetSectionList(); local
589 if (!section_list)
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.cpp229 static void updateSectionLoadAddress(const SectionList &section_list, argument
234 const uint32_t num_sections = section_list.GetSize();
236 SectionSP section_sp(section_list.GetSectionAtIndex(i));
344 const SectionList *section_list = image_object_file->GetSectionList(); local
345 if (section_list) {
349 updateSectionLoadAddress(*section_list, target, symbolfile_addr,
380 const SectionList *section_list = image_object_file->GetSectionList(); local
381 if (section_list) {
382 const uint32_t num_sections = section_list->GetSize();
384 SectionSP section_sp(section_list
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBLocationToDWARFExpression.cpp89 SectionList *section_list = module->GetSectionList(); local
90 if (!section_list)
95 auto section = section_list->FindSectionByID(section_id);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JIT/
H A DObjectFileJIT.cpp209 SectionList *section_list = GetSectionList(); local
210 if (section_list) {
211 const size_t num_sections = section_list->GetSize();
216 SectionSP section_sp(section_list->GetSectionAtIndex(sect_idx));
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DAddressRange.h61 /// \param[in] section_list
64 const SectionList *section_list = nullptr);
H A DAddress.h156 /// \param[in] section_list
158 Address(lldb::addr_t file_addr, const SectionList *section_list);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DELFHeader.h251 const lldb_private::SectionList *section_list);
271 const lldb_private::SectionList *section_list);
H A DELFHeader.cpp288 elf_half shndx, const lldb_private::SectionList *section_list) {
300 section_list->GetSectionAtIndex(shndx).get();
310 const lldb_private::SectionList *section_list) {
315 st_shndx, sectionIndexToCString(st_shndx, section_list),
287 sectionIndexToCString( elf_half shndx, const lldb_private::SectionList *section_list) argument
308 Dump(lldb_private::Stream *s, uint32_t idx, const lldb_private::DataExtractor *strtab_data, const lldb_private::SectionList *section_list) argument
H A DObjectFileELF.cpp651 SectionList *section_list = GetSectionList(); local
652 if (section_list) {
660 const size_t num_sections = section_list->GetSize();
666 SectionSP section_sp(section_list->GetSectionAtIndex(sect_idx));
805 SectionList *section_list = GetSectionList();
806 if (!section_list)
811 section_list->FindSectionByType(eSectionTypeELFDynamicLinkInfo, true));
875 SectionList *section_list = GetSectionList();
878 if (!section_list)
881 m_entry_point_address.ResolveAddressUsingFileSections(offset, section_list);
1936 ParseSymbols(Symtab *symtab, user_id_t start_id, SectionList *section_list, const size_t num_symbols, const DataExtractor &symtab_data, const DataExtractor &strtab_data) argument
2282 SectionList *section_list = m_sections_up.get(); local
2648 SectionList *section_list = GetSectionList(); local
2701 SectionList *section_list = module_sp->GetSectionList(); local
2872 SectionList *section_list = GetSectionList(); local
2954 SectionList *section_list = GetSectionList(); local
[all...]
H A DObjectFileELF.h290 lldb_private::SectionList *section_list,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DAddressRange.cpp33 const SectionList *section_list)
34 : m_base_addr(file_addr, section_list), m_byte_size(byte_size) {}
32 AddressRange(addr_t file_addr, addr_t byte_size, const SectionList *section_list) argument
H A DAddress.cpp234 Address::Address(addr_t address, const SectionList *section_list) argument
236 ResolveAddressUsingFileSections(address, section_list);
248 const SectionList *section_list) {
249 if (section_list) {
251 section_list->FindSectionContainingFileAddress(file_addr));
247 ResolveAddressUsingFileSections(addr_t file_addr, const SectionList *section_list) argument
H A DModule.cpp432 SectionList *section_list = GetSectionList(); local
433 if (section_list)
434 return so_addr.ResolveAddressUsingFileSections(vm_addr, section_list);
1380 SectionList *section_list = GetSectionList(); local
1382 if (section_list && symbol_file) {
1420 size_t num_sections = section_list->GetNumSections(0);
1423 section_list->GetSectionAtIndex(idx - 1));
1425 section_list->DeleteSection(idx - 1);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp207 SectionList *section_list = module->GetSectionList();
208 assert(section_list);
210 auto section_ptr = section_list->FindSectionByID(section);
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBModule.cpp369 SectionList *section_list = module_sp->GetSectionList(); local
370 if (section_list)
371 return section_list->GetSize();
385 SectionList *section_list = module_sp->GetSectionList(); local
387 if (section_list)
388 sb_section.SetSP(section_list->GetSectionAtIndex(idx));
571 SectionList *section_list = module_sp->GetSectionList(); local
572 if (section_list) {
574 SectionSP section_sp(section_list->FindSectionByName(const_sect_name));
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DObjectFile.cpp653 SectionList *section_list = GetSectionList(); local
654 if (!section_list)
657 size_t section_count = section_list->GetNumSections(0);
660 SectionSP section_sp = section_list->GetSectionAtIndex(i);
/freebsd-11-stable/contrib/binutils/binutils/
H A Dobjcopy.c113 struct section_list
115 struct section_list * next; /* Next section to change. */
128 static struct section_list *change_sections;
614 static struct section_list *
617 struct section_list *p;
626 p = xmalloc (sizeof (struct section_list));
836 struct section_list *p;
1432 struct section_list *pset;
2162 struct section_list *p;
2321 struct section_list *
112 struct section_list struct
[all...]
/freebsd-11-stable/contrib/binutils/ld/
H A Dldlang.c225 sec = ptr->section_list;
676 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
696 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
734 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
737 for (sec = ptr->section_list; sec != NULL; sec = sec->next)
2572 for (sec = s->section_list; sec != NULL; sec = sec->next)
3167 sec = s->wild_statement.section_list;
3168 for (sec = s->wild_statement.section_list; sec != NULL;
3840 for (sec = w->section_list; sec; sec = sec->next)
5843 struct wildcard_list *section_list,
5840 lang_add_wild(struct wildcard_spec *filespec, struct wildcard_list *section_list, bfd_boolean keep_sections) argument
[all...]
H A Dldlang.h327 struct wildcard_list *section_list; member in struct:lang_wild_statement_struct
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DIRExecutionUnit.h98 lldb_private::SectionList &section_list) override;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DObjectFile.h40 lldb_private::SectionList &section_list) = 0;

Completed in 200 milliseconds

12