Lines Matching refs:RHSC
3294 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) { in getARMCmp() local
3295 unsigned C = RHSC->getZExtValue(); in getARMCmp()
10999 int RHSC = (int)RHS->getZExtValue(); in getARMIndexedAddressParts() local
11000 if (RHSC < 0 && RHSC > -256) { in getARMIndexedAddressParts()
11003 Offset = DAG.getConstant(-RHSC, SDLoc(Ptr), RHS->getValueType(0)); in getARMIndexedAddressParts()
11013 int RHSC = (int)RHS->getZExtValue(); in getARMIndexedAddressParts() local
11014 if (RHSC < 0 && RHSC > -0x1000) { in getARMIndexedAddressParts()
11017 Offset = DAG.getConstant(-RHSC, SDLoc(Ptr), RHS->getValueType(0)); in getARMIndexedAddressParts()
11056 int RHSC = (int)RHS->getZExtValue(); in getT2IndexedAddressParts() local
11057 if (RHSC < 0 && RHSC > -0x100) { // 8 bits. in getT2IndexedAddressParts()
11060 Offset = DAG.getConstant(-RHSC, SDLoc(Ptr), RHS->getValueType(0)); in getT2IndexedAddressParts()
11062 } else if (RHSC > 0 && RHSC < 0x100) { // 8 bit, no zero. in getT2IndexedAddressParts()
11064 Offset = DAG.getConstant(RHSC, SDLoc(Ptr), RHS->getValueType(0)); in getT2IndexedAddressParts()