Searched defs:rot_amt (Results 1 - 4 of 4) sorted by relevance

/external/valgrind/main/VEX/priv/
H A Dguest_x86_helpers.c1893 ULong x86g_calculate_RCR ( UInt arg, UInt rot_amt, UInt eflags_in, UInt sz ) argument
1895 UInt tempCOUNT = rot_amt & 0x1F, cf=0, of=0, tempcf;
1948 ULong x86g_calculate_RCL ( UInt arg, UInt rot_amt, UInt eflags_in, UInt sz ) argument
1950 UInt tempCOUNT = rot_amt & 0x1F, cf=0, of=0, tempcf;
H A Dguest_amd64_helpers.c2735 ULong rot_amt,
2741 ULong tempCOUNT = rot_amt & (sz == 8 ? 0x3F : 0x1F);
2803 ULong rot_amt,
2809 ULong tempCOUNT = rot_amt & (sz == 8 ? 0x3F : 0x1F);
2734 amd64g_calculate_RCR( ULong arg, ULong rot_amt, ULong rflags_in, Long szIN ) argument
2802 amd64g_calculate_RCL( ULong arg, ULong rot_amt, ULong rflags_in, Long szIN ) argument
H A Dguest_x86_toIR.c2517 IRTemp rot_amt = newTemp(Ity_I8); local
2521 /* rot_amt = shift_expr & mask */
2528 assign(rot_amt, mkexpr(rot_amt32));
2530 assign(rot_amt, binop(Iop_And8, mkexpr(rot_amt32), mkU8(8*sz-1)));
2534 /* dst1 = (dst0 << rot_amt) | (dst0 >>u (wordsize-rot_amt)) */
2539 mkexpr(rot_amt)
2543 binop(Iop_Sub8,mkU8(8*sz), mkexpr(rot_amt))
2551 /* dst1 = (dst0 >>u rot_amt) | (dst0 << (wordsize-rot_amt)) */
[all...]
H A Dguest_amd64_toIR.c3668 IRTemp rot_amt = newTemp(Ity_I8); local
3673 /* rot_amt = shift_expr & mask */
3680 assign(rot_amt, mkexpr(rot_amt64));
3682 assign(rot_amt, binop(Iop_And8, mkexpr(rot_amt64), mkU8(8*sz-1)));
3686 /* dst1 = (dst0 << rot_amt) | (dst0 >>u (wordsize-rot_amt)) */
3691 mkexpr(rot_amt)
3695 binop(Iop_Sub8,mkU8(8*sz), mkexpr(rot_amt))
3703 /* dst1 = (dst0 >>u rot_amt) | (dst0 << (wordsize-rot_amt)) */
[all...]

Completed in 1449 milliseconds