Lines Matching refs:RHSC
3827 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) { in getARMCmp() local
3828 unsigned C = RHSC->getZExtValue(); in getARMCmp()
12613 auto *RHSC = dyn_cast<ConstantSDNode>(RHS); in PerformBRCONDCombine() local
12617 (RHSC && RHSC->getZExtValue() == 0)) { in PerformBRCONDCombine()
12685 auto *RHSC = dyn_cast<ConstantSDNode>(RHS); in PerformCMOVCombine() local
12688 (RHSC && RHSC->getZExtValue() == 0)) { in PerformCMOVCombine()
13373 int RHSC = (int)RHS->getZExtValue(); in getARMIndexedAddressParts() local
13374 if (RHSC < 0 && RHSC > -256) { in getARMIndexedAddressParts()
13377 Offset = DAG.getConstant(-RHSC, SDLoc(Ptr), RHS->getValueType(0)); in getARMIndexedAddressParts()
13387 int RHSC = (int)RHS->getZExtValue(); in getARMIndexedAddressParts() local
13388 if (RHSC < 0 && RHSC > -0x1000) { in getARMIndexedAddressParts()
13391 Offset = DAG.getConstant(-RHSC, SDLoc(Ptr), RHS->getValueType(0)); in getARMIndexedAddressParts()
13430 int RHSC = (int)RHS->getZExtValue(); in getT2IndexedAddressParts() local
13431 if (RHSC < 0 && RHSC > -0x100) { // 8 bits. in getT2IndexedAddressParts()
13434 Offset = DAG.getConstant(-RHSC, SDLoc(Ptr), RHS->getValueType(0)); in getT2IndexedAddressParts()
13436 } else if (RHSC > 0 && RHSC < 0x100) { // 8 bit, no zero. in getT2IndexedAddressParts()
13438 Offset = DAG.getConstant(RHSC, SDLoc(Ptr), RHS->getValueType(0)); in getT2IndexedAddressParts()