Searched refs:shift_amt (Results 1 – 6 of 6) sorted by relevance
/external/valgrind/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/swiftshader/third_party/LLVM/lib/Target/CellSPU/ |
D | SPUISelDAGToDAG.cpp | 762 unsigned shift_amt = unsigned(CN->getZExtValue()); in Select() local 764 if (shift_amt >= 32) { in Select() 769 shift_amt -= 32; in Select() 770 if (shift_amt > 0) { in Select() 772 SDValue shift = CurDAG->getTargetConstant(shift_amt, MVT::i32); in Select()
|
/external/valgrind/VEX/priv/ |
D | guest_arm_toIR.c | 1760 IRTemp rMt, UInt shift_amt, /* operands */ in compute_result_and_C_after_LSL_by_imm5() argument 1764 if (shift_amt == 0) { in compute_result_and_C_after_LSL_by_imm5() 1771 vassert(shift_amt >= 1 && shift_amt <= 31); in compute_result_and_C_after_LSL_by_imm5() 1776 mkU8(32 - shift_amt)), in compute_result_and_C_after_LSL_by_imm5() 1780 binop(Iop_Shl32, mkexpr(rMt), mkU8(shift_amt)) ); in compute_result_and_C_after_LSL_by_imm5() 1781 DIS(buf, "r%u, LSL #%u", rM, shift_amt); in compute_result_and_C_after_LSL_by_imm5() 1863 IRTemp rMt, UInt shift_amt, /* operands */ in compute_result_and_C_after_LSR_by_imm5() argument 1867 if (shift_amt == 0) { in compute_result_and_C_after_LSR_by_imm5() 1883 vassert(shift_amt >= 1 && shift_amt <= 31); in compute_result_and_C_after_LSR_by_imm5() 1888 mkU8(shift_amt - 1)), in compute_result_and_C_after_LSR_by_imm5() [all …]
|
D | guest_x86_toIR.c | 2466 IRTemp shift_amt = newTemp(Ity_I8); in dis_Grp2() local 2489 assign( shift_amt, binop(Iop_And8, shift_expr, mkU8(31)) ); in dis_Grp2() 2496 assign( res32, binop(op32, mkexpr(pre32), mkexpr(shift_amt)) ); in dis_Grp2() 2504 mkexpr(shift_amt), mkU8(1)), in dis_Grp2() 2508 setFlags_DEP1_DEP2_shift(op32, res32, res32ss, ty, shift_amt); in dis_Grp2() 6183 IRExpr* shift_amt, in dis_SHLRD_Gv_Ev() argument 6265 assign( tmpSH, binop(Iop_And8, shift_amt, mask) ); in dis_SHLRD_Gv_Ev()
|
D | guest_amd64_toIR.c | 3727 IRTemp shift_amt = newTemp(Ity_I8); in dis_Grp2() local 3754 assign( shift_amt, binop(Iop_And8, shift_expr, mkU8(mask)) ); in dis_Grp2() 3761 assign( res64, binop(op64, mkexpr(pre64), mkexpr(shift_amt)) ); in dis_Grp2() 3769 mkexpr(shift_amt), mkU8(1)), in dis_Grp2() 3773 setFlags_DEP1_DEP2_shift(op64, res64, res64ss, ty, shift_amt); in dis_Grp2() 7898 IRExpr* shift_amt, in dis_SHLRD_Gv_Ev() argument 7962 assign( tmpSH, binop(Iop_And8, shift_amt, mkU8(mask)) ); in dis_SHLRD_Gv_Ev()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64InstrInfo.td | 1019 // min(7, 31 - shift_amt) 1026 // min(15, 31 - shift_amt) 1043 // min(7, 63 - shift_amt) 1050 // min(15, 63 - shift_amt) 1057 // min(31, 63 - shift_amt)
|