Searched refs:shift_amt (Results 1 – 5 of 5) sorted by relevance
/external/valgrind/main/none/tests/x86/ |
D | shift_ndep.c | 10 char shift_amt = 0; in shift_ndep() local 30 : [x] "+r" (x) : [shift_amt] "c" (shift_amt)); in shift_ndep()
|
/external/valgrind/main/VEX/priv/ |
D | guest_arm_toIR.c | 1733 IRTemp rMt, UInt shift_amt, /* operands */ in compute_result_and_C_after_LSL_by_imm5() argument 1737 if (shift_amt == 0) { in compute_result_and_C_after_LSL_by_imm5() 1744 vassert(shift_amt >= 1 && shift_amt <= 31); in compute_result_and_C_after_LSL_by_imm5() 1749 mkU8(32 - shift_amt)), in compute_result_and_C_after_LSL_by_imm5() 1753 binop(Iop_Shl32, mkexpr(rMt), mkU8(shift_amt)) ); in compute_result_and_C_after_LSL_by_imm5() 1754 DIS(buf, "r%u, LSL #%u", rM, shift_amt); in compute_result_and_C_after_LSL_by_imm5() 1836 IRTemp rMt, UInt shift_amt, /* operands */ in compute_result_and_C_after_LSR_by_imm5() argument 1840 if (shift_amt == 0) { in compute_result_and_C_after_LSR_by_imm5() 1856 vassert(shift_amt >= 1 && shift_amt <= 31); in compute_result_and_C_after_LSR_by_imm5() 1861 mkU8(shift_amt - 1)), in compute_result_and_C_after_LSR_by_imm5() [all …]
|
D | guest_x86_toIR.c | 2464 IRTemp shift_amt = newTemp(Ity_I8); in dis_Grp2() local 2487 assign( shift_amt, binop(Iop_And8, shift_expr, mkU8(31)) ); in dis_Grp2() 2494 assign( res32, binop(op32, mkexpr(pre32), mkexpr(shift_amt)) ); in dis_Grp2() 2502 mkexpr(shift_amt), mkU8(1)), in dis_Grp2() 2506 setFlags_DEP1_DEP2_shift(op32, res32, res32ss, ty, shift_amt); in dis_Grp2() 6181 IRExpr* shift_amt, in dis_SHLRD_Gv_Ev() argument 6263 assign( tmpSH, binop(Iop_And8, shift_amt, mask) ); in dis_SHLRD_Gv_Ev()
|
D | guest_amd64_toIR.c | 3610 IRTemp shift_amt = newTemp(Ity_I8); in dis_Grp2() local 3637 assign( shift_amt, binop(Iop_And8, shift_expr, mkU8(mask)) ); in dis_Grp2() 3644 assign( res64, binop(op64, mkexpr(pre64), mkexpr(shift_amt)) ); in dis_Grp2() 3652 mkexpr(shift_amt), mkU8(1)), in dis_Grp2() 3656 setFlags_DEP1_DEP2_shift(op64, res64, res64ss, ty, shift_amt); in dis_Grp2() 7760 IRExpr* shift_amt, in dis_SHLRD_Gv_Ev() argument 7824 assign( tmpSH, binop(Iop_And8, shift_amt, mkU8(mask)) ); in dis_SHLRD_Gv_Ev()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64InstrInfo.td | 806 // min(7, 31 - shift_amt) 813 // min(15, 31 - shift_amt) 830 // min(7, 63 - shift_amt) 837 // min(15, 63 - shift_amt) 844 // min(31, 63 - shift_amt)
|