Home
last modified time | relevance | path

Searched refs:TargetOffset (Results 1 – 24 of 24) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFThumb.h130 uint64_t TargetOffset = -1; in processRelocationRef()
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 resolveRelocation()
198 TargetOffset + Addend, true, 0); in resolveRelocation()
108 uint64_t TargetOffset = -1; processRelocationRef() local
H A DRuntimeDyldCOFFI386.h62 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 DRuntimeDyldCOFFX86_64.h227 uint64_t TargetOffset = 0; in processRelocationRef()
232 TargetOffset = getDLLImportOffset(SectionID, Stubs, TargetName); in processRelocationRef()
241 TargetOffset = getSymbolOffset(*Symbol); in processRelocationRef()
281 RelocationEntry RE(SectionID, Offset, RelType, TargetOffset + Addend); in registerEHFrames()
220 uint64_t TargetOffset = 0; processRelocationRef() local
H A DRuntimeDyldCOFFAArch64.h175 uint64_t TargetOffset = -1; in processRelocationRef() local
179 TargetOffset = getDLLImportOffset(SectionID, Stubs, TargetName); in processRelocationRef()
189 TargetOffset = getSymbolOffset(*Symbol); in processRelocationRef()
251 RelocationEntry RE(SectionID, Offset, RelType, TargetOffset + Addend); in processRelocationRef()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A Daarch64.h494 uint64_t TargetOffset = in applyFixup() local
502 uint32_t Imm = (TargetOffset >> ImmShift) & 0xffff; in applyFixup()
592 uint64_t TargetOffset = in applyFixup() local
598 if (TargetOffset & ((1 << ImmShift) - 1)) in applyFixup()
601 uint32_t EncodedImm = (TargetOffset >> ImmShift) << 10; in applyFixup()
H A Dloongarch.h243 uint64_t TargetOffset = (TargetAddress + Addend) & 0xfff; in applyFixup() local
246 uint32_t Imm11_0 = TargetOffset << 10; in applyFixup()
/freebsd/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/
H A DMSP430AsmBackend.cpp131 Value <<= Info.TargetOffset; in applyFixup()
134 unsigned NumBytes = alignTo(Info.TargetSize + Info.TargetOffset, 8) / 8; in applyFixup()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCFixupKindInfo.h38 unsigned TargetOffset; member
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/BTF/
H A DBTFParser.cpp439 const uint64_t TargetOffset = Address.Address;
441 SecInfo, [=](const T &Entry) { return Entry.InsnOffset < TargetOffset; });
274 const uint64_t TargetOffset = Address.Address; findLineInfo() local
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyAsmBackend.cpp102 Value <<= Info.TargetOffset; in applyFixup()
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/MCTargetDesc/
H A DCSKYAsmBackend.cpp216 Value <<= Info.TargetOffset; in applyFixup()
219 unsigned NumBytes = alignTo(Info.TargetSize + Info.TargetOffset, 8) / 8; in applyFixup()
/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRAsmBackend.cpp396 auto NumBits = Info.TargetSize + Info.TargetOffset; in applyFixup()
400 Value <<= Info.TargetOffset; in applyFixup()
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/MCTargetDesc/
H A DVEAsmBackend.cpp193 Value <<= Info.TargetOffset; in applyFixup()
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/MCTargetDesc/
H A DXtensaAsmBackend.cpp154 Value <<= Info.TargetOffset; in applyFixup()
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/MCTargetDesc/
H A DLoongArchAsmBackend.cpp168 Value <<= Info.TargetOffset; in applyFixup()
171 unsigned NumBytes = alignTo(Info.TargetSize + Info.TargetOffset, 8) / 8; in applyFixup()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUAsmBackend.cpp152 Value <<= Info.TargetOffset; in applyFixup()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVAsmBackend.cpp641 Value <<= Info.TargetOffset; in applyFixup()
644 unsigned NumBytes = alignTo(Info.TargetSize + Info.TargetOffset, 8) / 8; in applyFixup()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp1131 uint64_t TargetOffset; in resolveAArch64ShortBranch() local
1143 TargetOffset = SymInfo.getOffset(); in resolveAArch64ShortBranch()
1146 TargetOffset = 0; in resolveAArch64ShortBranch()
1159 if (!isInt<28>(TargetOffset + Value.Addend - SourceOffset)) in resolveAArch64ShortBranch()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AsmBackend.cpp444 Value <<= Info.TargetOffset; in applyFixup()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolRecordMapping.cpp80 error(IO.mapInteger(Tramp.TargetOffset)); in visitKnownRecord()
H A DSymbolDumper.cpp150 W.printNumber("TargetOff", Tramp.TargetOffset); in visitKnownRecord()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h98 uint32_t TargetOffset = 0; variable
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp330 IO.mapRequired("TargetOff", Symbol.TargetOffset); in map()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp2336 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j; in AddEncodingComment()