Home
last modified time | relevance | path

Searched refs:isReady (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DLSUnit.h106 bool isReady() const { return NumExecutedPredecessors == NumPredecessors; } in isReady() function
113 assert(!isReady() && "Unexpected group-start event!"); in onGroupIssued()
127 assert(!isReady() && "Inconsistent state found!"); in onGroupExecuted()
161 assert(isReady() && !isExecuted() && "Invalid internal state!"); in onInstructionExecuted()
273 bool isReady(const InstRef &IR) const { in isReady() function
276 return Group.isReady(); in isReady()
H A DResourceManager.h233 bool isReady(unsigned NumUnits = 1) const;
/freebsd/contrib/llvm-project/llvm/lib/MCA/
H A DInstruction.cpp197 if (!all_of(getUses(), [](const ReadState &Use) { return Use.isReady(); })) in updatePending()
201 if (!all_of(getDefs(), [](const WriteState &Def) { return Def.isReady(); })) in updatePending()
212 return Use.isPending() || Use.isReady(); in updateDispatched()
233 if (isReady()) in cycleEvent()
/freebsd/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DResourceManager.cpp80 bool ResourceState::isReady(unsigned NumUnits) const { in isReady() function in llvm::mca::ResourceState
181 assert(RS.isReady() && "No available units to select!"); in selectPipe()
206 if (RS.isReady()) in use()
227 bool WasFullyUsed = !RS.isReady(); in release()
290 if (!RS.isReady(NumUnits)) { in checkAvailability()
H A DScheduler.cpp130 if (!IS.isReady() && !IS.updatePending()) { in promoteToReadySet()
135 if (IS.isMemOp() && !LSU.isReady(IR)) { in promoteToReadySet()
322 assert(IS.isReady() && (!IS.isMemOp() || LSU.isReady(IR)) && in dispatch()
/freebsd/contrib/byacc/test/
H A Dexpr.oxout.y349 char isReady; member
383 yyyTST->isReady = 0; in yyyDoTraversals()
388 if (yyyTST->isReady) in yyyDoTraversals()
398 yyyTST->isReady = 1; in yyyDoTraversals()
408 yyyTST->isReady = 0; in yyyDoTraversals()
423 yyyTST->isReady = 0; in yyyDoTraversals()
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/
H A DInstruction.h291 bool isReady() const { in isReady() function
368 bool isReady() const { return IsReady; } in isReady() function
687 bool isReady() const { return Stage == IS_READY; } in isReady() function
/freebsd/contrib/byacc/test/yacc/
H A Dexpr.oxout.tab.c548 char isReady; member
582 yyyTST->isReady = 0; in yyyDoTraversals()
587 if (yyyTST->isReady) in yyyDoTraversals()
597 yyyTST->isReady = 1; in yyyDoTraversals()
607 yyyTST->isReady = 0; in yyyDoTraversals()
622 yyyTST->isReady = 0; in yyyDoTraversals()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp246 bool isReady(SUnit *SU) { in isReady() function in __anona90f206e0111::ScheduleDAGRRList
248 AvailableQueue->isReady(SU); in isReady()
428 if (isReady(PredSU)) { in ReleasePred()
619 if (!isReady(PendingQueue[i])) in ReleasePending()
1652 bool isReady(SUnit* SU, unsigned CurCycle) const { return true; } in isReady() function
1710 bool isReady(SUnit *SU, unsigned CurCycle) const;
1727 bool isReady(SUnit *SU, unsigned CurCycle) const;
1898 bool isReady(SUnit *U) const override { in isReady() function in __anona90f206e0311::RegReductionPriorityQueue
1899 return Picker.HasReadyFilter && Picker.isReady(U, getCurCycle()); in isReady()
2672 bool hybrid_ls_rr_sort::isReady(SUnit *SU, unsigned CurCycle) const { in isReady() function in hybrid_ls_rr_sort
[all …]
/freebsd/contrib/byacc/test/btyacc/
H A Dexpr.oxout.tab.c698 char isReady; member
732 yyyTST->isReady = 0; in yyyDoTraversals()
737 if (yyyTST->isReady) in yyyDoTraversals()
747 yyyTST->isReady = 1; in yyyDoTraversals()
757 yyyTST->isReady = 0; in yyyDoTraversals()
772 yyyTST->isReady = 0; in yyyDoTraversals()
/freebsd/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DExecuteStage.cpp164 assert(Inst.isReady() && "Instruction in an inconsistent state!"); in verifyInstructionEliminated()
H A DInOrderIssueStage.cpp129 if (IR.getInstruction()->isMemOp() && !LSU.isReady(IR)) { in canExecute()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h538 virtual bool isReady(SUnit *) const { in isReady() function
/freebsd/contrib/libxo/xohtml/external/
H A Djquery.js404 isReady: false,
422 if ( (wait === true && !--jQuery.readyWait) || (wait !== true && !jQuery.isReady) ) {
429 jQuery.isReady = true;
942 if ( jQuery.isReady ) {
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp3513 bool isReady() const { in isReady() function
3826 assert(SD->isSchedulingEntity() && SD->isReady() && in verify()
3849 SD->isReady()) { in initialFillReadyList()
14521 while (((!Bundle && ReSchedule) || (Bundle && !Bundle->isReady())) && in tryScheduleBundle()
14524 assert(Picked->isSchedulingEntity() && Picked->isReady() && in tryScheduleBundle()
14571 if (!Bundle->isReady()) { in tryScheduleBundle()
14595 if (Bundle->isReady()) in cancelScheduling()
14934 if (InsertInReadyList && SD->isReady()) { in calculateDependencies()