Lines Matching refs:CGP
1434 const CodeGenDAGPatterns &CGP) { in getPatternSize() argument
1441 if (const ComplexPattern *AM = P.getComplexPatternInfo(CGP)) { in getPatternSize()
1460 Size += getPatternSize(Child, CGP); in getPatternSize()
1467 else if (Child.getComplexPatternInfo(CGP)) in getPatternSize()
1468 Size += getPatternSize(Child, CGP); in getPatternSize()
1481 int PatternToMatch::getPatternComplexity(const CodeGenDAGPatterns &CGP) const { in getPatternComplexity()
1482 return getPatternSize(getSrcPattern(), CGP) + getAddedComplexity(); in getPatternComplexity()
2344 TreePatternNode::getComplexPatternInfo(const CodeGenDAGPatterns &CGP) const { in getComplexPatternInfo()
2356 return &CGP.getComplexPattern(Rec); in getComplexPatternInfo()
2359 unsigned TreePatternNode::getNumMIResults(const CodeGenDAGPatterns &CGP) const { in getNumMIResults()
2361 if (const ComplexPattern *CP = getComplexPatternInfo(CGP)) in getNumMIResults()
2380 const CodeGenDAGPatterns &CGP) const { in NodeHasProperty()
2382 if (const ComplexPattern *CP = getComplexPatternInfo(CGP)) in NodeHasProperty()
2392 if (const CodeGenIntrinsic *Int = getIntrinsicInfo(CGP)) in NodeHasProperty()
2399 return CGP.getSDNodeInfo(getOperator()).hasProperty(Property); in NodeHasProperty()
2405 const CodeGenDAGPatterns &CGP) const { in TreeHasProperty()
2406 if (NodeHasProperty(Property, CGP)) in TreeHasProperty()
2409 if (getChild(i).TreeHasProperty(Property, CGP)) in TreeHasProperty()