Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/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.h1578 bool isComplete() const { return IsComplete; }
1605 bool hasFullInfo() const { return isComplete(); }
/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h356 virtual bool isComplete() const { return true; } in isComplete() function
481 bool isComplete() const override { return false; } in isComplete() function
544 bool isComplete() const override { return false; } in isComplete() function
619 bool isComplete() const override;
796 bool isComplete() const override;
997 bool isComplete() const override { in isComplete() function
998 return LHS->isComplete() && MHS->isComplete() && RHS->isComplete(); in isComplete()
1056 bool isComplete() const override;
1103 bool isComplete() const override { return false; } in isComplete() function
1136 bool isComplete() const override { return false; } in isComplete() function
[all …]
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DGeneratePCH.cpp125 if (!isComplete()) in HandleTranslationUnit()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenSchedule.cpp775 if (Rec->getValueInit("SchedModel")->isComplete()) { in expandRWSeqForProc()
1154 if (!RWDef->getValueInit("SchedModel")->isComplete()) in collectProcItinRW()
1390 if (SchedRW.TheDef->getValueInit("SchedModel")->isComplete()) { in getIntersectingVariants()
1409 if ((*AI)->getValueInit("SchedModel")->isComplete()) { in getIntersectingVariants()
1862 if (SRA->getValueInit("SchedModel")->isComplete()) { in collectProcResources()
1870 if (!PRG->getValueInit("SchedModel")->isComplete()) in collectProcResources()
1879 if (!PRU->getValueInit("SchedModel")->isComplete()) in collectProcResources()
2014 if (Alias->getValueInit("SchedModel")->isComplete()) { in collectRWResources()
2097 if (!ProcResUnits->getValueInit("Super")->isComplete()) in addProcResource()
H A DCodeGenInstAlias.cpp123 if (!BI->isComplete()) in tryAliasOpMatch()
H A DVarLenCodeEmitterGen.cpp149 if (!BI->isComplete()) in buildRec()
/freebsd/contrib/llvm-project/clang/lib/CIR/Dialect/IR/
H A DCIRTypes.cpp314 assert(isComplete() && "Cannot get layout of incomplete records"); in computeStructSize()
348 assert(isComplete() && "Cannot get layout of incomplete records"); in computeStructAlignment()
367 assert(isComplete() && "Cannot get layout of incomplete records"); in getElementOffset()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSchedule.h350 bool isComplete() const { return CompleteModel; } in isComplete() function
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenTypes.cpp121 return it != recordDeclTypes.end() && it->second.isComplete(); in isRecordLayoutComplete()
226 if (!rd || !rd->isCompleteDefinition() || entry.isComplete()) in convertRecordDeclType()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetSchedule.cpp224 SchedModel.isComplete()) { in computeOperandLatency()
H A DScheduleDAGInstrs.cpp1452 bool isComplete() const { return DFSStack.empty(); } in isComplete() function in __anon4ee60d700311::SchedDAGReverseDFS
1522 if (DFS.isComplete()) in compute()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DType.cpp2117 return ET->getDecl()->isComplete(); in isIntegralType()
2219 if (ET->getDecl()->isComplete() && !ET->getDecl()->isScoped()) in isSignedIntegerType()
2236 ET && ET->getDecl()->isComplete()) in isSignedIntegerOrEnumerationType()
2264 if (ET->getDecl()->isComplete() && !ET->getDecl()->isScoped()) in isUnsignedIntegerType()
2281 ET && ET->getDecl()->isComplete()) in isUnsignedIntegerOrEnumerationType()
2332 return ET->getDecl()->isComplete() && !ET->getDecl()->isScoped(); in isRealType()
2347 return !ET->getDecl()->isScoped() && ET->getDecl()->isComplete(); in isArithmeticType()
2355 return ET->getDecl()->isComplete() && in hasBooleanRepresentation()
2388 assert(cast<EnumType>(T)->getDecl()->isComplete()); in getScalarTypeKind()
2449 return !EnumD->isComplete(); in isIncompleteType()
H A DFormatString.cpp356 if (!ETy->getDecl()->isComplete()) in matchesType()
401 if (!ETy->getDecl()->isComplete()) in matchesType()
H A DScanfFormatString.cpp430 if (!ETy->getDecl()->isComplete()) in fixType()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DSubtargetEmitter.cpp830 if (PRDef->getValueInit("Super")->isComplete()) { in emitProcessorResources()
871 if (AliasRW.TheDef->getValueInit("SchedModel")->isComplete()) { in findWriteResources()
930 if (AliasRW.TheDef->getValueInit("SchedModel")->isComplete()) { in findReadAdvance()
991 SubDef->getValueInit("Super")->isComplete();) { in expandProcResources()
H A DCodeEmitterGen.cpp361 if (RV.isNonconcreteOK() || RV.getValue()->isComplete()) in addInstructionCasesForEncoding()
H A DSearchableTableEmitter.cpp691 if (!TI || !TI->isComplete()) { in collectTableEntries()
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DRecord.cpp540 bool BitsInit::isComplete() const { in isComplete() function in BitsInit
541 return all_of(getBits(), [](const Init *Bit) { return Bit->isComplete(); }); in isComplete()
544 return all_of(getBits(), [](const Init *Bit) { return !Bit->isComplete(); }); in allInComplete()
787 bool ListInit::isComplete() const { in isComplete() function in ListInit
789 [](const Init *Element) { return Element->isComplete(); }); in isComplete()
2670 bool CondOpInit::isComplete() const { in isComplete() function in CondOpInit
2672 return std::get<0>(Pair)->isComplete() && std::get<1>(Pair)->isComplete(); in isComplete()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaFunctionEffects.cpp406 bool isComplete() const { return UnverifiedDirectCalls.empty(); } in isComplete() function in __anon1adc617b0111::PendingFunctionAnalysis
414 assert(!isComplete()); in unverifiedCalls()
651 if (FAnalysis.isComplete()) { in verifyDecl()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCore.cpp963 if (Q->isComplete()) in resolve()
974 assert(Q->isComplete() && "Q not completed"); in resolve()
2745 QueryComplete = Q->isComplete(); in OL_completeLookup()
3139 if (Q->isComplete()) in IL_makeEDUReady()
3193 if (Q->isComplete()) in IL_makeEDUEmitted()
3504 assert(Q->isComplete() && "Q is not complete"); in OL_notifyEmitted()
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DContext.cpp318 if (!D->isComplete()) in classify()
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTWriter.h991 bool isComplete() const { return Buffer->IsComplete; } in isComplete() function
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c2419 int isComplete; in DbObjCmd() local
2424 isComplete = sqlite3_complete( Tcl_GetStringFromObj(objv[2], 0) ); in DbObjCmd()
2426 Tcl_SetBooleanObj(pResult, isComplete); in DbObjCmd()

12