Home
last modified time | relevance | path

Searched refs:SymOffset (Results 1 – 20 of 20) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldELFMips.cpp21 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 DRuntimeDyldELFMips.h34 uint64_t SymOffset, SID SectionID);
37 uint64_t SymOffset, SID SectionID);
56 uint64_t SymOffset, SID SectionID);
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.cpp187 uint32_t SymOffset = RecordZeroOffset; in finalizeGlobalBuckets() local
192 Records[I].SymOffset = SymOffset; in finalizeGlobalBuckets()
193 SymOffset += Globals[I].length(); in finalizeGlobalBuckets()
253 return L.SymOffset < R.SymOffset; in finalizeBuckets()
261 HRec.Off = Records[uint32_t(HRec.Off)].SymOffset + 1; in finalizeBuckets()
350 uint32_t SymOffset = 0; in addPublicSymbols() local
352 Pub.SymOffset = SymOffset; in addPublicSymbols()
353 SymOffset += sizeOfPublic(Pub); in addPublicSymbols()
357 PSH->RecordByteSize = SymOffset; in addPublicSymbols()
450 Entry = Publics[Entry].SymOffset; in computeAddrMap()
/freebsd/contrib/llvm-project/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.cpp86 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()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h141 uint64_t SymOffset; member
156 SymOffset(0), Size(0), IsPCRel(false), IsTargetThumbFunc(false) {} in RelocationEntry()
161 SymOffset(symoffset), Size(0), IsPCRel(false), in RelocationEntry()
167 SymOffset(0), Size(Size), IsPCRel(IsPCRel), IsTargetThumbFunc(false) {} in RelocationEntry()
H A DRuntimeDyldELF.h28 uint64_t SymOffset = 0, SID SectionID = 0);
32 uint64_t SymOffset);
H A DRuntimeDyldELF.cpp261 uint64_t SymOffset) { in resolveX86_64Relocation() argument
1402 RE.SymOffset, RE.SectionID); in resolveRelocation()
1408 uint64_t SymOffset, SID SectionID) { in resolveRelocation() argument
1411 resolveX86_64Relocation(Section, Offset, Value, Type, Addend, SymOffset); in resolveRelocation()
1866 RE.SymOffset = I->second; in processRelocationRef()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.h117 uint32_t SymOffset = 0;
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.cpp589 auto SymOffset = orc::ExecutorAddr(NSym.Value) - B.getAddress(); in createStandardGraphSymbol() local
592 ? G->addDefinedSymbol(B, SymOffset, *NSym.Name, Size, NSym.L, NSym.S, in createStandardGraphSymbol()
594 : G->addAnonymousSymbol(B, SymOffset, Size, IsText, IsNoDeadStrip); in createStandardGraphSymbol()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DXCOFFDumper.cpp374 const uint64_t SymOffset = in printLoaderSectionRelocationEntriesHelper() local
380 SymOffset); in printLoaderSectionRelocationEntriesHelper()
H A DELFDumper.cpp4923 const uint64_t SymOffset = ((const uint8_t *)FirstSym - Obj.base()) + in getSymbolForReloc() local
4925 if (SymOffset + sizeof(Elf_Sym) > FileSize) in getSymbolForReloc()
4926 return WarnAndReturn(nullptr, "symbol at 0x" + Twine::utohexstr(SymOffset) + in getSymbolForReloc()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolRecordMapping.cpp375 error(IO.mapInteger(ProcRef.SymOffset)); in visitKnownRecord()
H A DSymbolDumper.cpp523 W.printNumber("SymOffset", ProcRef.SymOffset); in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp386 IO.mapRequired("SymOffset", Symbol.SymOffset); in map()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h433 uint32_t SymOffset = 0; variable
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp823 PR.SumName, PR.SymOffset); in visitKnownRecord()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp405 PdbCompilandSymId cu_sym_id{ref.modi(), ref.SymOffset}; in GetParentDeclContext()
H A DSymbolFileNativePDB.cpp1703 PdbCompilandSymId func_id(proc.modi(), proc.SymOffset); in FindFunctions()
/freebsd/contrib/llvm-project/lld/COFF/
H A DPDB.cpp515 ps.SymOffset = symOffset; in addGlobalSymbol()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp1977 SDValue SymOffset = in LowerGlobalTLSAddress() local
1980 return DAG.getNode(ISD::ADD, DL, PtrVT, BaseAddr, SymOffset); in LowerGlobalTLSAddress()