Home
last modified time | relevance | path

Searched refs:SectionIndex (Results 1 – 8 of 8) sorted by relevance

/freebsd-9-stable/contrib/llvm/tools/llvm-readobj/
DMachODumper.cpp159 uint8_t SectionIndex; member
201 Symbol.SectionIndex = Entry.n_sect; in getSymbol()
209 Symbol.SectionIndex = Entry.n_sect; in getSymbol()
225 int SectionIndex = -1; in printSections() local
232 ++SectionIndex; in printSections()
247 W.printNumber("Index", SectionIndex); in printSections()
421 W.printHex ("Section", SectionName, Symbol.SectionIndex); in printSymbol()
DELFDumper.cpp477 int SectionIndex = -1; in printSections() local
481 ++SectionIndex; in printSections()
487 W.printNumber("Index", SectionIndex); in printSections()
/freebsd-9-stable/contrib/llvm/lib/MC/
DMachObjectWriter.cpp356 Write8(MSD.SectionIndex); in WriteNlist()
541 MSD.SectionIndex = 0; in ComputeSymbolTable()
544 MSD.SectionIndex = 0; in ComputeSymbolTable()
547 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection()); in ComputeSymbolTable()
548 assert(MSD.SectionIndex && "Invalid section index!"); in ComputeSymbolTable()
577 MSD.SectionIndex = 0; in ComputeSymbolTable()
580 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection()); in ComputeSymbolTable()
581 assert(MSD.SectionIndex && "Invalid section index!"); in ComputeSymbolTable()
DELFObjectWriter.cpp72 uint32_t SectionIndex; member
573 Size, Other, MSD.SectionIndex, IsReserved); in WriteSymbol()
933 MSD.SectionIndex = ELF::SHN_COMMON; in ComputeSymbolTable()
935 MSD.SectionIndex = ELF::SHN_ABS; in ComputeSymbolTable()
938 MSD.SectionIndex = SectionIndexMap.lookup(RevGroupMap[&Symbol]); in ComputeSymbolTable()
940 MSD.SectionIndex = ELF::SHN_UNDEF; in ComputeSymbolTable()
944 MSD.SectionIndex = SectionIndexMap.lookup(&Section); in ComputeSymbolTable()
945 if (MSD.SectionIndex >= ELF::SHN_LORESERVE) in ComputeSymbolTable()
947 assert(MSD.SectionIndex && "Invalid section index!"); in ComputeSymbolTable()
958 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1; in ComputeSymbolTable()
[all …]
DMCAssembler.cpp762 unsigned SectionIndex = 0; in Finish() local
769 it->setOrdinal(SectionIndex++); in Finish()
/freebsd-9-stable/contrib/llvm/tools/macho-dump/
Dmacho-dump.cpp174 uint8_t Type, uint8_t SectionIndex, in DumpSymbolTableEntryData() argument
181 outs() << " ('n_sect', " << uint32_t(SectionIndex) << ")\n"; in DumpSymbolTableEntryData()
/freebsd-9-stable/contrib/llvm/include/llvm/MC/
DMCMachObjectWriter.h88 uint8_t SectionIndex; member
/freebsd-9-stable/contrib/llvm/lib/Object/
DMachOObjectFile.cpp528 uint8_t SectionIndex; in getSymbolSize() local
536 SectionIndex = Entry.n_sect; in getSymbolSize()
537 if (!SectionIndex) { in getSymbolSize()
554 if (Entry.n_sect == SectionIndex && Value > BeginOffset) in getSymbolSize()
561 Sec.d.a = SectionIndex-1; in getSymbolSize()