Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A Daarch64.h473 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
477 uint32_t FixedInstr = RawInstr | Imm; in applyFixup()
486 assert(isMoveWideImm16(RawInstr) && in applyFixup()
491 uint32_t FixedInstr = RawInstr | (Imm << 5); in applyFixup()
508 uint32_t FixedInstr = RawInstr | EncodedImm; in applyFixup()
530 assert(isTestAndBranchImm14(RawInstr) && in applyFixup()
539 uint32_t FixedInstr = RawInstr | EncodedImm; in applyFixup()
547 assert((isCondBranchImm19(RawInstr) || isCompAndBranchImm19(RawInstr)) && in applyFixup()
557 uint32_t FixedInstr = RawInstr | EncodedImm; in applyFixup()
592 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-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELF_riscv.cpp218 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
233 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
235 (RawInstr & 0xFFF) | Imm20 | Imm10_1 | Imm11 | Imm19_12; in applyFixup()
263 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
278 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
295 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
305 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
315 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
327 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
395 uint16_t RawInstr = *(little16_t *)FixupPtr; in applyFixup() local
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp483 uint32_t RawInstr = *(support::little32_t *)TargetPtr; in resolveAArch64Relocation() local
484 *(support::little32_t *)TargetPtr = RawInstr & 0xfff8001fU; in resolveAArch64Relocation()