Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/utils/TableGen/
DCodeGenDAGPatterns.cpp585 if (N->isLeaf()) { in FindDepVarsOf()
667 if (PatFragRec->getOnlyTree()->isLeaf()) in getCodeToRunOnSDNode()
695 if (P->isLeaf() && dynamic_cast<IntInit*>(P->getLeafValue())) in getPatternSize()
715 if (!Child->isLeaf() && Child->getNumTypes() && in getPatternSize()
718 else if (Child->isLeaf()) { in getPatternSize()
868 if (!NodeToApply->isLeaf() || in ApplyTypeConstraint()
1053 if (isLeaf()) in print()
1061 if (!isLeaf()) { in print()
1095 if (N->isLeaf() != isLeaf() || getExtTypes() != N->getExtTypes() || in isIsomorphicTo()
1100 if (isLeaf()) { in isIsomorphicTo()
[all …]
DDAGISelMatcherGen.cpp203 assert(N->isLeaf() && "Not a leaf?"); in EmitLeafMatchCode()
269 assert(!N->isLeaf() && "Not an operator?"); in EmitOperatorMatchCode()
284 N->getChild(1)->isLeaf() && N->getChild(1)->getPredicateFns().empty() && in EmitOperatorMatchCode()
441 if (N->isLeaf()) in EmitMatchCode()
559 if (!N->isLeaf()) { in EmitResultOfNamedOperand()
573 assert(N->isLeaf() && "Must be a leaf"); in EmitResultLeafAsOperand()
637 if (InstPatNode && !InstPatNode->isLeaf() && in GetInstPatternNode()
656 if (N->isLeaf()) in numNodesThatMayLoadOrStore()
745 if (!Child->isLeaf() && Child->getOperator()->isSubClassOf("Instruction")) in EmitResultInstructionAsOperand()
864 if (N->isLeaf()) in EmitResultOperand()
[all …]
DFastISelEmitter.cpp173 if (InstPatNode->isLeaf()) in initialize()
192 if (!Op->isLeaf() && Op->getOperator()->getName() == "imm") { in initialize()
227 if (!Op->isLeaf()) { in initialize()
401 if (!Op->isLeaf()) in PhyRegForNode()
431 if (Dst->isLeaf()) continue; in collectPatterns()
443 if (ChildOp->isLeaf()) in collectPatterns()
469 if (!Dst->getChild(1)->isLeaf()) continue; in collectPatterns()
481 if (InstPatNode->isLeaf()) continue; in collectPatterns()
DDAGISelEmitter.cpp29 if (P->isLeaf()) return 0; in getResultPatternCost()
48 if (P->isLeaf()) return 0; in getResultPatternSize()
DCodeGenDAGPatterns.h339 bool isLeaf() const { return Val != 0; } in isLeaf() function
361 Init *getLeafValue() const { assert(isLeaf()); return Val; } in getLeafValue()
362 Record *getOperator() const { assert(!isLeaf()); return Operator; } in getOperator()
/external/llvm/utils/TableGen/
DDAGISelMatcherGen.cpp202 assert(N->isLeaf() && "Not a leaf?"); in EmitLeafMatchCode()
285 assert(!N->isLeaf() && "Not an operator?"); in EmitOperatorMatchCode()
319 N->getChild(1)->isLeaf() && N->getChild(1)->getPredicateFns().empty() && in EmitOperatorMatchCode()
478 if (N->isLeaf()) in EmitMatchCode()
527 if (N->isLeaf()) { in EmitMatcherCode()
591 if (!N->isLeaf()) { in EmitResultOfNamedOperand()
606 assert(N->isLeaf() && "Must be a leaf"); in EmitResultLeafAsOperand()
670 if (InstPatNode && !InstPatNode->isLeaf() && in GetInstPatternNode()
689 if (N->isLeaf()) in numNodesThatMayLoadOrStore()
801 if (!Child->isLeaf() && Child->getOperator()->isSubClassOf("Instruction")) in EmitResultInstructionAsOperand()
[all …]
DCodeGenDAGPatterns.cpp711 if (N->isLeaf()) { in FindDepVarsOf()
792 if (PatFragRec->getOnlyTree()->isLeaf()) in getCodeToRunOnSDNode()
820 if (P->isLeaf() && isa<IntInit>(P->getLeafValue())) in getPatternSize()
844 if (!Child->isLeaf() && Child->getNumTypes() && in getPatternSize()
847 else if (Child->isLeaf()) { in getPatternSize()
1022 if (!NodeToApply->isLeaf() || in ApplyTypeConstraint()
1276 if (isLeaf()) in print()
1284 if (!isLeaf()) { in print()
1318 if (N->isLeaf() != isLeaf() || getExtTypes() != N->getExtTypes() || in isIsomorphicTo()
1323 if (isLeaf()) { in isIsomorphicTo()
[all …]
DFastISelEmitter.cpp180 if (InstPatNode->isLeaf()) in initialize()
199 if (!Op->isLeaf() && Op->getOperator()->getName() == "imm") { in initialize()
234 if (!Op->isLeaf()) { in initialize()
426 if (!Op->isLeaf()) in PhyRegForNode()
455 if (Dst->isLeaf()) continue; in collectPatterns()
467 if (ChildOp->isLeaf()) in collectPatterns()
493 if (!Dst->getChild(1)->isLeaf()) continue; in collectPatterns()
505 if (InstPatNode->isLeaf()) continue; in collectPatterns()
DDAGISelEmitter.cpp43 if (P->isLeaf()) return 0; in getResultPatternCost()
62 if (P->isLeaf()) return 0; in getResultPatternSize()
DCodeGenDAGPatterns.h365 bool isLeaf() const { return Val != nullptr; } in isLeaf() function
387 Init *getLeafValue() const { assert(isLeaf()); return Val; } in getLeafValue()
388 Record *getOperator() const { assert(!isLeaf()); return Operator; } in getOperator()
/external/clang/lib/Rewrite/
DDeltaTree.cpp85 DeltaTreeNode(bool isLeaf = true) in DeltaTreeNode() argument
86 : NumValuesUsed(0), IsLeaf(isLeaf), FullDelta(0) {} in DeltaTreeNode()
88 bool isLeaf() const { return IsLeaf; } in isLeaf() function in __anonba25e4640111::DeltaTreeNode
150 static inline bool classof(const DeltaTreeNode *N) { return !N->isLeaf(); } in classof()
157 if (isLeaf()) in Destroy()
202 if (isLeaf()) { in DoInsertion()
DRewriteRope.cpp91 RopePieceBTreeNode(bool isLeaf) : Size(0), IsLeaf(isLeaf) {} in RopePieceBTreeNode() argument
95 bool isLeaf() const { return IsLeaf; } in isLeaf() function in __anona50530c20111::RopePieceBTreeNode
223 return N->isLeaf(); in classof()
461 return !N->isLeaf(); in classof()
/external/deqp/framework/common/
DtcuTestHierarchyIterator.cpp166 const bool isLeaf = isTestNodeTypeExecutable(node->getNodeType()); in next() local
175 …if (!(isLeaf ? m_caseListFilter.checkTestCaseName(nodePath.c_str()) : m_caseListFilter.checkTestGr… in next()
188 if (isLeaf) in next()
233 if (!isLeaf) in next()
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DIntrinsics.h69 bool isLeaf(ID id);
/external/llvm/include/llvm/IR/
DIntrinsics.h60 bool isLeaf(ID id);
/external/llvm/lib/Transforms/IPO/
DPruneEH.cpp251 if (!Callee || !Intrinsic::isLeaf(Callee->getIntrinsicID())) in DeleteBasicBlock()
/external/llvm/lib/Analysis/
DCallGraph.cpp87 if (!Callee || !Intrinsic::isLeaf(Callee->getIntrinsicID())) in addToCallGraph()
DCallGraphSCCPass.cpp223 Intrinsic::isLeaf( in RefreshCallGraph()
/external/llvm/include/llvm/Analysis/
DCallGraph.h239 !Intrinsic::isLeaf(CS.getCalledFunction()->getIntrinsicID())); in addCalledFunction()
/external/llvm/lib/IR/
DFunction.cpp888 bool Intrinsic::isLeaf(ID id) { in isLeaf() function in Intrinsic
/external/sqlite/dist/orig/
Dsqlite3.c177970 int isLeaf;
177980 isLeaf = (p->flags==0x0A || p->flags==0x0D);
177981 nHdr = 12 - isLeaf*4 + (p->iPgno==1)*100;
177991 p->iRightChildPg = isLeaf ? 0 : sqlite3Get4byte(&aHdr[8]);
178009 if( !isLeaf ){
/external/sqlite/dist/
Dsqlite3.c177982 int isLeaf;
177992 isLeaf = (p->flags==0x0A || p->flags==0x0D);
177993 nHdr = 12 - isLeaf*4 + (p->iPgno==1)*100;
178003 p->iRightChildPg = isLeaf ? 0 : sqlite3Get4byte(&aHdr[8]);
178021 if( !isLeaf ){