Lines Matching refs:RHSC
645 int64_t RHSC = RHS->getSExtValue(); in SelectAddrModeIndexed7S() local
647 if ((RHSC & (Size - 1)) == 0 && RHSC >= -(0x40 << Scale) && in SelectAddrModeIndexed7S()
648 RHSC < (0x40 << Scale)) { in SelectAddrModeIndexed7S()
654 OffImm = CurDAG->getTargetConstant(RHSC >> Scale, dl, MVT::i64); in SelectAddrModeIndexed7S()
704 int64_t RHSC = (int64_t)RHS->getZExtValue(); in SelectAddrModeIndexed() local
706 if ((RHSC & (Size - 1)) == 0 && RHSC >= 0 && RHSC < (0x1000 << Scale)) { in SelectAddrModeIndexed()
712 OffImm = CurDAG->getTargetConstant(RHSC >> Scale, dl, MVT::i64); in SelectAddrModeIndexed()
743 int64_t RHSC = RHS->getSExtValue(); in SelectAddrModeUnscaled() local
745 if ((RHSC & (Size - 1)) == 0 && RHSC >= 0 && in SelectAddrModeUnscaled()
746 RHSC < (0x1000 << Log2_32(Size))) in SelectAddrModeUnscaled()
748 if (RHSC >= -256 && RHSC < 256) { in SelectAddrModeUnscaled()
756 OffImm = CurDAG->getTargetConstant(RHSC, SDLoc(N), MVT::i64); in SelectAddrModeUnscaled()