Home | History | Annotate | Download | only in ARM

Lines Matching refs:RHSC

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