Lines Matching refs:CGP
1430 const CodeGenDAGPatterns &CGP) { in getPatternSize() argument
1437 if (const ComplexPattern *AM = P->getComplexPatternInfo(CGP)) { in getPatternSize()
1456 Size += getPatternSize(Child, CGP); in getPatternSize()
1463 else if (Child->getComplexPatternInfo(CGP)) in getPatternSize()
1464 Size += getPatternSize(Child, CGP); in getPatternSize()
1478 getPatternComplexity(const CodeGenDAGPatterns &CGP) const { in getPatternComplexity()
1479 return getPatternSize(getSrcPattern(), CGP) + getAddedComplexity(); in getPatternComplexity()
2351 TreePatternNode::getComplexPatternInfo(const CodeGenDAGPatterns &CGP) const { in getComplexPatternInfo()
2363 return &CGP.getComplexPattern(Rec); in getComplexPatternInfo()
2366 unsigned TreePatternNode::getNumMIResults(const CodeGenDAGPatterns &CGP) const { in getNumMIResults()
2368 if (const ComplexPattern *CP = getComplexPatternInfo(CGP)) in getNumMIResults()
2387 const CodeGenDAGPatterns &CGP) const { in NodeHasProperty()
2389 if (const ComplexPattern *CP = getComplexPatternInfo(CGP)) in NodeHasProperty()
2399 if (const CodeGenIntrinsic *Int = getIntrinsicInfo(CGP)) in NodeHasProperty()
2406 return CGP.getSDNodeInfo(getOperator()).hasProperty(Property); in NodeHasProperty()
2415 const CodeGenDAGPatterns &CGP) const { in TreeHasProperty()
2416 if (NodeHasProperty(Property, CGP)) in TreeHasProperty()
2419 if (getChild(i)->TreeHasProperty(Property, CGP)) in TreeHasProperty()