Lines Matching refs:activeThreads
168 // Set up Pointers to the activeThreads list for each stage
169 fetch.setActiveThreads(&activeThreads);
170 decode.setActiveThreads(&activeThreads);
171 rename.setActiveThreads(&activeThreads);
172 iew.setActiveThreads(&activeThreads);
173 commit.setActiveThreads(&activeThreads);
636 std::find(activeThreads.begin(), activeThreads.end(), tid);
641 if (isActive == activeThreads.end()) {
645 activeThreads.push_back(tid);
655 std::find(activeThreads.begin(), activeThreads.end(), tid);
660 if (thread_it != activeThreads.end()) {
663 activeThreads.erase(thread_it);
745 if (activeThreads.size() == 0) {
859 if (activeThreads.size() >= 1) {
1750 if (activeThreads.size() > 1) {
1753 list<ThreadID>::iterator list_begin = activeThreads.begin();
1757 activeThreads.erase(list_begin);
1759 activeThreads.push_back(high_thread);