Lines Matching refs:RHSC
641 int64_t RHSC = RHS->getSExtValue(); in SelectAddrModeIndexed7S() local
643 if ((RHSC & (Size - 1)) == 0 && RHSC >= -(0x40 << Scale) && in SelectAddrModeIndexed7S()
644 RHSC < (0x40 << Scale)) { in SelectAddrModeIndexed7S()
650 OffImm = CurDAG->getTargetConstant(RHSC >> Scale, dl, MVT::i64); in SelectAddrModeIndexed7S()
700 int64_t RHSC = (int64_t)RHS->getZExtValue(); in SelectAddrModeIndexed() local
702 if ((RHSC & (Size - 1)) == 0 && RHSC >= 0 && RHSC < (0x1000 << Scale)) { in SelectAddrModeIndexed()
708 OffImm = CurDAG->getTargetConstant(RHSC >> Scale, dl, MVT::i64); in SelectAddrModeIndexed()
739 int64_t RHSC = RHS->getSExtValue(); in SelectAddrModeUnscaled() local
741 if ((RHSC & (Size - 1)) == 0 && RHSC >= 0 && in SelectAddrModeUnscaled()
742 RHSC < (0x1000 << Log2_32(Size))) in SelectAddrModeUnscaled()
744 if (RHSC >= -256 && RHSC < 256) { in SelectAddrModeUnscaled()
752 OffImm = CurDAG->getTargetConstant(RHSC, SDLoc(N), MVT::i64); in SelectAddrModeUnscaled()