HomeSort by relevance Sort by last modified time
    Searched refs:SectionIndex (Results 1 - 11 of 11) sorted by null

  /external/llvm/tools/llvm-readobj/
ELFDumper.cpp 140 StringRef &SectionName, unsigned &SectionIndex) {
141 SectionIndex = Symbol->st_shndx;
142 if (SectionIndex == SHN_UNDEF) {
144 } else if (SectionIndex >= SHN_LOPROC && SectionIndex <= SHN_HIPROC) {
146 } else if (SectionIndex >= SHN_LOOS && SectionIndex <= SHN_HIOS) {
148 } else if (SectionIndex > SHN_HIOS && SectionIndex < SHN_ABS) {
150 } else if (SectionIndex == SHN_ABS)
    [all...]
MachODumper.cpp 152 uint8_t SectionIndex;
194 Symbol.SectionIndex = Entry.n_sect;
202 Symbol.SectionIndex = Entry.n_sect;
218 int SectionIndex = -1;
220 ++SectionIndex;
235 W.printNumber("Index", SectionIndex);
402 W.printHex("Section", SectionName, MOSymbol.SectionIndex);
ARMEHABIPrinter.h 331 void PrintIndexTable(unsigned SectionIndex, const Elf_Shdr *IT) const;
460 void PrinterContext<ET>::PrintIndexTable(unsigned SectionIndex,
490 errs() << "corrupt unwind data in section " << SectionIndex << "\n";
513 FindExceptionTable(SectionIndex, Entry * IndexTableEntrySize + 4);
530 int SectionIndex = 0;
532 SI != SE; ++SI, ++SectionIndex) {
538 SW.printNumber("SectionIndex", SectionIndex);
543 PrintIndexTable(SectionIndex, IT);
  /external/llvm/lib/MC/
MachObjectWriter.cpp 328 uint8_t SectionIndex = MSD.SectionIndex;
338 SectionIndex = AliaseeInfo->SectionIndex;
393 Write8(SectionIndex);
578 MSD.SectionIndex = 0;
581 MSD.SectionIndex = 0;
584 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
585 assert(MSD.SectionIndex && "Invalid section index!");
613 MSD.SectionIndex = 0
    [all...]
ELFObjectWriter.cpp 135 uint32_t SectionIndex;
624 MSD.SectionIndex, IsReserved);
    [all...]
MCAssembler.cpp 866 unsigned SectionIndex = 0;
873 it->setOrdinal(SectionIndex++);
    [all...]
  /external/lldb/source/Plugins/ObjectFile/ELF/
ObjectFileELF.h 205 SectionIndex(const SectionHeaderCollIter &I);
209 SectionIndex(const SectionHeaderCollConstIter &I) const;
ObjectFileELF.cpp 441 ObjectFileELF::SectionIndex(const SectionHeaderCollIter &I)
447 ObjectFileELF::SectionIndex(const SectionHeaderCollConstIter &I) const
    [all...]
  /external/llvm/include/llvm/MC/
MCMachObjectWriter.h 87 uint8_t SectionIndex;
  /external/llvm/tools/macho-dump/
macho-dump.cpp 174 uint8_t Type, uint8_t SectionIndex,
181 outs() << " ('n_sect', " << uint32_t(SectionIndex) << ")\n";
  /external/llvm/lib/Object/
MachOObjectFile.cpp 543 uint8_t SectionIndex;
555 SectionIndex = Entry.n_sect;
556 if (!SectionIndex) {
572 if (Entry.n_sect == SectionIndex && Value > BeginOffset)
579 Sec.d.a = SectionIndex-1;
    [all...]

Completed in 224 milliseconds