Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:RHSC

435     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
439 // If the LHS already has zeros where RHSC does, this and is dead.
440 if ((LHSZero & NewMask) == (~RHSC->getAPIntValue() & NewMask))
1916 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(N1)) {
1921 DAG.getConstant(RHSC->getAPIntValue()-
1934 RHSC->getAPIntValue(),
1945 RHSC->getAPIntValue(),
1951 // Could RHSC fold directly into a compare?
1952 if (RHSC->getValueType(0).getSizeInBits() <= 64)
1953 LegalRHSImm = isLegalICmpImmediate(RHSC->getSExtValue());