/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
H A D | RuntimeDyldCOFFThumb.h | 130 uint64_t TargetOffset = -1; in processRelocationRef() local 134 TargetOffset = getDLLImportOffset(SectionID, Stubs, TargetName, true); in processRelocationRef() 144 TargetOffset = getSymbolOffset(*Symbol); in processRelocationRef() 164 TargetOffset, 0, 0, false, 0, IsTargetThumbFunc); in processRelocationRef() 171 TargetOffset, 0, 0, false, 0); in processRelocationRef() 183 RelocationEntry(SectionID, Offset, RelType, TargetOffset + Addend); in processRelocationRef() 190 TargetOffset, 0, 0, false, 0, IsTargetThumbFunc); in processRelocationRef() 198 TargetOffset + Addend, true, 0); in processRelocationRef()
|
H A D | RuntimeDyldCOFFI386.h | 62 uint64_t TargetOffset = -1; in processRelocationRef() local 65 TargetOffset = getDLLImportOffset(SectionID, Stubs, TargetName, true); in processRelocationRef() 75 TargetOffset = getSymbolOffset(*Symbol); in processRelocationRef() 118 TargetOffset, 0, 0, false, 0); in processRelocationRef() 130 RelocationEntry(SectionID, Offset, RelType, TargetOffset + Addend); in processRelocationRef()
|
H A D | RuntimeDyldCOFFX86_64.h | 227 uint64_t TargetOffset = 0; in processRelocationRef() local 232 TargetOffset = getDLLImportOffset(SectionID, Stubs, TargetName); in processRelocationRef() 241 TargetOffset = getSymbolOffset(*Symbol); in processRelocationRef() 281 RelocationEntry RE(SectionID, Offset, RelType, TargetOffset + Addend); in processRelocationRef()
|
H A D | RuntimeDyldCOFFAArch64.h | 187 uint64_t TargetOffset = -1; in processRelocationRef() 191 TargetOffset = getDLLImportOffset(SectionID, Stubs, TargetName); in processRelocationRef() 201 TargetOffset = getSymbolOffset(*Symbol); in processRelocationRef() 263 RelocationEntry RE(SectionID, Offset, RelType, TargetOffset + Addend); in resolveRelocation() 175 uint64_t TargetOffset = -1; processRelocationRef() local
|
/llvm-project/bolt/lib/Target/X86/ |
H A D | X86MCSymbolizer.cpp | 72 uint64_t TargetOffset; in tryAddingSymbolicOperand() local 77 TargetOffset = Value - BD->getAddress(); in tryAddingSymbolicOperand() 82 std::tie(TargetSymbol, TargetOffset) = in tryAddingSymbolicOperand() 86 addOperand(TargetSymbol, TargetOffset); in tryAddingSymbolicOperand()
|
/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/ |
H A D | aarch64.h | 557 uint64_t TargetOffset = in applyFixup() 565 uint32_t Imm = (TargetOffset >> ImmShift) & 0xffff; in applyFixup() 655 uint64_t TargetOffset = 661 if (TargetOffset & ((1 << ImmShift) - 1)) in createPointerJumpStubBlock() 664 uint32_t EncodedImm = (TargetOffset >> ImmShift) << 10; 671 uint64_t TargetOffset = in createAnonymousPointerJumpStub() 674 if (TargetOffset > 0x7fff) in createAnonymousPointerJumpStub() 679 if (TargetOffset & ((1 << ImmShift) - 1)) 682 uint32_t EncodedImm = (TargetOffset >> ImmShift) << 10; in visitEdge() 494 uint64_t TargetOffset = applyFixup() local 592 uint64_t TargetOffset = applyFixup() local
|
H A D | loongarch.h | 434 uint64_t TargetOffset = (TargetAddress + Addend) & 0xfff; 437 uint32_t Imm11_0 = TargetOffset << 10; 243 uint64_t TargetOffset = (TargetAddress + Addend) & 0xfff; applyFixup() local
|
/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/ |
H A D | MSP430AsmBackend.cpp | 130 Value <<= Info.TargetOffset; in applyFixup() 133 unsigned NumBytes = alignTo(Info.TargetSize + Info.TargetOffset, 8) / 8; in applyFixup()
|
/llvm-project/llvm/include/llvm/MC/ |
H A D | MCFixupKindInfo.h | 38 unsigned TargetOffset; member
|
/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
H A D | WebAssemblyAsmBackend.cpp | 100 Value <<= Info.TargetOffset; in applyFixup()
|
/llvm-project/llvm/lib/Target/CSKY/MCTargetDesc/ |
H A D | CSKYAsmBackend.cpp | 216 Value <<= Info.TargetOffset; in applyFixup() 219 unsigned NumBytes = alignTo(Info.TargetSize + Info.TargetOffset, 8) / 8; in applyFixup()
|
/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/ |
H A D | AVRAsmBackend.cpp | 389 auto NumBits = Info.TargetSize + Info.TargetOffset; in applyFixup() 393 Value <<= Info.TargetOffset; in applyFixup()
|
/llvm-project/llvm/lib/Target/VE/MCTargetDesc/ |
H A D | VEAsmBackend.cpp | 193 Value <<= Info.TargetOffset; in applyFixup()
|
/llvm-project/llvm/lib/Target/Xtensa/MCTargetDesc/ |
H A D | XtensaAsmBackend.cpp | 156 Value <<= Info.TargetOffset; in applyFixup()
|
/llvm-project/llvm/lib/Target/LoongArch/MCTargetDesc/ |
H A D | LoongArchAsmBackend.cpp | 168 Value <<= Info.TargetOffset; in applyFixup() 171 unsigned NumBytes = alignTo(Info.TargetSize + Info.TargetOffset, 8) / 8; in applyFixup()
|
/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
H A D | AMDGPUAsmBackend.cpp | 152 Value <<= Info.TargetOffset; in applyFixup()
|
/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/ |
H A D | RISCVAsmBackend.cpp | 644 Value <<= Info.TargetOffset; in applyFixup() 647 unsigned NumBytes = alignTo(Info.TargetSize + Info.TargetOffset, 8) / 8; in applyFixup()
|
/llvm-project/bolt/lib/Core/ |
H A D | BinaryFunction.cpp | 856 uint64_t TargetOffset; in processIndirectBranch() 857 std::tie(TargetSym, TargetOffset) = BC.MIB->getTargetSymbolInfo(Expr); in processIndirectBranch() local 860 return *SymValueOrError + TargetOffset; in processIndirectBranch() 1092 uint64_t TargetOffset; in handleExternalReference() 1093 std::tie(TargetSymbol, TargetOffset) = in handleExternalReference() 1097 Instruction, TargetSymbol, static_cast<int64_t>(TargetOffset), &*BC.Ctx); in handleExternalReference() 1808 uint64_t TargetOffset = EntryAddress - getAddress(); in validateExternallyReferencedOffsets() 1809 if (TargetOffset < getSize()) { in validateExternallyReferencedOffsets() 1810 TakenBranches.emplace_back(JTSiteOffset, TargetOffset); in validateExternallyReferencedOffsets() 1813 registerReferencedOffset(TargetOffset); in validateExternallyReferencedOffsets() 1056 uint64_t TargetOffset; handlePCRelOperand() local 1767 uint64_t TargetOffset = EntryAddress - getAddress(); postProcessJumpTables() local [all...] |
/llvm-project/llvm/lib/DebugInfo/BTF/ |
H A D | BTFParser.cpp | 439 const uint64_t TargetOffset = Address.Address; in findInfo() local 441 SecInfo, [=](const T &Entry) { return Entry.InsnOffset < TargetOffset; }); in findInfo()
|
/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyldELF.cpp | 792 uint64_t TargetOffset = (Value + Addend) & 0xfff; in applyPPChi() 794 uint32_t Imm11_0 = TargetOffset << 10; in applyPPChi() 1467 uint64_t TargetOffset; in processRelocationRef() 1479 TargetOffset = SymInfo.getOffset(); in processRelocationRef() 1482 TargetOffset = 0; in processRelocationRef() 1495 if (!isInt<28>(TargetOffset + Value.Addend - SourceOffset)) in processRelocationRef() 1132 uint64_t TargetOffset; resolveAArch64ShortBranch() local
|
/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
H A D | AArch64AsmBackend.cpp | 452 Value <<= Info.TargetOffset; in applyFixup()
|
/llvm-project/llvm/lib/DebugInfo/CodeView/ |
H A D | SymbolRecordMapping.cpp | 80 error(IO.mapInteger(Tramp.TargetOffset)); in visitKnownRecord()
|
H A D | SymbolDumper.cpp | 150 W.printNumber("TargetOff", Tramp.TargetOffset); in visitKnownRecord()
|
/llvm-project/llvm/lib/ObjectYAML/ |
H A D | CodeViewYAMLSymbols.cpp | 329 IO.mapRequired("TargetOff", Symbol.TargetOffset); in map()
|
/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | SymbolRecord.h | 98 uint32_t TargetOffset = 0; variable
|