Lines Matching refs:CGP
1449 const CodeGenDAGPatterns &CGP) { in getPatternSize() argument
1456 if (const ComplexPattern *AM = P->getComplexPatternInfo(CGP)) { in getPatternSize()
1475 Size += getPatternSize(Child, CGP); in getPatternSize()
1482 else if (Child->getComplexPatternInfo(CGP)) in getPatternSize()
1483 Size += getPatternSize(Child, CGP); in getPatternSize()
1497 getPatternComplexity(const CodeGenDAGPatterns &CGP) const { in getPatternComplexity()
1498 return getPatternSize(getSrcPattern(), CGP) + getAddedComplexity(); in getPatternComplexity()
2361 TreePatternNode::getComplexPatternInfo(const CodeGenDAGPatterns &CGP) const { in getComplexPatternInfo()
2373 return &CGP.getComplexPattern(Rec); in getComplexPatternInfo()
2376 unsigned TreePatternNode::getNumMIResults(const CodeGenDAGPatterns &CGP) const { in getNumMIResults()
2378 if (const ComplexPattern *CP = getComplexPatternInfo(CGP)) in getNumMIResults()
2397 const CodeGenDAGPatterns &CGP) const { in NodeHasProperty()
2399 if (const ComplexPattern *CP = getComplexPatternInfo(CGP)) in NodeHasProperty()
2409 if (const CodeGenIntrinsic *Int = getIntrinsicInfo(CGP)) in NodeHasProperty()
2416 return CGP.getSDNodeInfo(Operator).hasProperty(Property); in NodeHasProperty()
2425 const CodeGenDAGPatterns &CGP) const { in TreeHasProperty()
2426 if (NodeHasProperty(Property, CGP)) in TreeHasProperty()
2429 if (getChild(i)->TreeHasProperty(Property, CGP)) in TreeHasProperty()