Home
last modified time | relevance | path

Searched refs:isComplete (Results 1 – 25 of 32) sorted by relevance

12

/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DLoopIterator.h126 bool isComplete() const { return PostBlocks.size() == L->getNumBlocks(); } in isComplete() function
130 assert(isComplete() && "bad loop DFS"); in beginPostorder()
137 assert(isComplete() && "bad loop DFS"); in beginRPO()
H A DScalarEvolution.h1390 bool isComplete() const { return IsComplete; }
1412 bool hasFullInfo() const { return isComplete(); }
/llvm-project-15.0.7/llvm/include/llvm/TableGen/
H A DRecord.h350 virtual bool isComplete() const { return true; } in isComplete() function
486 bool isComplete() const override { return false; } in isComplete() function
554 bool isComplete() const override { in isComplete() function
556 if (!getBit(i)->isComplete()) return false; in isComplete()
562 if (getBit(i)->isComplete()) return false; in allInComplete()
739 bool isComplete() const override;
943 bool isComplete() const override { in isComplete() function
944 return LHS->isComplete() && MHS->isComplete() && RHS->isComplete(); in isComplete()
1008 bool isComplete() const override;
2139 bool isComplete(Init *VarName) const { in isComplete() function
[all …]
/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCSchedule.h330 bool isComplete() const { return CompleteModel; } in isComplete() function
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DCodeGenSchedule.cpp808 if (Rec->getValueInit("SchedModel")->isComplete()) { in expandRWSeqForProc()
1204 if (!RWDef->getValueInit("SchedModel")->isComplete()) in collectProcItinRW()
1440 if (SchedRW.TheDef->getValueInit("SchedModel")->isComplete()) { in getIntersectingVariants()
1459 if ((*AI)->getValueInit("SchedModel")->isComplete()) { in getIntersectingVariants()
1925 if (SRA->getValueInit("SchedModel")->isComplete()) { in collectProcResources()
1934 if (!PRG->getValueInit("SchedModel")->isComplete()) in collectProcResources()
1942 if (!PRU->getValueInit("SchedModel")->isComplete()) in collectProcResources()
2075 if (Alias->getValueInit("SchedModel")->isComplete()) { in collectRWResources()
2158 if (!ProcResUnits->getValueInit("Super")->isComplete()) in addProcResource()
H A DSubtargetEmitter.cpp834 if (PRDef->getValueInit("Super")->isComplete()) { in EmitProcessorResources()
875 if (AliasRW.TheDef->getValueInit("SchedModel")->isComplete()) { in FindWriteResources()
927 if (AliasRW.TheDef->getValueInit("SchedModel")->isComplete()) { in FindReadAdvance()
981 SubDef->getValueInit("Super")->isComplete();) { in ExpandProcResources()
H A DVarLenCodeEmitterGen.cpp109 if (!BI->isComplete()) in buildRec()
H A DCodeEmitterGen.cpp316 if (RV.isNonconcreteOK() || RV.getValue()->isComplete()) in getInstructionCaseForEncoding()
H A DCodeGenInstruction.cpp632 if (!BI->isComplete()) in tryAliasOpMatch()
H A DSearchableTableEmitter.cpp613 if (!TI || !TI->isComplete()) { in collectTableEntries()
H A DDecoderEmitter.cpp2006 if (Vals[i].isNonconcreteOK() || Vals[i].getValue()->isComplete()) in populateInstruction()
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DLoopSimplifyCFG.cpp184 assert(DFS.isComplete() && "DFS is expected to be finished"); in hasIrreducibleCFG()
207 assert(DFS.isComplete() && "DFS is expected to be finished"); in analyze()
/llvm-project-15.0.7/clang/lib/AST/
H A DType.cpp1938 return ET->getDecl()->isComplete(); in isIntegralType()
2027 if (ET->getDecl()->isComplete() && !ET->getDecl()->isScoped()) in isSignedIntegerType()
2046 if (ET->getDecl()->isComplete()) in isSignedIntegerOrEnumerationType()
2077 if (ET->getDecl()->isComplete() && !ET->getDecl()->isScoped()) in isUnsignedIntegerType()
2096 if (ET->getDecl()->isComplete()) in isUnsignedIntegerOrEnumerationType()
2148 return ET->getDecl()->isComplete() && !ET->getDecl()->isScoped(); in isRealType()
2164 return !ET->getDecl()->isScoped() && ET->getDecl()->isComplete(); in isArithmeticType()
2188 assert(cast<EnumType>(T)->getDecl()->isComplete()); in getScalarTypeKind()
2248 return !EnumD->isComplete(); in isIncompleteType()
H A DFormatString.cpp354 if (!ETy->getDecl()->isComplete()) in matchesType()
377 if (!ETy->getDecl()->isComplete()) in matchesType()
H A DScanfFormatString.cpp428 if (!ETy->getDecl()->isComplete()) in fixType()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DTargetSchedule.cpp242 && SchedModel.isComplete()) { in computeOperandLatency()
H A DScheduleDAGInstrs.cpp1408 bool isComplete() const { return DFSStack.empty(); } in isComplete() function in __anon22109aa00311::SchedDAGReverseDFS
1478 if (DFS.isComplete()) in compute()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/
H A DCore.cpp1014 if (Q->isComplete()) in resolve()
1025 assert(Q->isComplete() && "Q not completed"); in resolve()
1150 if (Q->isComplete()) in emit()
1166 if (Q->isComplete()) in emit()
1180 assert(Q->isComplete() && "Q is not complete"); in emit()
2758 QueryComplete = Q->isComplete(); in OL_completeLookup()
/llvm-project-15.0.7/llvm/lib/TableGen/
H A DTGParser.cpp255 else if (!R.isComplete(TArgs[I])) in AddSubClass()
327 if (!Default->isComplete()) { in AddSubMultiClass()
2214 if (!Arg->getValue()->isComplete()) in ParseSimpleValue()
3672 if (!Default->isComplete()) in ParseDefm()
H A DRecord.cpp719 bool ListInit::isComplete() const { in isComplete() function in ListInit
721 if (!Element->isComplete()) in isComplete()
2196 bool CondOpInit::isComplete() const { in isComplete() function in CondOpInit
2198 if (!Case->isComplete()) in isComplete()
/llvm-project-15.0.7/clang/lib/ExtractAPI/
H A DExtractAPIConsumer.cpp350 if (!Decl->isComplete()) in VisitEnumDecl()
/llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/Orc/
H A DCore.h858 bool isComplete() const { return OutstandingSymbolsCount == 0; } in isComplete() function
/llvm-project-15.0.7/clang/include/clang/AST/
H A DDecl.h3860 bool isComplete() const { in isComplete() function
4713 return ED->isComplete(); in IsEnumDeclComplete()
/llvm-project-15.0.7/clang/utils/TableGen/
H A DNeonEmitter.cpp1784 assert_with_loc(!Arg->isComplete(), in emitDagArg()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp1197 if (!PN.isComplete()) { in getAddRecExprPHILiterally()

12