Searched refs:rot_amt (Results 1 - 7 of 7) sorted by relevance

/external/valgrind/VEX/priv/
H A Dguest_x86_defs.h108 UInt arg, UInt rot_amt, UInt eflags_in, UInt sz
111 UInt arg, UInt rot_amt, UInt eflags_in, UInt sz
H A Dguest_amd64_defs.h109 ULong arg, ULong rot_amt, ULong rflags_in, Long sz
113 ULong arg, ULong rot_amt, ULong rflags_in, Long sz
H A Dguest_x86_helpers.c1967 ULong x86g_calculate_RCR ( UInt arg, UInt rot_amt, UInt eflags_in, UInt sz ) argument
1969 UInt tempCOUNT = rot_amt & 0x1F, cf=0, of=0, tempcf;
2022 ULong x86g_calculate_RCL ( UInt arg, UInt rot_amt, UInt eflags_in, UInt sz ) argument
2024 UInt tempCOUNT = rot_amt & 0x1F, cf=0, of=0, tempcf;
H A Dguest_amd64_helpers.c3215 ULong rot_amt,
3221 ULong tempCOUNT = rot_amt & (sz == 8 ? 0x3F : 0x1F);
3283 ULong rot_amt,
3289 ULong tempCOUNT = rot_amt & (sz == 8 ? 0x3F : 0x1F);
3214 amd64g_calculate_RCR( ULong arg, ULong rot_amt, ULong rflags_in, Long szIN ) argument
3282 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_ppc_toIR.c1641 IRExpr* rot_amt )
1644 vassert(typeOfIRExpr(irsb->tyenv,rot_amt) == Ity_I8);
1647 // rot = (src << rot_amt) | (src >> (64-rot_amt))
1648 mask = binop(Iop_And8, rot_amt, mkU8(63));
1653 // rot = (src << rot_amt) | (src >> (32-rot_amt))
1654 mask = binop(Iop_And8, rot_amt, mkU8(31));
H A Dguest_amd64_toIR.c3675 IRTemp rot_amt = newTemp(Ity_I8); local
3680 /* rot_amt = shift_expr & mask */
3687 assign(rot_amt, mkexpr(rot_amt64));
3689 assign(rot_amt, binop(Iop_And8, mkexpr(rot_amt64), mkU8(8*sz-1)));
3693 /* dst1 = (dst0 << rot_amt) | (dst0 >>u (wordsize-rot_amt)) */
3698 mkexpr(rot_amt)
3702 binop(Iop_Sub8,mkU8(8*sz), mkexpr(rot_amt))
3710 /* dst1 = (dst0 >>u rot_amt) | (dst0 << (wordsize-rot_amt)) */
[all...]

Completed in 167 milliseconds