Home
last modified time | relevance | path

Searched refs:WaitSet (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DScheduler.cpp33 dbgs() << "[SCHEDULER]: WaitSet size is: " << WaitSet.size() << '\n'; in dump()
159 for (auto I = WaitSet.begin(), E = WaitSet.end(); I != E;) { in promoteToPendingSet()
188 WaitSet.resize(WaitSet.size() - RemovedElements); in promoteToPendingSet()
280 for (InstRef &IR : WaitSet) in cycleEvent()
310 WaitSet.push_back(IR); in dispatch()
/src/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DScheduler.h111 std::vector<InstRef> WaitSet; variable
244 bool isWaitSetEmpty() const { return WaitSet.empty(); } in isWaitSetEmpty()
271 assert(!is_contained(WaitSet, IR) && "Already in the wait set!"); in instructionCheck()