Searched refs:SecI (Results 1 – 5 of 5) sorted by relevance
| /trueos/contrib/llvm/tools/llvm-readobj/ |
| HD | MachODumper.cpp | 44 void printRelocation(section_iterator SecI, relocation_iterator RelI); 47 section_iterator SecI, relocation_iterator RelI); 227 for (section_iterator SecI = Obj->begin_sections(), in printSections() local 229 SecI != SecE; SecI.increment(EC)) { in printSections() 235 getSection(Obj, SecI->getRawDataRefImpl(), Section); in printSections() 236 DataRefImpl DR = SecI->getRawDataRefImpl(); in printSections() 239 if (error(SecI->getName(Name))) in printSections() 265 for (relocation_iterator RelI = SecI->begin_relocations(), in printSections() 266 RelE = SecI->end_relocations(); in printSections() 270 printRelocation(SecI, RelI); in printSections() [all …]
|
| HD | COFFDumper.cpp | 61 void printRelocation(section_iterator SecI, relocation_iterator RelI); 542 for (section_iterator SecI = Obj->begin_sections(), in cacheRelocations() local 544 SecI != SecE; SecI.increment(EC)) { in cacheRelocations() 548 const coff_section *Section = Obj->getCOFFSection(SecI); in cacheRelocations() 550 for (relocation_iterator RelI = SecI->begin_relocations(), in cacheRelocations() 551 RelE = SecI->end_relocations(); in cacheRelocations() 656 for (section_iterator SecI = Obj->begin_sections(), in printSections() local 658 SecI != SecE; SecI.increment(EC)) { in printSections() 663 const coff_section *Section = Obj->getCOFFSection(SecI); in printSections() 666 if (error(SecI->getName(Name))) in printSections() [all …]
|
| HD | ELFDumper.cpp | 478 for (typename ELFO::Elf_Shdr_Iter SecI = Obj->begin_sections(), in printSections() local 480 SecI != SecE; ++SecI) { in printSections() 483 const Elf_Shdr *Section = &*SecI; in printSections() 529 for (typename ELFO::Elf_Shdr_Iter SecI = Obj->begin_sections(), in printRelocations() local 531 SecI != SecE; ++SecI) { in printRelocations() 534 if (SecI->sh_type != ELF::SHT_REL && SecI->sh_type != ELF::SHT_RELA) in printRelocations() 537 StringRef Name = errorOrDefault(Obj->getSectionName(&*SecI)); in printRelocations() 542 printRelocations(&*SecI); in printRelocations()
|
| /trueos/contrib/llvm/include/llvm/Object/ |
| HD | ELF.h | 644 for (Elf_Shdr_Iter SecI = begin_sections(), SecE = end_sections(); in ELFFile() local 645 SecI != SecE; ++SecI) { in ELFFile() 646 switch (SecI->sh_type) { in ELFFile() 651 SymbolTableSectionHeaderIndex = &*SecI; in ELFFile() 657 dot_symtab_sec = &*SecI; in ELFFile() 658 dot_strtab_sec = getSection(SecI->sh_link); in ELFFile() 664 DynSymRegion.Addr = base() + SecI->sh_offset; in ELFFile() 665 DynSymRegion.Size = SecI->sh_size; in ELFFile() 666 DynSymRegion.EntSize = SecI->sh_entsize; in ELFFile() 667 const Elf_Shdr *DynStr = getSection(SecI->sh_link); in ELFFile() [all …]
|
| /trueos/contrib/llvm/tools/llvm-nm/ |
| HD | llvm-nm.cpp | 405 section_iterator SecI = Obj.end_sections(); in getSymbolNMTypeChar() local 406 if (error_code ec = I->getSection(SecI)) in getSymbolNMTypeChar() 408 const coff_section *Section = Obj.getCOFFSection(SecI); in getSymbolNMTypeChar()
|