Home
last modified time | relevance | path

Searched refs:Imm11 (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_riscv.cpp71 uint32_t Imm11 = (Imm & 0x800) << 9; in encodeJTypeInstruction() local
73 return ImmMSB | ImmLSB | Imm11 | Imm1912 | Rd << 7 | Opcode; in encodeJTypeInstruction()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELF_riscv.cpp219 uint32_t Imm11 = extractBits(Value, 11, 1) << 7; in applyFixup() local
222 (RawInstr & 0x1FFF07F) | Imm12 | Imm10_5 | Imm4_1 | Imm11; in applyFixup()
233 uint32_t Imm11 = extractBits(Value, 11, 1) << 20; in applyFixup() local
237 (RawInstr & 0xFFF) | Imm20 | Imm10_1 | Imm11 | Imm19_12; in applyFixup()
408 uint16_t Imm11 = extractBits(Value, 11, 1) << 12; in applyFixup() local
417 *(little16_t *)FixupPtr = (RawInstr & 0xE003) | Imm11 | Imm4 | Imm9_8 | in applyFixup()
H A Daarch32.cpp69 uint32_t Imm11 = (Value >> 1) & 0x07ff; in encodeImmBT4BlT1BlxT2_J1J2() local
70 return HalfWords{S | Imm10, J1 | J2 | Imm11}; in encodeImmBT4BlT1BlxT2_J1J2()
83 uint32_t Imm11 = Lo & 0x07ff; in decodeImmBT4BlT1BlxT2_J1J2() local
84 return SignExtend64<25>(S << 14 | I1 | I2 | Imm10 << 12 | Imm11 << 1); in decodeImmBT4BlT1BlxT2_J1J2()