Searched refs:SymIdx (Results 1 – 8 of 8) sorted by relevance
/external/swiftshader/third_party/LLVM/tools/llvm-objdump/ |
D | MachODump.cpp | 427 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/ |
D | yaml2elf.cpp | 236 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-7.0/llvm/tools/yaml2obj/ |
D | yaml2elf.cpp | 276 unsigned SymIdx; in initSectionHeaders() local 277 if (SymN2I.lookup(S->Info, SymIdx)) { in initSectionHeaders() 282 SHeader.sh_info = SymIdx; in initSectionHeaders() 495 unsigned SymIdx = 0; in writeSectionContent() local 500 SymN2I.lookup(*Rel.Symbol, SymIdx); in writeSectionContent() 507 REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc)); in writeSectionContent() 513 REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc)); in writeSectionContent()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | ELFWriter.cpp | 780 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/ |
D | InstCombineAddSub.cpp | 611 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/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAddSub.cpp | 622 for (unsigned SymIdx = 0; SymIdx < AddendNum; SymIdx++) { in simplifyFAdd() local 624 const FAddend *ThisAddend = Addends[SymIdx]; in simplifyFAdd() 639 for (unsigned SameSymIdx = SymIdx + 1; in simplifyFAdd()
|
/external/llvm/tools/llvm-objdump/ |
D | MachODump.cpp | 6666 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()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objdump/ |
D | MachODump.cpp | 7034 for (unsigned SymIdx = 0; SymIdx != Symbols.size(); SymIdx++) { in DisassembleMachO() local 7035 Expected<StringRef> SymNameOrErr = Symbols[SymIdx].getName(); in DisassembleMachO() 7040 Expected<SymbolRef::Type> STOrErr = Symbols[SymIdx].getType(); in DisassembleMachO() 7048 bool containsSym = Sections[SectIdx].containsSymbol(Symbols[SymIdx]); in DisassembleMachO() 7080 uint64_t Start = Symbols[SymIdx].getValue(); in DisassembleMachO() 7094 uint64_t NextSymIdx = SymIdx + 1; in DisassembleMachO() 7115 DataRefImpl Symb = Symbols[SymIdx].getRawDataRefImpl(); in DisassembleMachO()
|