Home
last modified time | relevance | path

Searched refs:SymIdx (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/LLVM/tools/llvm-objdump/
DMachODump.cpp427 for (unsigned SymIdx = 0; SymIdx != Symbols.size(); SymIdx++) { in DisassembleInputMachO() local
429 if ((unsigned)Symbols[SymIdx].SectionIndex - 1 != SectIdx) in DisassembleInputMachO()
433 uint64_t Start = Symbols[SymIdx].Value - Sections[SectIdx].Address; in DisassembleInputMachO()
436 uint64_t End = (SymIdx+1 == Symbols.size() || in DisassembleInputMachO()
437 Symbols[SymIdx].SectionIndex != Symbols[SymIdx+1].SectionIndex) ? in DisassembleInputMachO()
439 Symbols[SymIdx+1].Value - Sections[SectIdx].Address; in DisassembleInputMachO()
449 outs() << MachOObj->getStringAtIndex(Symbols[SymIdx].StringIndex) in DisassembleInputMachO()
482 MachOObj->getStringAtIndex(Symbols[SymIdx].StringIndex), in DisassembleInputMachO()
/external/llvm/tools/yaml2obj/
Dyaml2elf.cpp236 unsigned SymIdx; in initSectionHeaders() local
237 if (SymN2I.lookup(S->Info, SymIdx)) { in initSectionHeaders()
242 SHeader.sh_info = SymIdx; in initSectionHeaders()
378 unsigned SymIdx = 0; in writeSectionContent() local
382 SymN2I.lookup(Rel.Symbol, SymIdx); in writeSectionContent()
389 REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc)); in writeSectionContent()
395 REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc)); in writeSectionContent()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DELFWriter.cpp780 unsigned SymIdx = 0; in EmitRelocations() local
792 SymIdx = GblSymLookup[G]; in EmitRelocations()
796 unsigned SectionIdx = PrivateSyms[SymIdx]->SectionIdx; in EmitRelocations()
797 Addend = PrivateSyms[SymIdx]->Value + GlobalOffset; in EmitRelocations()
798 SymIdx = SectionList[SectionIdx]->getSymbolTableIndex(); in EmitRelocations()
804 SymIdx = ExtSymLookup[ExtSym]; in EmitRelocations()
809 SymIdx = SectionList[SectionIdx]->getSymbolTableIndex(); in EmitRelocations()
832 ELFRelocation Rel(RelOffset, SymIdx, RelType, HasRelA, Addend); in EmitRelocations()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineAddSub.cpp611 for (unsigned SymIdx = 0; SymIdx < AddendNum; SymIdx++) { in simplifyFAdd() local
613 const FAddend *ThisAddend = Addends[SymIdx]; in simplifyFAdd()
629 for (unsigned SameSymIdx = SymIdx + 1; in simplifyFAdd()
/external/llvm/tools/llvm-objdump/
DMachODump.cpp6666 for (unsigned SymIdx = 0; SymIdx != Symbols.size(); SymIdx++) { in DisassembleMachO() local
6667 Expected<StringRef> SymNameOrErr = Symbols[SymIdx].getName(); in DisassembleMachO()
6677 Expected<SymbolRef::Type> STOrErr = Symbols[SymIdx].getType(); in DisassembleMachO()
6690 bool containsSym = Sections[SectIdx].containsSymbol(Symbols[SymIdx]); in DisassembleMachO()
6719 uint64_t Start = Symbols[SymIdx].getValue(); in DisassembleMachO()
6727 uint64_t NextSymIdx = SymIdx + 1; in DisassembleMachO()
6754 DataRefImpl Symb = Symbols[SymIdx].getRawDataRefImpl(); in DisassembleMachO()