Home
last modified time | relevance | path

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

/external/valgrind/VEX/priv/
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
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
Dguest_x86_helpers.c1966 ULong x86g_calculate_RCR ( UInt arg, UInt rot_amt, UInt eflags_in, UInt sz ) in x86g_calculate_RCR() argument
1968 UInt tempCOUNT = rot_amt & 0x1F, cf=0, of=0, tempcf; in x86g_calculate_RCR()
2021 ULong x86g_calculate_RCL ( UInt arg, UInt rot_amt, UInt eflags_in, UInt sz ) in x86g_calculate_RCL() argument
2023 UInt tempCOUNT = rot_amt & 0x1F, cf=0, of=0, tempcf; in x86g_calculate_RCL()
Dguest_amd64_helpers.c3310 ULong rot_amt, in amd64g_calculate_RCR() argument
3316 ULong tempCOUNT = rot_amt & (sz == 8 ? 0x3F : 0x1F); in amd64g_calculate_RCR()
3378 ULong rot_amt, in amd64g_calculate_RCL() argument
3384 ULong tempCOUNT = rot_amt & (sz == 8 ? 0x3F : 0x1F); in amd64g_calculate_RCL()
Dguest_x86_toIR.c2519 IRTemp rot_amt = newTemp(Ity_I8); in dis_Grp2() local
2530 assign(rot_amt, mkexpr(rot_amt32)); in dis_Grp2()
2532 assign(rot_amt, binop(Iop_And8, mkexpr(rot_amt32), mkU8(8*sz-1))); in dis_Grp2()
2541 mkexpr(rot_amt) in dis_Grp2()
2545 binop(Iop_Sub8,mkU8(8*sz), mkexpr(rot_amt)) in dis_Grp2()
2558 mkexpr(rot_amt) in dis_Grp2()
2562 binop(Iop_Sub8,mkU8(8*sz), mkexpr(rot_amt)) in dis_Grp2()
Dguest_amd64_toIR.c3785 IRTemp rot_amt = newTemp(Ity_I8); in dis_Grp2() local
3797 assign(rot_amt, mkexpr(rot_amt64)); in dis_Grp2()
3799 assign(rot_amt, binop(Iop_And8, mkexpr(rot_amt64), mkU8(8*sz-1))); in dis_Grp2()
3808 mkexpr(rot_amt) in dis_Grp2()
3812 binop(Iop_Sub8,mkU8(8*sz), mkexpr(rot_amt)) in dis_Grp2()
3825 mkexpr(rot_amt) in dis_Grp2()
3829 binop(Iop_Sub8,mkU8(8*sz), mkexpr(rot_amt)) in dis_Grp2()
Dguest_ppc_toIR.c1723 IRExpr* rot_amt ) in ROTL() argument
1726 vassert(typeOfIRExpr(irsb->tyenv,rot_amt) == Ity_I8); in ROTL()
1730 mask = binop(Iop_And8, rot_amt, mkU8(63)); in ROTL()
1736 mask = binop(Iop_And8, rot_amt, mkU8(31)); in ROTL()