Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/utils/TableGen/
H A DDAGISelEmitter.cpp86 MVT LHSVT = LT->getNumTypes() != 0 ? LT->getSimpleType(0) : MVT::Other; in operator ()()
87 MVT RHSVT = RT->getNumTypes() != 0 ? RT->getSimpleType(0) : MVT::Other; in operator ()()
H A DCodeGenDAGPatterns.cpp1304 if (!Child->isLeaf() && Child->getNumTypes()) { in getPatternSize()
1699 NumResults = std::max(NumResults, T->getNumTypes()); in GetNumNodeResults()
1837 getNumTypes()); in clone()
1943 for (unsigned i = 0, e = getNumTypes(); i != e; ++i) in InlinePatternFragments()
2690 assert(New->getNumTypes() == 1 && "FIXME: Unhandled"); in ParseTreePattern()
2878 assert(Node->getNumTypes() == 1 && in InferAllTypes()
2879 InNodes[0]->getNumTypes() == 1 && in InferAllTypes()
2891 assert(N1->getNumTypes() == 1 && N2->getNumTypes() == 1 && in InferAllTypes()
3253 if (Pat->getChild(i)->getNumTypes() == 0) in FindPatternInputsAndOutputs()
3546 if (Pat->getNumTypes() != 0) { in parseInstructionPattern()
[all …]
H A DFastISelEmitter.cpp239 if (!Op->getPredicateCalls().empty() || Op->getNumTypes() != 1) in initialize()
519 if (InstPatNode->getNumTypes() > 1) continue; in collectPatterns()
524 if (InstPatNode->getNumTypes()) RetVT = InstPatNode->getSimpleType(0); in collectPatterns()
527 assert(InstPatNode->getChild(0)->getNumTypes() == 1); in collectPatterns()
H A DDAGISelMatcherGen.cpp487 for (unsigned i = 0, e = NodeNoTypes->getNumTypes(); i != e; ++i) { in EmitMatchCode()
838 for (unsigned i = 0, e = N->getNumTypes(); i != e; ++i) in EmitResultInstructionAsOperand()
980 unsigned NumSrcResults = Pattern.getSrcPattern()->getNumTypes(); in EmitResultCode()
H A DCodeGenDAGPatterns.h685 unsigned getNumTypes() const { return Types.size(); } in getNumTypes() function