diff options
author | Andreas Sandberg <Andreas.Sandberg@ARM.com> | 2013-01-07 13:05:45 -0500 |
---|---|---|
committer | Andreas Sandberg <Andreas.Sandberg@ARM.com> | 2013-01-07 13:05:45 -0500 |
commit | a2077ccf026f4587bf097274b241aa2c78c096e9 (patch) | |
tree | 49083c37d17fa4e28a3ddac51853c6cb76268810 /src/cpu/o3/cpu.hh | |
parent | e23850dd074fb623128a44b4c1453fc85e86a736 (diff) | |
download | gem5-a2077ccf026f4587bf097274b241aa2c78c096e9.tar.xz |
o3 cpu: Remove unused variables
Diffstat (limited to 'src/cpu/o3/cpu.hh')
-rw-r--r-- | src/cpu/o3/cpu.hh | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/cpu/o3/cpu.hh b/src/cpu/o3/cpu.hh index c6083d8d5..890598b0f 100644 --- a/src/cpu/o3/cpu.hh +++ b/src/cpu/o3/cpu.hh @@ -124,9 +124,6 @@ class FullO3CPU : public BaseO3CPU /** Overall CPU status. */ Status _status; - /** Per-thread status in CPU, used for SMT. */ - Status _threadStatus[Impl::MaxThreads]; - private: /** @@ -781,11 +778,6 @@ class FullO3CPU : public BaseO3CPU /** Get the dcache port (used to find block size for translations). */ virtual CpuPort &getDataPort() { return dcachePort; } - Addr lockAddr; - - /** Temporary fix for the lock flag, works in the UP case. */ - bool lockFlag; - /** Stat for total number of times the CPU is descheduled. */ Stats::Scalar timesIdled; /** Stat for total number of cycles the CPU spends descheduled. */ |