• Home
  • Raw
  • Download

Lines Matching refs:INT32_BITS

2588       } else if (ShiftAmount < INT32_BITS) {  in lowerInt64Arithmetic()
2590 _srl(T1, Src0LoR, INT32_BITS - ShiftAmount); in lowerInt64Arithmetic()
2594 } else if (ShiftAmount == INT32_BITS) { in lowerInt64Arithmetic()
2597 } else if (ShiftAmount > INT32_BITS && ShiftAmount < 64) { in lowerInt64Arithmetic()
2598 _sll(T_Hi, Src0LoR, ShiftAmount - INT32_BITS); in lowerInt64Arithmetic()
2619 _andi(T5, Src1LoR, INT32_BITS); in lowerInt64Arithmetic()
2641 if (ShiftAmount < INT32_BITS) { in lowerInt64Arithmetic()
2643 _sll(T1, Src0HiR, INT32_BITS - ShiftAmount); in lowerInt64Arithmetic()
2647 } else if (ShiftAmount == INT32_BITS) { in lowerInt64Arithmetic()
2650 } else if (ShiftAmount > INT32_BITS && ShiftAmount < 64) { in lowerInt64Arithmetic()
2651 _srl(T_Lo, Src0HiR, ShiftAmount - INT32_BITS); in lowerInt64Arithmetic()
2672 _andi(T5, Src1LoR, INT32_BITS); in lowerInt64Arithmetic()
2695 if (ShiftAmount < INT32_BITS) { in lowerInt64Arithmetic()
2697 _sll(T1, Src0HiR, INT32_BITS - ShiftAmount); in lowerInt64Arithmetic()
2701 } else if (ShiftAmount == INT32_BITS) { in lowerInt64Arithmetic()
2702 _sra(T_Hi, Src0HiR, INT32_BITS - 1); in lowerInt64Arithmetic()
2704 } else if (ShiftAmount > INT32_BITS && ShiftAmount < 64) { in lowerInt64Arithmetic()
2705 _sra(T_Lo, Src0HiR, ShiftAmount - INT32_BITS); in lowerInt64Arithmetic()
2706 _sra(T_Hi, Src0HiR, INT32_BITS - 1); in lowerInt64Arithmetic()
2726 _andi(T5, Src1LoR, INT32_BITS); in lowerInt64Arithmetic()
2728 _sra(T6, Src0HiR, INT32_BITS - 1); in lowerInt64Arithmetic()
3648 ? INT32_BITS - 1 in lowerCast()
3649 : INT32_BITS - (CHAR_BITS * typeWidthInBytes(Src0Ty))); in lowerCast()
3672 _sll(T1_Lo, Src0R, INT32_BITS - 1); in lowerCast()
3673 _sra(T2_Lo, T1_Lo, INT32_BITS - 1); in lowerCast()
3679 _sra(T_Hi, T2_Lo, INT32_BITS - 1); in lowerCast()
3684 _sra(T_Hi, T1_Lo, INT32_BITS - 1); in lowerCast()
3887 uint64_t Upper32Bits = (Value >> INT32_BITS) & Mask; in lowerCast()
4329 const uint32_t ShAmt = INT32_BITS - getScalarIntBitWidth(Src0->getType()); in lowerIcmp()
4738 (INT32_BITS - CHAR_BITS * typeWidthInBytes(DestTy)); in lowerIntrinsicCall()
4829 INT32_BITS - (CHAR_BITS * typeWidthInBytes(DestTy)); in lowerIntrinsicCall()