Home | History | Annotate | Download | only in ARM

Lines Matching refs:RHSC

3041   if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS.getNode())) {
3042 unsigned C = RHSC->getZExtValue();
10242 int RHSC = (int)RHS->getZExtValue();
10243 if (RHSC < 0 && RHSC > -256) {
10246 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
10256 int RHSC = (int)RHS->getZExtValue();
10257 if (RHSC < 0 && RHSC > -0x1000) {
10260 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
10299 int RHSC = (int)RHS->getZExtValue();
10300 if (RHSC < 0 && RHSC > -0x100) { // 8 bits.
10303 Offset = DAG.getConstant(-RHSC, RHS->getValueType(0));
10305 } else if (RHSC > 0 && RHSC < 0x100) { // 8 bit, no zero.
10307 Offset = DAG.getConstant(RHSC, RHS->getValueType(0));