Searched defs:rot_amt (Results 1 - 4 of 4) sorted by relevance
/external/valgrind/main/VEX/priv/ |
H A D | guest_x86_helpers.c | 1892 ULong x86g_calculate_RCR ( UInt arg, UInt rot_amt, UInt eflags_in, UInt sz ) argument 1894 UInt tempCOUNT = rot_amt & 0x1F, cf=0, of=0, tempcf; 1947 ULong x86g_calculate_RCL ( UInt arg, UInt rot_amt, UInt eflags_in, UInt sz ) argument 1949 UInt tempCOUNT = rot_amt & 0x1F, cf=0, of=0, tempcf;
|
H A D | guest_amd64_helpers.c | 2646 ULong rot_amt, 2652 ULong tempCOUNT = rot_amt & (sz == 8 ? 0x3F : 0x1F); 2714 ULong rot_amt, 2720 ULong tempCOUNT = rot_amt & (sz == 8 ? 0x3F : 0x1F); 2645 amd64g_calculate_RCR( ULong arg, ULong rot_amt, ULong rflags_in, Long szIN ) argument 2713 amd64g_calculate_RCL( ULong arg, ULong rot_amt, ULong rflags_in, Long szIN ) argument
|
H A D | guest_x86_toIR.c | 2515 IRTemp rot_amt = newTemp(Ity_I8); local 2519 /* rot_amt = shift_expr & mask */ 2526 assign(rot_amt, mkexpr(rot_amt32)); 2528 assign(rot_amt, binop(Iop_And8, mkexpr(rot_amt32), mkU8(8*sz-1))); 2532 /* dst1 = (dst0 << rot_amt) | (dst0 >>u (wordsize-rot_amt)) */ 2537 mkexpr(rot_amt) 2541 binop(Iop_Sub8,mkU8(8*sz), mkexpr(rot_amt)) 2549 /* dst1 = (dst0 >>u rot_amt) | (dst0 << (wordsize-rot_amt)) */ [all...] |
H A D | guest_amd64_toIR.c | 3541 IRTemp rot_amt = newTemp(Ity_I8); local 3546 /* rot_amt = shift_expr & mask */ 3553 assign(rot_amt, mkexpr(rot_amt64)); 3555 assign(rot_amt, binop(Iop_And8, mkexpr(rot_amt64), mkU8(8*sz-1))); 3559 /* dst1 = (dst0 << rot_amt) | (dst0 >>u (wordsize-rot_amt)) */ 3564 mkexpr(rot_amt) 3568 binop(Iop_Sub8,mkU8(8*sz), mkexpr(rot_amt)) 3576 /* dst1 = (dst0 >>u rot_amt) | (dst0 << (wordsize-rot_amt)) */ [all...] |
Completed in 106 milliseconds