Home | History | Annotate | Download | only in Utils

Lines Matching defs:Shift

37   ConstantInt *Shift;
40 Shift = Builder.getInt64(63);
43 Shift = Builder.getInt32(31);
46 // Following instructions are generated for both i32 (shift 31) and
47 // i64 (shift 63).
58 Value *DividendSign = Builder.CreateAShr(Dividend, Shift);
59 Value *DivisorSign = Builder.CreateAShr(Divisor, Shift);
109 ConstantInt *Shift;
112 Shift = Builder.getInt64(63);
115 Shift = Builder.getInt32(31);
118 // Following instructions are generated for both i32 (shift 31) and
119 // i64 (shift 63).
131 Value *Tmp = Builder.CreateAShr(Dividend, Shift);
132 Value *Tmp1 = Builder.CreateAShr(Divisor, Shift);