Lines Matching defs:CInc
16092 ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode());
16093 if (!CInc)
16099 return CInc->getZExtValue();
16103 return CInc->getZExtValue();
16112 static bool findPointerConstIncrement(SDNode *N, SDValue *Ptr, SDValue *CInc) {
16118 *CInc = N->getOperand(1);
16126 *CInc = N->getOperand(2);
16187 SDValue CInc;
16188 if (findPointerConstIncrement(Addr.getNode(), &Base, &CInc)) {
16190 getPointerConstIncrement(Addr->getOpcode(), Base, CInc, DCI.DAG);
16331 ConstantSDNode *CInc = dyn_cast<ConstantSDNode>(Inc.getNode());
16332 if (!CInc || CInc->getZExtValue() != NumBytes)