Home
last modified time | relevance | path

Searched refs:RawInstr (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A Daarch64.h485 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
486 assert((RawInstr & 0x7fffffff) == 0x14000000 && in applyFixup()
489 uint32_t FixedInstr = RawInstr | Imm; in applyFixup()
497 uint32_t RawInstr = *(ulittle32_t *)FixupPtr; in applyFixup() local
498 assert(isMoveWideImm16(RawInstr) && in applyFixup()
501 unsigned ImmShift = getMoveWide16Shift(RawInstr); in applyFixup()
503 uint32_t FixedInstr = RawInstr | (Imm << 5); in applyFixup()
509 uint32_t RawInstr = *(ulittle32_t *)FixupPtr; in applyFixup() local
510 assert(isLDRLiteral(RawInstr) && "RawInstr is not an LDR Literal"); in applyFixup()
518 uint32_t FixedInstr = RawInstr | EncodedImm; in applyFixup()
[all …]
H A Dloongarch.h202 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
206 *(little32_t *)FixupPtr = RawInstr | Imm15_0 | Imm25_16; in applyFixup()
237 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
239 *(little32_t *)FixupPtr = RawInstr | Imm31_12; in applyFixup()
245 uint32_t RawInstr = *(ulittle32_t *)FixupPtr; in applyFixup() local
247 *(ulittle32_t *)FixupPtr = RawInstr | Imm11_0; in applyFixup()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELF_riscv.cpp220 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
222 (RawInstr & 0x1FFF07F) | Imm12 | Imm10_5 | Imm4_1 | Imm11; in applyFixup()
235 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
237 (RawInstr & 0xFFF) | Imm20 | Imm10_1 | Imm11 | Imm19_12; in applyFixup()
265 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
267 (RawInstr & 0xFFF) | (static_cast<uint32_t>(Hi & 0xFFFFF000)); in applyFixup()
280 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
282 (RawInstr & 0xFFFFF) | (static_cast<uint32_t>(Lo & 0xFFF) << 20); in applyFixup()
297 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
299 *(little32_t *)FixupPtr = (RawInstr & 0x1FFF07F) | Imm11_5 | Imm4_0; in applyFixup()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp482 uint32_t RawInstr = *(support::little32_t *)TargetPtr; in resolveAArch64Relocation() local
483 *(support::little32_t *)TargetPtr = RawInstr & 0xfff8001fU; in resolveAArch64Relocation()