/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
D | RuntimeDyldELFMips.cpp | 22 RE.SymOffset, RE.SectionID); in resolveRelocation() 25 RE.SymOffset, RE.SectionID); in resolveRelocation() 36 Addend, RE.SymOffset, RE.SectionID); in evaluateRelocation() 111 int64_t Addend, uint64_t SymOffset, SID SectionID) { in evaluateMIPS64Relocation() argument 122 << " SymOffset: " << format("%x", SymOffset) << "\n"); in evaluateMIPS64Relocation() 155 getSectionAddress(SectionToGOTMap[SectionID]) + SymOffset; in evaluateMIPS64Relocation() 168 return (SymOffset - 0x7ff0) & 0xffff; in evaluateMIPS64Relocation() 268 int64_t Addend, uint64_t SymOffset, SID SectionID) { in resolveMIPSN32Relocation() argument 270 Section, Offset, Value, Type, Addend, SymOffset, SectionID); in resolveMIPSN32Relocation() 277 int64_t Addend, uint64_t SymOffset, SID SectionID) { in resolveMIPSN64Relocation() argument [all …]
|
D | RuntimeDyldELFMips.h | 36 uint64_t SymOffset, SID SectionID); 39 uint64_t SymOffset, SID SectionID); 58 uint64_t SymOffset, SID SectionID);
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldELF.h | 31 uint64_t SymOffset = 0, SID SectionID = 0); 35 uint64_t SymOffset); 60 uint64_t SymOffset, SID SectionID); 65 uint64_t SymOffset, SID SectionID);
|
D | RuntimeDyldImpl.h | 142 uint64_t SymOffset; member 154 SymOffset(0), IsPCRel(false), Size(0) {} in RelocationEntry() 159 SymOffset(symoffset), IsPCRel(false), Size(0) {} in RelocationEntry() 164 SymOffset(0), IsPCRel(IsPCRel), Size(Size) {} in RelocationEntry()
|
D | RuntimeDyldELF.cpp | 229 uint64_t SymOffset) { in resolveX86_64Relocation() argument 602 uint64_t SymOffset, in resolveMIPS64Relocation() argument 613 SymOffset, SectionID); in resolveMIPS64Relocation() 617 CalculatedValue, SymOffset, in resolveMIPS64Relocation() 623 CalculatedValue, SymOffset, in resolveMIPS64Relocation() 634 uint64_t SymOffset, SID SectionID) { in evaluateMIPS64Relocation() argument 642 << " SymOffset: " << format("%x", SymOffset) << "\n"); in evaluateMIPS64Relocation() 671 getSectionAddress(SectionToGOTMap[SectionID]) + SymOffset; in evaluateMIPS64Relocation() 684 return (SymOffset - 0x7ff0) & 0xffff; in evaluateMIPS64Relocation() 1101 RE.SymOffset, RE.SectionID); in resolveRelocation() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/ |
D | GSIStreamBuilder.cpp | 108 uint32_t SymOffset = RecordZeroOffset; in finalizeBuckets() local 112 HR.Off = SymOffset + 1; in finalizeBuckets() 119 SymOffset += Sym.length(); in finalizeBuckets() 229 uint32_t SymOffset = 0; in computeAddrMap() local 235 SymOffsets.push_back(SymOffset); in computeAddrMap() 236 SymOffset += Sym.length(); in computeAddrMap()
|
/external/llvm/tools/llvm-cxxdump/ |
D | llvm-cxxdump.cpp | 81 uint64_t SymOffset = SymAddress - SecAddress; in collectRelocatedSymbols() local 82 uint64_t SymEnd = SymOffset + SymSize; in collectRelocatedSymbols() 93 if (Offset >= SymOffset && Offset < SymEnd) { in collectRelocatedSymbols() 105 uint64_t SymOffset = SymAddress - SecAddress; in collectRelocationOffsets() local 106 uint64_t SymEnd = SymOffset + SymSize; in collectRelocationOffsets() 115 if (Offset >= SymOffset && Offset < SymEnd) in collectRelocationOffsets() 116 Collection[std::make_pair(SymName, Offset - SymOffset)] = *RelocSymName; in collectRelocationOffsets() 206 uint64_t SymOffset = SymAddress - SecAddress; in dumpCXXData() local 207 StringRef SymContents = SecContents.substr(SymOffset, SymSize); in dumpCXXData()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cxxdump/ |
D | llvm-cxxdump.cpp | 79 uint64_t SymOffset = SymAddress - SecAddress; in collectRelocatedSymbols() local 80 uint64_t SymEnd = SymOffset + SymSize; in collectRelocatedSymbols() 91 if (Offset >= SymOffset && Offset < SymEnd) { in collectRelocatedSymbols() 103 uint64_t SymOffset = SymAddress - SecAddress; in collectRelocationOffsets() local 104 uint64_t SymEnd = SymOffset + SymSize; in collectRelocationOffsets() 113 if (Offset >= SymOffset && Offset < SymEnd) in collectRelocationOffsets() 114 Collection[std::make_pair(SymName, Offset - SymOffset)] = *RelocSymName; in collectRelocationOffsets() 204 uint64_t SymOffset = SymAddress - SecAddress; in dumpCXXData() local 205 StringRef SymContents = SecContents.substr(SymOffset, SymSize); in dumpCXXData()
|
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/ |
D | MBlazeELFWriterInfo.cpp | 102 long int MBlazeELFWriterInfo::computeRelocation(unsigned SymOffset, in computeRelocation() argument 106 return SymOffset - (RelOffset + 4); in computeRelocation()
|
D | MBlazeELFWriterInfo.h | 52 virtual long int computeRelocation(unsigned SymOffset, unsigned RelOffset,
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
D | X86ELFWriterInfo.cpp | 143 long int X86ELFWriterInfo::computeRelocation(unsigned SymOffset, in computeRelocation() argument 148 return SymOffset - (RelOffset + 4); in computeRelocation()
|
D | X86ELFWriterInfo.h | 53 virtual long int computeRelocation(unsigned SymOffset, unsigned RelOffset,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldImpl.h | 142 uint64_t SymOffset; member 157 SymOffset(0), IsPCRel(false), Size(0), IsTargetThumbFunc(false) {} in RelocationEntry() 162 SymOffset(symoffset), IsPCRel(false), Size(0), in RelocationEntry() 168 SymOffset(0), IsPCRel(IsPCRel), Size(Size), IsTargetThumbFunc(false) {} in RelocationEntry()
|
D | RuntimeDyldELF.h | 31 uint64_t SymOffset = 0, SID SectionID = 0); 35 uint64_t SymOffset);
|
D | RuntimeDyldELF.cpp | 266 uint64_t SymOffset) { in resolveX86_64Relocation() argument 921 RE.SymOffset, RE.SectionID); in resolveRelocation() 927 uint64_t SymOffset, SID SectionID) { in resolveRelocation() argument 930 resolveX86_64Relocation(Section, Offset, Value, Type, Addend, SymOffset); in resolveRelocation() 1355 RE.SymOffset = i->second; in processRelocationRef() 1357 RE.SymOffset = allocateGOTEntries(1); in processRelocationRef() 1358 GOTSymbolOffsets[TargetName] = RE.SymOffset; in processRelocationRef()
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
D | ARMELFWriterInfo.h | 52 virtual long int computeRelocation(unsigned SymOffset, unsigned RelOffset,
|
D | ARMELFWriterInfo.cpp | 77 long int ARMELFWriterInfo::computeRelocation(unsigned SymOffset, in computeRelocation() argument
|
/external/swiftshader/third_party/LLVM/include/llvm/Target/ |
D | TargetELFWriterInfo.h | 117 virtual long int computeRelocation(unsigned SymOffset, unsigned RelOffset,
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | ELFWriter.cpp | 812 int64_t SymOffset = (int64_t)MR.getResultPointer(); in EmitRelocations() local 818 int64_t Value = TEW->computeRelocation(SymOffset, RelOffset, RelType); in EmitRelocations() 823 Addend = TEW->getDefaultAddendForRelTy(RelType, SymOffset); in EmitRelocations()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 394 int64_t SymOffset; in findValidRelocsMachO() local 401 SymOffset = int64_t(Addend) - SymAddress; in findValidRelocsMachO() 404 SymOffset = 0; in findValidRelocsMachO() 421 ValidRelocs.emplace_back(Offset64, RelocSize, SymOffset, Mapping); in findValidRelocsMachO()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/ |
D | SymbolRecordMapping.cpp | 376 error(IO.mapInteger(ProcRef.SymOffset)); in visitKnownRecord()
|
D | SymbolDumper.cpp | 510 W.printNumber("SymOffset", ProcRef.SymOffset); in visitKnownRecord()
|
/external/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 1940 int64_t SymOffset; in findValidRelocsMachO() local 1947 SymOffset = int64_t(Addend) - SymAddress; in findValidRelocsMachO() 1950 SymOffset = 0; in findValidRelocsMachO() 1967 ValidRelocs.emplace_back(Offset64, RelocSize, SymOffset, Mapping); in findValidRelocsMachO()
|
/external/llvm/lib/DebugInfo/CodeView/ |
D | SymbolDumper.cpp | 511 W.printNumber("SymOffset", ProcRef.Header.SymOffset); in visitProcRefSym()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | SymbolRecord.h | 398 uint32_t SymOffset; variable
|