Lines Matching refs:CGP
691 const CodeGenDAGPatterns &CGP) { in getPatternSize() argument
703 const ComplexPattern *AM = P->getComplexPatternInfo(CGP); in getPatternSize()
717 Size += getPatternSize(Child, CGP); in getPatternSize()
721 else if (Child->getComplexPatternInfo(CGP)) in getPatternSize()
722 Size += getPatternSize(Child, CGP); in getPatternSize()
734 getPatternComplexity(const CodeGenDAGPatterns &CGP) const { in getPatternComplexity()
735 return getPatternSize(getSrcPattern(), CGP) + getAddedComplexity(); in getPatternComplexity()
1329 TreePatternNode::getComplexPatternInfo(const CodeGenDAGPatterns &CGP) const { in getComplexPatternInfo()
1334 return &CGP.getComplexPattern(DI->getDef()); in getComplexPatternInfo()
1340 const CodeGenDAGPatterns &CGP) const { in NodeHasProperty()
1342 if (const ComplexPattern *CP = getComplexPatternInfo(CGP)) in NodeHasProperty()
1350 return CGP.getSDNodeInfo(Operator).hasProperty(Property); in NodeHasProperty()
1359 const CodeGenDAGPatterns &CGP) const { in TreeHasProperty()
1360 if (NodeHasProperty(Property, CGP)) in TreeHasProperty()
1363 if (getChild(i)->TreeHasProperty(Property, CGP)) in TreeHasProperty()