Lines Matching refs:INT32_BITS
2573 } else if (ShiftAmount < INT32_BITS) { in lowerInt64Arithmetic()
2575 _srl(T1, Src0LoR, INT32_BITS - ShiftAmount); in lowerInt64Arithmetic()
2579 } else if (ShiftAmount == INT32_BITS) { in lowerInt64Arithmetic()
2582 } else if (ShiftAmount > INT32_BITS && ShiftAmount < 64) { in lowerInt64Arithmetic()
2583 _sll(T_Hi, Src0LoR, ShiftAmount - INT32_BITS); in lowerInt64Arithmetic()
2604 _andi(T5, Src1LoR, INT32_BITS); in lowerInt64Arithmetic()
2626 if (ShiftAmount < INT32_BITS) { in lowerInt64Arithmetic()
2628 _sll(T1, Src0HiR, INT32_BITS - ShiftAmount); in lowerInt64Arithmetic()
2632 } else if (ShiftAmount == INT32_BITS) { in lowerInt64Arithmetic()
2635 } else if (ShiftAmount > INT32_BITS && ShiftAmount < 64) { in lowerInt64Arithmetic()
2636 _srl(T_Lo, Src0HiR, ShiftAmount - INT32_BITS); in lowerInt64Arithmetic()
2657 _andi(T5, Src1LoR, INT32_BITS); in lowerInt64Arithmetic()
2680 if (ShiftAmount < INT32_BITS) { in lowerInt64Arithmetic()
2682 _sll(T1, Src0HiR, INT32_BITS - ShiftAmount); in lowerInt64Arithmetic()
2686 } else if (ShiftAmount == INT32_BITS) { in lowerInt64Arithmetic()
2687 _sra(T_Hi, Src0HiR, INT32_BITS - 1); in lowerInt64Arithmetic()
2689 } else if (ShiftAmount > INT32_BITS && ShiftAmount < 64) { in lowerInt64Arithmetic()
2690 _sra(T_Lo, Src0HiR, ShiftAmount - INT32_BITS); in lowerInt64Arithmetic()
2691 _sra(T_Hi, Src0HiR, INT32_BITS - 1); in lowerInt64Arithmetic()
2711 _andi(T5, Src1LoR, INT32_BITS); in lowerInt64Arithmetic()
2713 _sra(T6, Src0HiR, INT32_BITS - 1); in lowerInt64Arithmetic()
3633 ? INT32_BITS - 1 in lowerCast()
3634 : INT32_BITS - (CHAR_BITS * typeWidthInBytes(Src0Ty))); in lowerCast()
3657 _sll(T1_Lo, Src0R, INT32_BITS - 1); in lowerCast()
3658 _sra(T2_Lo, T1_Lo, INT32_BITS - 1); in lowerCast()
3664 _sra(T_Hi, T2_Lo, INT32_BITS - 1); in lowerCast()
3669 _sra(T_Hi, T1_Lo, INT32_BITS - 1); in lowerCast()
3872 uint64_t Upper32Bits = (Value >> INT32_BITS) & Mask; in lowerCast()
4314 const uint32_t ShAmt = INT32_BITS - getScalarIntBitWidth(Src0->getType()); in lowerIcmp()
4723 (INT32_BITS - CHAR_BITS * typeWidthInBytes(DestTy)); in lowerIntrinsic()
4814 INT32_BITS - (CHAR_BITS * typeWidthInBytes(DestTy)); in lowerIntrinsic()