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.cpp181 // - SymOffset in finalizeGlobalBuckets()
186 uint32_t SymOffset = RecordZeroOffset; in finalizeGlobalBuckets()
191 Records[I].SymOffset = SymOffset; in finalizeGlobalBuckets()
192 SymOffset += Globals[I].length(); in finalizeGlobalBuckets()
252 return L.SymOffset < R.SymOffset; in finalizeBuckets()
260 HRec.Off = Records[uint32_t(HRec.Off)].SymOffset + 1; in finalizeBuckets()
342 uint32_t SymOffset = 0; in addPublicSymbols()
344 Pub.SymOffset in addPublicSymbols()
185 uint32_t SymOffset = RecordZeroOffset; finalizeGlobalBuckets() local
341 uint32_t SymOffset = 0; addPublicSymbols() local
[all...]
/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.h140 uint64_t SymOffset; member
155 SymOffset(0), Size(0), IsPCRel(false), IsTargetThumbFunc(false) {} in RelocationEntry()
160 SymOffset(symoffset), Size(0), IsPCRel(false), in RelocationEntry()
166 SymOffset(0), Size(Size), IsPCRel(IsPCRel), IsTargetThumbFunc(false) {} in RelocationEntry()
H A DRuntimeDyldELF.h30 uint64_t SymOffset = 0, SID SectionID = 0);
34 uint64_t SymOffset);
H A DRuntimeDyldELF.cpp262 uint64_t SymOffset) { in resolveX86_64Relocation() argument
1038 RE.SymOffset, RE.SectionID); in resolveRelocation()
1044 uint64_t SymOffset, SID SectionID) { in resolveRelocation() argument
1047 resolveX86_64Relocation(Section, Offset, Value, Type, Addend, SymOffset); in resolveRelocation()
1481 RE.SymOffset = i->second; in processRelocationRef()
1483 RE.SymOffset = allocateGOTEntries(1); in processRelocationRef()
1484 GOTSymbolOffsets[TargetName] = RE.SymOffset; in processRelocationRef()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.h115 uint32_t SymOffset = 0;
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.cpp598 auto SymOffset = orc::ExecutorAddr(NSym.Value) - B.getAddress(); in createStandardGraphSymbol()
601 ? G->addDefinedSymbol(B, SymOffset, *NSym.Name, Size, NSym.L, NSym.S, in createStandardGraphSymbol()
603 : G->addAnonymousSymbol(B, SymOffset, Size, IsText, IsNoDeadStrip); in createStandardGraphSymbol()
597 auto SymOffset = orc::ExecutorAddr(NSym.Value) - B.getAddress(); createStandardGraphSymbol() local
/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.cpp4858 const uint64_t SymOffset = ((const uint8_t *)FirstSym - Obj.base()) + in getSymbolForReloc() local
4860 if (SymOffset + sizeof(Elf_Sym) > FileSize) in getSymbolForReloc()
4861 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/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h421 uint32_t SymOffset = 0;
400 uint32_t SymOffset = 0; global() variable
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp387 IO.mapRequired("SymOffset", Symbol.SymOffset); in map()
/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.cpp1709 PdbCompilandSymId func_id(proc.modi(), proc.SymOffset); in FindFunctions()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp1718 SDValue SymOffset = in LowerGlobalTLSAddress() local
1721 return DAG.getNode(ISD::ADD, DL, PtrVT, BaseAddr, SymOffset); in LowerGlobalTLSAddress()
/freebsd/contrib/llvm-project/lld/COFF/
H A DPDB.cpp522 ps.SymOffset = symOffset; in addGlobalSymbol()