Home
last modified time | relevance | path

Searched refs:isLeaf (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDeltaTree.cpp86 DeltaTreeNode(bool isLeaf = true) : IsLeaf(isLeaf) {} in DeltaTreeNode() argument
88 bool isLeaf() const { return IsLeaf; } in isLeaf() function in __anon400feef60111::DeltaTreeNode
154 static bool classof(const DeltaTreeNode *N) { return !N->isLeaf(); } in classof()
161 if (isLeaf()) in Destroy()
206 if (isLeaf()) { in DoInsertion()
H A DRewriteRope.cpp93 RopePieceBTreeNode(bool isLeaf) : IsLeaf(isLeaf) {} in RopePieceBTreeNode() argument
97 bool isLeaf() const { return IsLeaf; } in isLeaf() function in __anon4d9c27d40111::RopePieceBTreeNode
222 static bool classof(const RopePieceBTreeNode *N) { return N->isLeaf(); } in classof()
462 static bool classof(const RopePieceBTreeNode *N) { return !N->isLeaf(); } in classof()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcherGen.cpp201 assert(N.isLeaf() && "Not a leaf?"); in EmitLeafMatchCode()
302 assert(!N.isLeaf() && "Not an operator?"); in EmitOperatorMatchCode()
336 N.getChild(1).isLeaf() && N.getChild(1).getPredicateCalls().empty() && in EmitOperatorMatchCode()
522 if (N.isLeaf()) in EmitMatchCode()
583 if (N.isLeaf()) { in EmitMatcherCode()
647 if (!N.isLeaf()) { in EmitResultOfNamedOperand()
662 assert(N.isLeaf() && "Must be a leaf"); in EmitResultLeafAsOperand()
758 if (N.isLeaf()) in numNodesThatMayLoadOrStore()
862 if (!Child.isLeaf() && Child.getOperator()->isSubClassOf("Instruction")) in EmitResultInstructionAsOperand()
1010 if (N.isLeaf()) in EmitResultOperand()
[all …]
H A DFastISelEmitter.cpp198 if (InstPatNode.isLeaf()) in initialize()
215 if (!Op.isLeaf() && Op.getOperator()->getName() == "imm") { in initialize()
245 if (!Op.isLeaf()) { in initialize()
422 if (!Op.isLeaf()) in PhysRegForNode()
444 if (Dst.isLeaf()) in collectPatterns()
463 if (ChildOp.isLeaf()) in collectPatterns()
489 if (!Dst.getChild(1).isLeaf()) in collectPatterns()
501 if (InstPatNode.isLeaf()) in collectPatterns()
H A DGlobalISelEmitter.cpp755 if (Src.isLeaf()) { in createAndImportSelDAGMatcher()
849 if (Src.isLeaf()) { in createAndImportSelDAGMatcher()
881 if (SrcChild.isLeaf()) { in createAndImportSelDAGMatcher()
975 if (SrcChildName.empty() && SrcChild.isLeaf()) { in getSrcChildName()
995 if (!SrcChild.isLeaf() && in importChildMatcher()
1018 if (!SrcChild.isLeaf()) { in importChildMatcher()
1070 if (!SrcChild.isLeaf()) { in importChildMatcher()
1236 if (!N.isLeaf()) { in importNamedNodeRenderer()
1424 if (N.isLeaf()) in importNodeRenderer()
1557 if (!DefaultOp.isLeaf()) in importExplicitDefRenderers()
[all …]
H A DDAGISelEmitter.cpp47 if (P.isLeaf()) in getResultPatternCost()
67 if (P.isLeaf()) in getResultPatternSize()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenDAGPatterns.cpp1413 if (Tree->isLeaf()) in getCodeToRunOnSDNode()
1443 if (!P.isLeaf()) in isImmAllOnesAllZerosMatch()
1461 if (P.isLeaf() && isa<IntInit>(P.getLeafValue())) in getPatternSize()
1477 if (!Child.isLeaf() && Child.getNumTypes()) { in getPatternSize()
1486 if (Child.isLeaf()) { in getPatternSize()
1673 if (!NodeToApply.isLeaf() || !isa<DefInit>(NodeToApply.getLeafValue()) || in ApplyTypeConstraint()
2000 if (isLeaf()) in print()
2010 if (!isLeaf()) { in print()
2049 if (N.isLeaf() != isLeaf()) in isIsomorphicTo()
2054 if (!isLeaf()) in isIsomorphicTo()
[all …]
H A DCodeGenDAGPatterns.h688 bool isLeaf() const { return isa<const Init *>(OperatorOrVal); } in isLeaf() function
717 assert(isLeaf()); in getLeafValue()
721 assert(!isLeaf()); in getOperator()
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/ASTDiff/
H A DASTDiff.h47 bool isLeaf() const { return Children.empty(); } in isLeaf() function
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DGenericDomTreeConstruction.h1347 if (Node->isLeaf()) { in VerifyDFSNumbers()
1461 if (!BB || TN->isLeaf()) in verifyParentProperty()
1497 if (!BB || TN->isLeaf()) in verifySiblingProperty()
H A DGenericDomTree.h95 bool isLeaf() const { return Children.empty(); }
742 assert(Node->isLeaf() && "Node is not a leaf node.");
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopSimplify.cpp672 while (!Node->isLeaf()) { in simplifyOneLoop()
/freebsd/contrib/sqlite3/
H A Dsqlite3.c227123 int isLeaf;
227131 isLeaf = 1;
227134 isLeaf = 0;
227156 p->iRightChildPg = isLeaf ? 0 : sqlite3Get4byte(&aHdr[8]);
227174 if( !isLeaf ){