Lines Matching refs:RHSC
964 int64_t RHSC = RHS->getSExtValue(); in SelectAddrModeIndexedBitWidth() local
968 if ((RHSC & (Size - 1)) == 0 && RHSC >= -(Range << Scale) && in SelectAddrModeIndexedBitWidth()
969 RHSC < (Range << Scale)) { in SelectAddrModeIndexedBitWidth()
975 OffImm = CurDAG->getTargetConstant(RHSC >> Scale, dl, MVT::i64); in SelectAddrModeIndexedBitWidth()
980 uint64_t RHSC = RHS->getZExtValue(); in SelectAddrModeIndexedBitWidth() local
984 if ((RHSC & (Size - 1)) == 0 && RHSC < (Range << Scale)) { in SelectAddrModeIndexedBitWidth()
990 OffImm = CurDAG->getTargetConstant(RHSC >> Scale, dl, MVT::i64); in SelectAddrModeIndexedBitWidth()
1035 int64_t RHSC = (int64_t)RHS->getZExtValue(); in SelectAddrModeIndexed() local
1037 if ((RHSC & (Size - 1)) == 0 && RHSC >= 0 && RHSC < (0x1000 << Scale)) { in SelectAddrModeIndexed()
1043 OffImm = CurDAG->getTargetConstant(RHSC >> Scale, dl, MVT::i64); in SelectAddrModeIndexed()
1074 int64_t RHSC = RHS->getSExtValue(); in SelectAddrModeUnscaled() local
1076 if ((RHSC & (Size - 1)) == 0 && RHSC >= 0 && in SelectAddrModeUnscaled()
1077 RHSC < (0x1000 << Log2_32(Size))) in SelectAddrModeUnscaled()
1079 if (RHSC >= -256 && RHSC < 256) { in SelectAddrModeUnscaled()
1087 OffImm = CurDAG->getTargetConstant(RHSC, SDLoc(N), MVT::i64); in SelectAddrModeUnscaled()