Searched refs:imm19 (Results 1 – 3 of 3) sorted by relevance
/openbmc/linux/arch/arm64/net/ |
H A D | bpf_jit.h | 26 #define A64_CBZ(sf, Rt, imm19) A64_COMP_BRANCH(sf, Rt, (imm19) << 2, ZERO) argument 27 #define A64_CBNZ(sf, Rt, imm19) A64_COMP_BRANCH(sf, Rt, (imm19) << 2, NONZERO) argument 42 #define A64_B_(cond, imm19) A64_COND_BRANCH(cond, (imm19) << 2) argument
|
/openbmc/qemu/target/arm/tcg/ |
H A D | a64.decode | 172 %imm19 5:s19 !function=times_4 175 CBZ sf:1 011010 nz:1 ................... rt:5 &cbz imm=%imm19 184 B_cond 0101010 0 ................... c:1 cond:4 imm=%imm19 317 @ldlit .. ... . .. ................... rt:5 &ldlit imm=%imm19
|
/openbmc/qemu/tcg/aarch64/ |
H A D | tcg-target.c.inc | 658 int imm19, TCGReg rt) 660 tcg_out32(s, insn | (imm19 & 0x7ffff) << 5 | rt); 670 TCGReg rt, int imm19) 672 tcg_out32(s, insn | ext << 31 | (imm19 & 0x7ffff) << 5 | rt); 676 TCGCond c, int imm19) 678 tcg_out32(s, insn | tcg_cond_to_aarch64[c] | (imm19 & 0x7ffff) << 5);
|