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.c1893 ULong x86g_calculate_RCR ( UInt arg, UInt rot_amt, UInt eflags_in, UInt sz ) in x86g_calculate_RCR() argument
1895 UInt tempCOUNT = rot_amt & 0x1F, cf=0, of=0, tempcf; in x86g_calculate_RCR()
1948 ULong x86g_calculate_RCL ( UInt arg, UInt rot_amt, UInt eflags_in, UInt sz ) in x86g_calculate_RCL() argument
1950 UInt tempCOUNT = rot_amt & 0x1F, cf=0, of=0, tempcf; in x86g_calculate_RCL()
Dguest_amd64_helpers.c2873 ULong rot_amt, in amd64g_calculate_RCR() argument
2879 ULong tempCOUNT = rot_amt & (sz == 8 ? 0x3F : 0x1F); in amd64g_calculate_RCR()
2941 ULong rot_amt, in amd64g_calculate_RCL() argument
2947 ULong tempCOUNT = rot_amt & (sz == 8 ? 0x3F : 0x1F); in amd64g_calculate_RCL()
Dguest_x86_toIR.c2517 IRTemp rot_amt = newTemp(Ity_I8); in dis_Grp2() local
2528 assign(rot_amt, mkexpr(rot_amt32)); in dis_Grp2()
2530 assign(rot_amt, binop(Iop_And8, mkexpr(rot_amt32), mkU8(8*sz-1))); in dis_Grp2()
2539 mkexpr(rot_amt) in dis_Grp2()
2543 binop(Iop_Sub8,mkU8(8*sz), mkexpr(rot_amt)) in dis_Grp2()
2556 mkexpr(rot_amt) in dis_Grp2()
2560 binop(Iop_Sub8,mkU8(8*sz), mkexpr(rot_amt)) in dis_Grp2()
Dguest_amd64_toIR.c3668 IRTemp rot_amt = newTemp(Ity_I8); in dis_Grp2() local
3680 assign(rot_amt, mkexpr(rot_amt64)); in dis_Grp2()
3682 assign(rot_amt, binop(Iop_And8, mkexpr(rot_amt64), mkU8(8*sz-1))); in dis_Grp2()
3691 mkexpr(rot_amt) in dis_Grp2()
3695 binop(Iop_Sub8,mkU8(8*sz), mkexpr(rot_amt)) in dis_Grp2()
3708 mkexpr(rot_amt) in dis_Grp2()
3712 binop(Iop_Sub8,mkU8(8*sz), mkexpr(rot_amt)) in dis_Grp2()
Dguest_ppc_toIR.c1631 IRExpr* rot_amt ) in ROTL() argument
1634 vassert(typeOfIRExpr(irsb->tyenv,rot_amt) == Ity_I8); in ROTL()
1638 mask = binop(Iop_And8, rot_amt, mkU8(63)); in ROTL()
1644 mask = binop(Iop_And8, rot_amt, mkU8(31)); in ROTL()