Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFThumb.h108 uint64_t TargetOffset = -1; in processRelocationRef() local
112 TargetOffset = getDLLImportOffset(SectionID, Stubs, TargetName, true); in processRelocationRef()
122 TargetOffset = getSymbolOffset(*Symbol); in processRelocationRef()
142 TargetOffset, 0, 0, false, 0, IsTargetThumbFunc); in processRelocationRef()
149 TargetOffset, 0, 0, false, 0); in processRelocationRef()
161 RelocationEntry(SectionID, Offset, RelType, TargetOffset + Addend); in processRelocationRef()
168 TargetOffset, 0, 0, false, 0, IsTargetThumbFunc); in processRelocationRef()
176 TargetOffset + Addend, true, 0); in processRelocationRef()
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.h220 uint64_t TargetOffset = 0; in processRelocationRef() local
225 TargetOffset = getDLLImportOffset(SectionID, Stubs, TargetName); in processRelocationRef()
234 TargetOffset = getSymbolOffset(*Symbol); in processRelocationRef()
274 RelocationEntry RE(SectionID, Offset, RelType, TargetOffset + Addend); in processRelocationRef()
H A DRuntimeDyldCOFFAArch64.h174 uint64_t TargetOffset = -1; in processRelocationRef() local
178 TargetOffset = getDLLImportOffset(SectionID, Stubs, TargetName); in processRelocationRef()
188 TargetOffset = getSymbolOffset(*Symbol); in processRelocationRef()
250 RelocationEntry RE(SectionID, Offset, RelType, TargetOffset + Addend); in processRelocationRef()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/
H A DMSP430AsmBackend.cpp136 Value <<= Info.TargetOffset; in applyFixup()
139 unsigned NumBytes = alignTo(Info.TargetSize + Info.TargetOffset, 8) / 8; in applyFixup()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachO_arm64.cpp592 uint64_t TargetOffset = in applyFixup() local
598 if (TargetOffset & ((1 << ImmShift) - 1)) in applyFixup()
601 uint32_t EncodedImm = (TargetOffset >> ImmShift) << 10; in applyFixup()
613 uint32_t TargetOffset = E.getTarget().getAddress() & 0xfff; in applyFixup() local
614 assert((TargetOffset & 0x7) == 0 && "GOT entry is not 8-byte aligned"); in applyFixup()
615 uint32_t EncodedImm = (TargetOffset >> 3) << 10; in applyFixup()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/CSKY/MCTargetDesc/
H A DCSKYAsmBackend.cpp113 Value <<= Info.TargetOffset; in applyFixup()
116 unsigned NumBytes = alignTo(Info.TargetSize + Info.TargetOffset, 8) / 8; in applyFixup()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCFixupKindInfo.h38 unsigned TargetOffset; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyAsmBackend.cpp108 Value <<= Info.TargetOffset; in applyFixup()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRAsmBackend.cpp373 auto NumBits = Info.TargetSize + Info.TargetOffset; in applyFixup()
377 Value <<= Info.TargetOffset; in applyFixup()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/VE/MCTargetDesc/
H A DVEAsmBackend.cpp197 Value <<= Info.TargetOffset; in applyFixup()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUAsmBackend.cpp143 Value <<= Info.TargetOffset; in applyFixup()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVAsmBackend.cpp564 Value <<= Info.TargetOffset; in applyFixup()
567 unsigned NumBytes = alignTo(Info.TargetSize + Info.TargetOffset, 8) / 8; in applyFixup()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AsmBackend.cpp403 Value <<= Info.TargetOffset; in applyFixup()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolRecordMapping.cpp80 error(IO.mapInteger(Tramp.TargetOffset)); in visitKnownRecord()
H A DSymbolDumper.cpp152 W.printNumber("TargetOff", Tramp.TargetOffset); in visitKnownRecord()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp316 IO.mapRequired("TargetOff", Symbol.TargetOffset); in map()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h99 uint32_t TargetOffset = 0; variable
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmStreamer.cpp2167 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j; in AddEncodingComment()