| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
| H A D | RuntimeDyldELFMips.cpp | 21 RE.SymOffset, RE.SectionID); in resolveRelocation() 24 RE.SymOffset, RE.SectionID); in resolveRelocation() 35 Addend, RE.SymOffset, RE.SectionID); in evaluateRelocation() 110 int64_t Addend, uint64_t SymOffset, SID SectionID) { in evaluateMIPS64Relocation() argument 121 << " SymOffset: " << format("%x", SymOffset) << "\n"); in evaluateMIPS64Relocation() 154 getSectionAddress(SectionToGOTMap[SectionID]) + SymOffset; in evaluateMIPS64Relocation() 167 return (SymOffset - 0x7ff0) & 0xffff; in evaluateMIPS64Relocation() 267 int64_t Addend, uint64_t SymOffset, SID SectionID) { in resolveMIPSN32Relocation() argument 269 Section, Offset, Value, Type, Addend, SymOffset, SectionID); in resolveMIPSN32Relocation() 276 int64_t Addend, uint64_t SymOffset, SID SectionID) { in resolveMIPSN64Relocation() argument [all …]
|
| H A D | RuntimeDyldELFMips.h | 34 uint64_t SymOffset, SID SectionID); 37 uint64_t SymOffset, SID SectionID); 56 uint64_t SymOffset, SID SectionID);
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | GSIStreamBuilder.cpp | 185 uint32_t SymOffset = RecordZeroOffset; in finalizeGlobalBuckets() local 190 Records[I].SymOffset = SymOffset; in finalizeGlobalBuckets() 191 SymOffset += Globals[I].length(); in finalizeGlobalBuckets() 251 return L.SymOffset < R.SymOffset; in finalizeBuckets() 259 HRec.Off = Records[uint32_t(HRec.Off)].SymOffset + 1; in finalizeBuckets() 341 uint32_t SymOffset = 0; in addPublicSymbols() local 343 Pub.SymOffset = SymOffset; in addPublicSymbols() 344 SymOffset += sizeOfPublic(Pub); in addPublicSymbols() 348 PSH->RecordByteSize = SymOffset; in addPublicSymbols() 441 Entry = Publics[Entry].SymOffset; in computeAddrMap()
|
| /llvm-project-15.0.7/llvm/tools/llvm-cxxdump/ |
| H A D | llvm-cxxdump.cpp | 86 uint64_t SymOffset = SymAddress - SecAddress; in collectRelocatedSymbols() local 87 uint64_t SymEnd = SymOffset + SymSize; in collectRelocatedSymbols() 98 if (Offset >= SymOffset && Offset < SymEnd) { in collectRelocatedSymbols() 110 uint64_t SymOffset = SymAddress - SecAddress; in collectRelocationOffsets() local 111 uint64_t SymEnd = SymOffset + SymSize; in collectRelocationOffsets() 120 if (Offset >= SymOffset && Offset < SymEnd) in collectRelocationOffsets() 121 Collection[std::make_pair(SymName, Offset - SymOffset)] = *RelocSymName; in collectRelocationOffsets() 214 uint64_t SymOffset = SymAddress - SecAddress; in dumpCXXData() local 215 StringRef SymContents = SecContents.substr(SymOffset, SymSize); in dumpCXXData()
|
| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RuntimeDyldImpl.h | 140 uint64_t SymOffset; member 155 SymOffset(0), IsPCRel(false), Size(0), IsTargetThumbFunc(false) {} in RelocationEntry() 160 SymOffset(symoffset), IsPCRel(false), Size(0), in RelocationEntry() 166 SymOffset(0), IsPCRel(IsPCRel), Size(Size), IsTargetThumbFunc(false) {} in RelocationEntry()
|
| H A D | RuntimeDyldELF.h | 30 uint64_t SymOffset = 0, SID SectionID = 0); 34 uint64_t SymOffset);
|
| H A D | RuntimeDyldELF.cpp | 262 uint64_t SymOffset) { in resolveX86_64Relocation() argument 1034 RE.SymOffset, RE.SectionID); in resolveRelocation() 1040 uint64_t SymOffset, SID SectionID) { in resolveRelocation() argument 1043 resolveX86_64Relocation(Section, Offset, Value, Type, Addend, SymOffset); in resolveRelocation() 1469 RE.SymOffset = i->second; in processRelocationRef() 1471 RE.SymOffset = allocateGOTEntries(1); in processRelocationRef() 1472 GOTSymbolOffsets[TargetName] = RE.SymOffset; in processRelocationRef()
|
| /llvm-project-15.0.7/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | GSIStreamBuilder.h | 115 uint32_t SymOffset = 0;
|
| /llvm-project-15.0.7/llvm/tools/dsymutil/ |
| H A D | DwarfLinkerForBinary.cpp | 788 int64_t SymOffset; in findValidRelocsMachO() local 795 SymOffset = int64_t(Addend) - SymAddress; in findValidRelocsMachO() 798 SymOffset = 0; in findValidRelocsMachO() 816 ValidRelocs.emplace_back(Offset64, RelocSize, SymOffset, Mapping); in findValidRelocsMachO()
|
| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | MachOLinkGraphBuilder.cpp | 574 auto SymOffset = orc::ExecutorAddr(NSym.Value) - B.getAddress(); in createStandardGraphSymbol() local 577 ? G->addDefinedSymbol(B, SymOffset, *NSym.Name, Size, NSym.L, NSym.S, in createStandardGraphSymbol() 579 : G->addAnonymousSymbol(B, SymOffset, Size, IsText, IsNoDeadStrip); in createStandardGraphSymbol()
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/CodeView/ |
| H A D | SymbolRecordMapping.cpp | 375 error(IO.mapInteger(ProcRef.SymOffset)); in visitKnownRecord()
|
| H A D | SymbolDumper.cpp | 523 W.printNumber("SymOffset", ProcRef.SymOffset); in visitKnownRecord()
|
| /llvm-project-15.0.7/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLSymbols.cpp | 374 IO.mapRequired("SymOffset", Symbol.SymOffset); in map()
|
| /llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | SymbolRecord.h | 401 uint32_t SymOffset = 0; variable
|
| /llvm-project-15.0.7/llvm/tools/llvm-pdbutil/ |
| H A D | MinimalSymbolDumper.cpp | 799 PR.SumName, PR.SymOffset); in visitKnownRecord()
|
| /llvm-project-15.0.7/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyISelLowering.cpp | 1752 SDValue SymOffset = in LowerGlobalTLSAddress() local 1755 return DAG.getNode(ISD::ADD, DL, PtrVT, BaseAddr, SymOffset); in LowerGlobalTLSAddress()
|
| /llvm-project-15.0.7/lld/COFF/ |
| H A D | PDB.cpp | 521 ps.SymOffset = symOffset; in addGlobalSymbol()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | PdbAstBuilder.cpp | 696 PdbCompilandSymId cu_sym_id{ref.modi(), ref.SymOffset}; in GetParentDeclContext()
|
| H A D | SymbolFileNativePDB.cpp | 1593 PdbCompilandSymId func_id(proc.modi(), proc.SymOffset); in FindFunctions()
|
| /llvm-project-15.0.7/llvm/tools/llvm-readobj/ |
| H A D | ELFDumper.cpp | 4418 const uint64_t SymOffset = ((const uint8_t *)FirstSym - Obj.base()) + in getSymbolForReloc() local 4420 if (SymOffset + sizeof(Elf_Sym) > FileSize) in getSymbolForReloc() 4421 return WarnAndReturn(nullptr, "symbol at 0x" + Twine::utohexstr(SymOffset) + in getSymbolForReloc()
|