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.h549 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
550 assert((RawInstr & 0x7fffffff) == 0x14000000 && in applyFixup()
553 uint32_t FixedInstr = RawInstr | Imm; in applyFixup()
561 uint32_t RawInstr = *(ulittle32_t *)FixupPtr; in applyFixup() local
562 assert(isMoveWideImm16(RawInstr) && in applyFixup()
565 unsigned ImmShift = getMoveWide16Shift(RawInstr); in applyFixup()
567 uint32_t FixedInstr = RawInstr | (Imm << 5); in applyFixup()
573 uint32_t RawInstr = *(ulittle32_t *)FixupPtr; in applyFixup() local
574 assert(isLDRLiteral(RawInstr) && "RawInstr is not an LDR Literal"); in applyFixup()
582 uint32_t FixedInstr = RawInstr | EncodedImm; in applyFixup()
[all …]
H A Dloongarch.h363 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
366 *(little32_t *)FixupPtr = RawInstr | Imm15_0; in applyFixup()
378 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
382 *(little32_t *)FixupPtr = RawInstr | Imm15_0 | Imm20_16; in applyFixup()
394 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
398 *(little32_t *)FixupPtr = RawInstr | Imm15_0 | Imm25_16; in applyFixup()
429 uint32_t RawInstr = *(little32_t *)FixupPtr; in applyFixup() local
431 *(little32_t *)FixupPtr = RawInstr | Imm31_12; in applyFixup()
437 uint32_t RawInstr = *(ulittle32_t *)FixupPtr; in applyFixup() local
439 *(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.cpp481 uint32_t RawInstr = *(support::little32_t *)TargetPtr; in resolveAArch64Relocation() local
482 *(support::little32_t *)TargetPtr = RawInstr & 0xfff8001fU; in resolveAArch64Relocation()