Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/clang/lib/Rewrite/
H A DDeltaTree.cpp87 DeltaTreeNode(bool isLeaf = true) : IsLeaf(isLeaf) {} in DeltaTreeNode() argument
89 bool isLeaf() const { return IsLeaf; } in isLeaf() function in __anoncbaa2c660111::DeltaTreeNode
155 static bool classof(const DeltaTreeNode *N) { return !N->isLeaf(); } in classof()
162 if (isLeaf()) in Destroy()
207 if (isLeaf()) { in DoInsertion()
H A DRewriteRope.cpp94 RopePieceBTreeNode(bool isLeaf) : IsLeaf(isLeaf) {} in RopePieceBTreeNode() argument
98 bool isLeaf() const { return IsLeaf; } in isLeaf() function in __anon28bb81440111::RopePieceBTreeNode
224 return N->isLeaf(); in classof()
465 return !N->isLeaf(); in classof()
/netbsd/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DDAGISelMatcherGen.cpp203 assert(N->isLeaf() && "Not a leaf?"); in EmitLeafMatchCode()
312 assert(!N->isLeaf() && "Not an operator?"); in EmitOperatorMatchCode()
346 N->getChild(1)->isLeaf() && N->getChild(1)->getPredicateCalls().empty() && in EmitOperatorMatchCode()
533 if (N->isLeaf()) in EmitMatchCode()
594 if (N->isLeaf()) { in EmitMatcherCode()
658 if (!N->isLeaf()) { in EmitResultOfNamedOperand()
673 assert(N->isLeaf() && "Must be a leaf"); in EmitResultLeafAsOperand()
767 if (N->isLeaf()) in numNodesThatMayLoadOrStore()
873 if (!Child->isLeaf() && Child->getOperator()->isSubClassOf("Instruction")) in EmitResultInstructionAsOperand()
1025 if (N->isLeaf()) in EmitResultOperand()
[all …]
H A DCodeGenDAGPatterns.cpp1380 if (!P->isLeaf()) in isImmAllOnesAllZerosMatch()
1893 if (isLeaf()) in print()
1903 if (!isLeaf()) { in print()
1948 if (isLeaf()) { in isIsomorphicTo()
1971 if (isLeaf()) { in clone()
2038 if (isLeaf()) { in InlinePatternFragments()
2303 if (isLeaf()) { in getComplexPatternInfo()
2322 if (isLeaf()) { in getNumMIResults()
2338 if (isLeaf()) { in NodeHasProperty()
2417 if (isLeaf()) { in ApplyTypeConstraints()
[all …]
H A DFastISelEmitter.cpp191 if (InstPatNode->isLeaf()) in initialize()
210 if (!Op->isLeaf() && Op->getOperator()->getName() == "imm") { in initialize()
241 if (!Op->isLeaf()) { in initialize()
429 if (!Op->isLeaf()) in PhyRegForNode()
454 if (Dst->isLeaf()) continue; in collectPatterns()
473 if (ChildOp->isLeaf()) in collectPatterns()
499 if (!Dst->getChild(1)->isLeaf()) continue; in collectPatterns()
511 if (InstPatNode->isLeaf()) continue; in collectPatterns()
H A DDAGISelEmitter.cpp43 if (P->isLeaf()) return 0; in getResultPatternCost()
62 if (P->isLeaf()) return 0; in getResultPatternSize()
H A DGlobalISelEmitter.cpp3940 if (Src->isLeaf()) { in createAndImportSelDAGMatcher()
4013 if (Src->isLeaf()) { in createAndImportSelDAGMatcher()
4043 if (SrcChild->isLeaf()) { in createAndImportSelDAGMatcher()
4174 if (!SrcChild->isLeaf() && in importChildMatcher()
4197 if (!SrcChild->isLeaf()) { in importChildMatcher()
4232 if (!SrcChild->isLeaf()) { in importChildMatcher()
4396 if (!DstChild->isLeaf()) { in importExplicitUseRenderer()
4761 if (!ValChild->isLeaf()) { in importExplicitUseRenderers()
4983 if (N->isLeaf()) in inferRegClassFromPattern()
5012 if (!RCChild->isLeaf()) in inferRegClassFromPattern()
[all …]
H A DCodeGenDAGPatterns.h690 bool isLeaf() const { return Val != nullptr; } in isLeaf() function
718 Init *getLeafValue() const { assert(isLeaf()); return Val; } in getLeafValue()
719 Record *getOperator() const { assert(!isLeaf()); return Operator; } in getOperator()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DSuffixTree.h90 bool isLeaf() const { return SuffixIdx != EmptyIdx; } in isLeaf() function
280 if (!ChildPair.second->isLeaf()) in advance()
H A DGenericDomTree.h98 bool isLeaf() const { return Children.empty(); }
672 assert(Node->isLeaf() && "Node is not a leaf node.");
H A DGenericDomTreeConstruction.h1361 if (Node->isLeaf()) { in VerifyDFSNumbers()
1473 if (!BB || TN->isLeaf()) in verifyParentProperty()
1507 if (!BB || TN->isLeaf()) in verifySiblingProperty()
/netbsd/external/apache2/llvm/dist/clang/include/clang/Tooling/ASTDiff/
H A DASTDiff.h46 bool isLeaf() const { return Children.empty(); } in isLeaf() function
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DIntrinsics.h84 bool isLeaf(ID id);
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DPruneEH.cpp242 if (!Callee || !Intrinsic::isLeaf(Callee->getIntrinsicID())) in DeleteBasicBlock()
/netbsd/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DCallGraph.cpp104 if (!Callee || !Intrinsic::isLeaf(Callee->getIntrinsicID())) in populateCallGraphNode()
H A DCallGraphSCCPass.cpp279 Intrinsic::isLeaf(Call->getCalledFunction()->getIntrinsicID()))) { in RefreshCallGraph()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DCallGraph.h246 !Intrinsic::isLeaf(Call->getCalledFunction()->getIntrinsicID())); in addCalledFunction()
/netbsd/external/apache2/llvm/dist/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp226 if (N.isLeaf()) in PostTraverse()
531 NumLeaves += N.isLeaf(); in setLeftMostDescendants()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
H A DCoroutines.cpp203 if (!Callee || !Intrinsic::isLeaf(Callee->getIntrinsicID())) in buildCGN()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DLoopSimplify.cpp688 while (!Node->isLeaf()) { in simplifyOneLoop()
/netbsd/external/apache2/llvm/dist/llvm/lib/IR/
H A DFunction.cpp1307 bool Intrinsic::isLeaf(ID id) { in isLeaf() function in Intrinsic
/netbsd/external/bsd/openldap/dist/doc/rfc/
H A Drfc4511.txt571 -- 35 reserved for undefined isLeaf --
3097 -- 35 reserved for undefined isLeaf --
/netbsd/external/public-domain/sqlite/dist/
H A Dsqlite3.c192089 int isLeaf;
192097 isLeaf = 1;
192100 isLeaf = 0;
192122 p->iRightChildPg = isLeaf ? 0 : sqlite3Get4byte(&aHdr[8]);
192140 if( !isLeaf ){