diff options
author | Steve Reinhardt <stever@gmail.com> | 2008-01-02 12:20:15 -0800 |
---|---|---|
committer | Steve Reinhardt <stever@gmail.com> | 2008-01-02 12:20:15 -0800 |
commit | 3952e41ab1f1dfaa2f97a6a486528e4ea0bfc5a1 (patch) | |
tree | e186dc9429d37ea5e9ca6657ce746e60447dee32 /src/cpu/o3 | |
parent | 659aef3eb8ff2803601851b85347fee04c2721b8 (diff) | |
download | gem5-3952e41ab1f1dfaa2f97a6a486528e4ea0bfc5a1.tar.xz |
Add functional PrintReq command for memory-system debugging.
--HG--
extra : convert_revision : 73b753e57c355b7e6873f047ddc8cb371c3136b7
Diffstat (limited to 'src/cpu/o3')
-rw-r--r-- | src/cpu/o3/cpu.cc | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/cpu/o3/cpu.cc b/src/cpu/o3/cpu.cc index 3842d27bd..5908062aa 100644 --- a/src/cpu/o3/cpu.cc +++ b/src/cpu/o3/cpu.cc @@ -52,7 +52,6 @@ #include "cpu/checker/cpu.hh" #endif -using namespace std; using namespace TheISA; BaseO3CPU::BaseO3CPU(Params *params) @@ -521,8 +520,8 @@ template <class Impl> void FullO3CPU<Impl>::activateThread(unsigned tid) { - list<unsigned>::iterator isActive = find( - activeThreads.begin(), activeThreads.end(), tid); + std::list<unsigned>::iterator isActive = + std::find(activeThreads.begin(), activeThreads.end(), tid); DPRINTF(O3CPU, "[tid:%i]: Calling activate thread.\n", tid); @@ -539,8 +538,8 @@ void FullO3CPU<Impl>::deactivateThread(unsigned tid) { //Remove From Active List, if Active - list<unsigned>::iterator thread_it = - find(activeThreads.begin(), activeThreads.end(), tid); + std::list<unsigned>::iterator thread_it = + std::find(activeThreads.begin(), activeThreads.end(), tid); DPRINTF(O3CPU, "[tid:%i]: Calling deactivate thread.\n", tid); @@ -959,8 +958,8 @@ FullO3CPU<Impl>::takeOverFrom(BaseCPU *oldCPU) // the active threads list. int tid = 0; - list<unsigned>::iterator isActive = find( - activeThreads.begin(), activeThreads.end(), tid); + std::list<unsigned>::iterator isActive = + std::find(activeThreads.begin(), activeThreads.end(), tid); if (isActive == activeThreads.end()) { //May Need to Re-code this if the delay variable is the delay @@ -1454,8 +1453,8 @@ FullO3CPU<Impl>::updateThreadPriority() { //DEFAULT TO ROUND ROBIN SCHEME //e.g. Move highest priority to end of thread list - list<unsigned>::iterator list_begin = activeThreads.begin(); - list<unsigned>::iterator list_end = activeThreads.end(); + std::list<unsigned>::iterator list_begin = activeThreads.begin(); + std::list<unsigned>::iterator list_end = activeThreads.end(); unsigned high_thread = *list_begin; |