Home
last modified time | relevance | path

Searched refs:getNumTypes (Results 1 – 5 of 5) sorted by relevance

/external/llvm/utils/TableGen/
DCodeGenDAGPatterns.cpp715 if (!Child->isLeaf() && Child->getNumTypes() && in getPatternSize()
1021 return PFRec->getOnlyTree()->getNumTypes(); in GetNumNodeResults()
1124 New = new TreePatternNode(getLeafValue(), getNumTypes()); in clone()
1130 New = new TreePatternNode(getOperator(), CChildren, getNumTypes()); in clone()
1432 assert(getNumTypes() == 0 && "Set doesn't produce a value"); in ApplyTypeConstraints()
1451 assert(getNumTypes() == 0 && "Node doesn't produce a value"); in ApplyTypeConstraints()
1464 assert(getChild(0)->getNumTypes() == 1 && in ApplyTypeConstraints()
1465 getChild(1)->getNumTypes() == 1 && "Unhandled case"); in ApplyTypeConstraints()
1500 assert(getChild(i+1)->getNumTypes() == 1 && "Unhandled case"); in ApplyTypeConstraints()
1570 assert(getChild(0)->getNumTypes() == 1 && "FIXME: Unhandled"); in ApplyTypeConstraints()
[all …]
DDAGISelEmitter.cpp72 if (LHSSrc->getNumTypes() != 0 && RHSSrc->getNumTypes() != 0 && in operator ()()
DFastISelEmitter.cpp224 if (!Op->getPredicateFns().empty() || Op->getNumTypes() != 1) in initialize()
484 if (InstPatNode->getNumTypes() > 1) continue; in collectPatterns()
489 if (InstPatNode->getNumTypes()) RetVT = InstPatNode->getType(0); in collectPatterns()
492 assert(InstPatNode->getChild(0)->getNumTypes() == 1); in collectPatterns()
DDAGISelMatcherGen.cpp416 for (unsigned i = 0, e = NodeNoTypes->getNumTypes(); i != e; ++i) { in EmitMatchCode()
769 for (unsigned i = 0, e = N->getNumTypes(); i != e; ++i) in EmitResultInstructionAsOperand()
894 unsigned NumSrcResults = Pattern.getSrcPattern()->getNumTypes(); in EmitResultCode()
DCodeGenDAGPatterns.h342 unsigned getNumTypes() const { return Types.size(); } in getNumTypes() function