Searched defs:rot_amt (Results 1 - 4 of 4) sorted by relevance
/external/valgrind/VEX/priv/ |
H A D | guest_x86_helpers.c | 1967 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 D | guest_amd64_helpers.c | 3215 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 D | guest_x86_toIR.c | 2517 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 D | guest_amd64_toIR.c | 3675 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 1094 milliseconds