Searched refs:rot_amt (Results 1 – 7 of 7) sorted by relevance
/external/valgrind/main/VEX/priv/ |
D | guest_x86_defs.h | 103 UInt arg, UInt rot_amt, UInt eflags_in, UInt sz 106 UInt arg, UInt rot_amt, UInt eflags_in, UInt sz
|
D | guest_amd64_defs.h | 104 ULong arg, ULong rot_amt, ULong rflags_in, Long sz 108 ULong arg, ULong rot_amt, ULong rflags_in, Long sz
|
D | guest_x86_helpers.c | 1879 ULong x86g_calculate_RCR ( UInt arg, UInt rot_amt, UInt eflags_in, UInt sz ) in x86g_calculate_RCR() argument 1881 UInt tempCOUNT = rot_amt & 0x1F, cf=0, of=0, tempcf; in x86g_calculate_RCR() 1934 ULong x86g_calculate_RCL ( UInt arg, UInt rot_amt, UInt eflags_in, UInt sz ) in x86g_calculate_RCL() argument 1936 UInt tempCOUNT = rot_amt & 0x1F, cf=0, of=0, tempcf; in x86g_calculate_RCL()
|
D | guest_amd64_helpers.c | 2371 ULong rot_amt, in amd64g_calculate_RCR() argument 2377 ULong tempCOUNT = rot_amt & (sz == 8 ? 0x3F : 0x1F); in amd64g_calculate_RCR() 2439 ULong rot_amt, in amd64g_calculate_RCL() argument 2445 ULong tempCOUNT = rot_amt & (sz == 8 ? 0x3F : 0x1F); in amd64g_calculate_RCL()
|
D | guest_x86_toIR.c | 2494 IRTemp rot_amt = newTemp(Ity_I8); in dis_Grp2() local 2505 assign(rot_amt, mkexpr(rot_amt32)); in dis_Grp2() 2507 assign(rot_amt, binop(Iop_And8, mkexpr(rot_amt32), mkU8(8*sz-1))); in dis_Grp2() 2516 mkexpr(rot_amt) in dis_Grp2() 2520 binop(Iop_Sub8,mkU8(8*sz), mkexpr(rot_amt)) in dis_Grp2() 2533 mkexpr(rot_amt) in dis_Grp2() 2537 binop(Iop_Sub8,mkU8(8*sz), mkexpr(rot_amt)) in dis_Grp2()
|
D | guest_amd64_toIR.c | 3414 IRTemp rot_amt = newTemp(Ity_I8); in dis_Grp2() local 3426 assign(rot_amt, mkexpr(rot_amt64)); in dis_Grp2() 3428 assign(rot_amt, binop(Iop_And8, mkexpr(rot_amt64), mkU8(8*sz-1))); in dis_Grp2() 3437 mkexpr(rot_amt) in dis_Grp2() 3441 binop(Iop_Sub8,mkU8(8*sz), mkexpr(rot_amt)) in dis_Grp2() 3454 mkexpr(rot_amt) in dis_Grp2() 3458 binop(Iop_Sub8,mkU8(8*sz), mkexpr(rot_amt)) in dis_Grp2()
|
D | guest_ppc_toIR.c | 1358 IRExpr* rot_amt ) in ROTL() argument 1361 vassert(typeOfIRExpr(irsb->tyenv,rot_amt) == Ity_I8); in ROTL() 1365 mask = binop(Iop_And8, rot_amt, mkU8(63)); in ROTL() 1371 mask = binop(Iop_And8, rot_amt, mkU8(31)); in ROTL()
|