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

  /external/swiftshader/third_party/LLVM/tools/llvm-objdump/
MachODump.cpp 427 for (unsigned SymIdx = 0; SymIdx != Symbols.size(); SymIdx++) {
429 if ((unsigned)Symbols[SymIdx].SectionIndex - 1 != SectIdx)
433 uint64_t Start = Symbols[SymIdx].Value - Sections[SectIdx].Address;
436 uint64_t End = (SymIdx+1 == Symbols.size() ||
437 Symbols[SymIdx].SectionIndex != Symbols[SymIdx+1].SectionIndex) ?
439 Symbols[SymIdx+1].Value - Sections[SectIdx].Address;
449 outs() << MachOObj->getStringAtIndex(Symbols[SymIdx].StringIndex
    [all...]
  /external/llvm/tools/yaml2obj/
yaml2elf.cpp 236 unsigned SymIdx;
237 if (SymN2I.lookup(S->Info, SymIdx)) {
242 SHeader.sh_info = SymIdx;
378 unsigned SymIdx = 0;
382 SymN2I.lookup(Rel.Symbol, SymIdx);
389 REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc));
395 REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc));
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
ELFWriter.cpp 780 unsigned SymIdx = 0;
792 SymIdx = GblSymLookup[G];
795 // SymIdx + Addend = section sym for global + section offset
796 unsigned SectionIdx = PrivateSyms[SymIdx]->SectionIdx;
797 Addend = PrivateSyms[SymIdx]->Value + GlobalOffset;
798 SymIdx = SectionList[SectionIdx]->getSymbolTableIndex();
804 SymIdx = ExtSymLookup[ExtSym];
809 SymIdx = SectionList[SectionIdx]->getSymbolTableIndex();
832 ELFRelocation Rel(RelOffset, SymIdx, RelType, HasRelA, Addend);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 611 for (unsigned SymIdx = 0; SymIdx < AddendNum; SymIdx++) {
613 const FAddend *ThisAddend = Addends[SymIdx];
629 for (unsigned SameSymIdx = SymIdx + 1;
    [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp     [all...]

Completed in 381 milliseconds