Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelEmitter.cpp92 MVT LHSVT = LT.getNumTypes() != 0 ? LT.getSimpleType(0) : MVT::Other; in operator ()()
93 MVT RHSVT = RT.getNumTypes() != 0 ? RT.getSimpleType(0) : MVT::Other; in operator ()()
H A DFastISelEmitter.cpp242 if (!Op.getPredicateCalls().empty() || Op.getNumTypes() != 1) in initialize()
505 if (InstPatNode.getNumTypes() > 1) in collectPatterns()
511 if (InstPatNode.getNumTypes()) in collectPatterns()
515 assert(InstPatNode.getChild(0).getNumTypes() == 1); in collectPatterns()
H A DDAGISelMatcherGen.cpp498 for (unsigned i = 0, e = NodeNoTypes.getNumTypes(); i != e; ++i) { in EmitMatchCode()
900 for (unsigned i = 0, e = N.getNumTypes(); i != e; ++i) in EmitResultInstructionAsOperand()
1039 unsigned NumSrcResults = Pattern.getSrcPattern().getNumTypes(); in EmitResultCode()
H A DGlobalISelEmitter.cpp1915 if (N.getNumTypes() < 1) in inferRegClassFromPattern()
1962 assert(Child0.getNumTypes() == 1 && "Unexpected number of types!"); in inferRegClassFromInstructionPattern()
2389 for (unsigned I = 0, E = Node.getNumTypes(); I < E; I++) { in hasBFloatType()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenDAGPatterns.cpp1477 if (!Child.isLeaf() && Child.getNumTypes()) { in getPatternSize()
1947 NumResults = std::max(NumResults, T->getNumTypes()); in GetNumNodeResults()
2085 New = makeIntrusiveRefCnt<TreePatternNode>(getLeafValue(), getNumTypes()); in clone()
2092 getOperator(), std::move(CChildren), getNumTypes()); in clone()
2195 getOperator(), std::move(NewChildren), getNumTypes()); in InlinePatternFragments()
2203 for (unsigned i = 0, e = getNumTypes(); i != e; ++i) in InlinePatternFragments()
2268 for (unsigned i = 0, e = FragTree->getNumTypes(); i != e; ++i) in InlinePatternFragments()
2598 assert(getChild(i + 1).getNumTypes() == 1 && "Unhandled case"); in ApplyTypeConstraints()
2653 assert(getChild(0).getNumTypes() == 1 && "FIXME: Unhandled"); in ApplyTypeConstraints()
2988 size_t NumTypes = New->getNumTypes(); in ParseTreePattern()
[all …]
H A DCodeGenDAGPatterns.h691 unsigned getNumTypes() const { return Types.size(); } in getNumTypes() function