/freebsd/contrib/llvm-project/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);
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | GSIStreamBuilder.cpp | 181 // - 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 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()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyldImpl.h | 140 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 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 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 D | GSIStreamBuilder.h | 115 uint32_t SymOffset = 0;
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | MachOLinkGraphBuilder.cpp | 598 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 D | XCOFFDumper.cpp | 374 const uint64_t SymOffset = in printLoaderSectionRelocationEntriesHelper() local 380 SymOffset); in printLoaderSectionRelocationEntriesHelper()
|
H A D | ELFDumper.cpp | 4858 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 D | SymbolRecordMapping.cpp | 375 error(IO.mapInteger(ProcRef.SymOffset)); in visitKnownRecord()
|
H A D | SymbolDumper.cpp | 523 W.printNumber("SymOffset", ProcRef.SymOffset); in visitKnownRecord()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | SymbolRecord.h | 421 uint32_t SymOffset = 0; 400 uint32_t SymOffset = 0; global() variable
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | CodeViewYAMLSymbols.cpp | 387 IO.mapRequired("SymOffset", Symbol.SymOffset); in map()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
H A D | MinimalSymbolDumper.cpp | 823 PR.SumName, PR.SymOffset); in visitKnownRecord()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | PdbAstBuilder.cpp | 405 PdbCompilandSymId cu_sym_id{ref.modi(), ref.SymOffset}; in GetParentDeclContext()
|
H A D | SymbolFileNativePDB.cpp | 1709 PdbCompilandSymId func_id(proc.modi(), proc.SymOffset); in FindFunctions()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyISelLowering.cpp | 1718 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 D | PDB.cpp | 522 ps.SymOffset = symOffset; in addGlobalSymbol()
|