Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/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.h1488 bool isComplete() const { return IsComplete; }
1510 bool hasFullInfo() const { return isComplete(); }
/openbsd-src/gnu/llvm/llvm/include/llvm/TableGen/
H A DRecord.h351 virtual bool isComplete() const { return true; } in isComplete() function
487 bool isComplete() const override { return false; } in isComplete() function
555 bool isComplete() const override { in isComplete() function
557 if (!getBit(i)->isComplete()) return false; in isComplete()
563 if (getBit(i)->isComplete()) return false; in allInComplete()
740 bool isComplete() const override;
968 bool isComplete() const override { in isComplete() function
969 return LHS->isComplete() && MHS->isComplete() && RHS->isComplete(); in isComplete()
1033 bool isComplete() const override;
1082 bool isComplete() const override { return false; } in isComplete() function
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/MC/
H A DMCSchedule.h330 bool isComplete() const { return CompleteModel; } in isComplete() function
/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DCodeGenSchedule.cpp806 if (Rec->getValueInit("SchedModel")->isComplete()) { in expandRWSeqForProc()
1202 if (!RWDef->getValueInit("SchedModel")->isComplete()) in collectProcItinRW()
1438 if (SchedRW.TheDef->getValueInit("SchedModel")->isComplete()) { in getIntersectingVariants()
1457 if ((*AI)->getValueInit("SchedModel")->isComplete()) { in getIntersectingVariants()
1923 if (SRA->getValueInit("SchedModel")->isComplete()) { in collectProcResources()
1932 if (!PRG->getValueInit("SchedModel")->isComplete()) in collectProcResources()
1940 if (!PRU->getValueInit("SchedModel")->isComplete()) in collectProcResources()
2073 if (Alias->getValueInit("SchedModel")->isComplete()) { in collectRWResources()
2156 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.cpp135 if (!BI->isComplete()) in buildRec()
H A DCodeEmitterGen.cpp345 if (RV.isNonconcreteOK() || RV.getValue()->isComplete()) in getInstructionCaseForEncoding()
H A DCodeGenInstruction.cpp700 if (!BI->isComplete()) in tryAliasOpMatch()
H A DSearchableTableEmitter.cpp613 if (!TI || !TI->isComplete()) { in collectTableEntries()
H A DDecoderEmitter.cpp2058 if (Vals[i].isNonconcreteOK() || Vals[i].getValue()->isComplete()) in populateInstruction()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DLoopSimplifyCFG.cpp185 assert(DFS.isComplete() && "DFS is expected to be finished"); in hasIrreducibleCFG()
208 assert(DFS.isComplete() && "DFS is expected to be finished"); in analyze()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DTargetSchedule.cpp227 SchedModel.isComplete()) { in computeOperandLatency()
H A DScheduleDAGInstrs.cpp1421 bool isComplete() const { return DFSStack.empty(); } in isComplete() function in __anon3a1cb6670311::SchedDAGReverseDFS
1491 if (DFS.isComplete()) in compute()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DType.cpp1962 return ET->getDecl()->isComplete(); in isIntegralType()
2051 if (ET->getDecl()->isComplete() && !ET->getDecl()->isScoped()) in isSignedIntegerType()
2070 if (ET->getDecl()->isComplete()) in isSignedIntegerOrEnumerationType()
2101 if (ET->getDecl()->isComplete() && !ET->getDecl()->isScoped()) in isUnsignedIntegerType()
2120 if (ET->getDecl()->isComplete()) in isUnsignedIntegerOrEnumerationType()
2172 return ET->getDecl()->isComplete() && !ET->getDecl()->isScoped(); in isRealType()
2188 return !ET->getDecl()->isScoped() && ET->getDecl()->isComplete(); in isArithmeticType()
2212 assert(cast<EnumType>(T)->getDecl()->isComplete()); in getScalarTypeKind()
2272 return !EnumD->isComplete(); in isIncompleteType()
H A DFormatString.cpp355 if (!ETy->getDecl()->isComplete()) in matchesType()
395 if (!ETy->getDecl()->isComplete()) in matchesType()
H A DScanfFormatString.cpp430 if (!ETy->getDecl()->isComplete()) in fixType()
/openbsd-src/gnu/llvm/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()
2760 QueryComplete = Q->isComplete(); in OL_completeLookup()
/openbsd-src/gnu/llvm/clang/lib/ExtractAPI/
H A DExtractAPIVisitor.cpp161 if (!Decl->isComplete()) in VisitEnumDecl()
/openbsd-src/gnu/llvm/llvm/lib/TableGen/
H A DTGParser.cpp254 else if (!R.isComplete(TArgs[I])) in AddSubClass()
326 if (!Default->isComplete()) { in AddSubMultiClass()
2254 if (!Arg->getValue()->isComplete()) { in ParseSimpleValue()
3741 if (!Default->isComplete()) in ParseDefm()
H A DRecord.cpp720 bool ListInit::isComplete() const { in isComplete() function in ListInit
722 if (!Element->isComplete()) in isComplete()
2280 bool CondOpInit::isComplete() const { in isComplete() function in CondOpInit
2282 if (!Case->isComplete()) in isComplete()
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/
H A DCore.h873 bool isComplete() const { return OutstandingSymbolsCount == 0; } in isComplete() function
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DDecl.h3937 bool isComplete() const { in isComplete() function
4871 return ED->isComplete(); in IsEnumDeclComplete()
/openbsd-src/gnu/llvm/clang/utils/TableGen/
H A DNeonEmitter.cpp1792 assert_with_loc(!Arg->isComplete(), in emitDagArg()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp1224 if (!PN.isComplete()) { in getAddRecExprPHILiterally()

12