changeset 72a72649a156 in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=72a72649a156
description:
cpu: Construct ROB with cpu params struct instead of each variable
Most other structures/stages get passed the cpu params struct.
diffstat:
src/cpu/o3/cpu.cc | 5 +----
src/cpu/o3/rob.hh | 14 +++++---------
src/cpu/o3/rob_impl.hh | 15 +++++++--------
3 files changed, 13 insertions(+), 21 deletions(-)
diffs (86 lines):
diff -r 9caba3b84a9b -r 72a72649a156 src/cpu/o3/cpu.cc
--- a/src/cpu/o3/cpu.cc Thu Oct 31 13:41:13 2013 -0500
+++ b/src/cpu/o3/cpu.cc Thu Oct 31 13:41:13 2013 -0500
@@ -230,10 +230,7 @@
freeList(name() + ".freelist", ®File),
- rob(this,
- params->numROBEntries, params->squashWidth,
- params->smtROBPolicy, params->smtROBThreshold,
- params->numThreads),
+ rob(this, params),
scoreboard(name() + ".scoreboard",
regFile.totalNumPhysRegs(), TheISA::NumMiscRegs,
diff -r 9caba3b84a9b -r 72a72649a156 src/cpu/o3/rob.hh
--- a/src/cpu/o3/rob.hh Thu Oct 31 13:41:13 2013 -0500
+++ b/src/cpu/o3/rob.hh Thu Oct 31 13:41:13 2013 -0500
@@ -52,6 +52,8 @@
#include "base/types.hh"
#include "config/the_isa.hh"
+struct DerivO3CPUParams;
+
/**
* ROB class. The ROB is largely what drives squashing.
*/
@@ -91,16 +93,10 @@
public:
/** ROB constructor.
- * @param _numEntries Number of entries in ROB.
- * @param _squashWidth Number of instructions that can be squashed in
a
- * single cycle.
- * @param _smtROBPolicy ROB Partitioning Scheme for SMT.
- * @param _smtROBThreshold Max Resources(by %) a thread can have in the
ROB.
- * @param _numThreads The number of active threads.
+ * @param _cpu The cpu object pointer.
+ * @param params The cpu params including several ROB-specific parameters.
*/
- ROB(O3CPU *_cpu, unsigned _numEntries, unsigned _squashWidth,
- std::string smtROBPolicy, unsigned _smtROBThreshold,
- ThreadID _numThreads);
+ ROB(O3CPU *_cpu, DerivO3CPUParams *params);
std::string name() const;
diff -r 9caba3b84a9b -r 72a72649a156 src/cpu/o3/rob_impl.hh
--- a/src/cpu/o3/rob_impl.hh Thu Oct 31 13:41:13 2013 -0500
+++ b/src/cpu/o3/rob_impl.hh Thu Oct 31 13:41:13 2013 -0500
@@ -49,20 +49,19 @@
#include "cpu/o3/rob.hh"
#include "debug/Fetch.hh"
#include "debug/ROB.hh"
+#include "params/DerivO3CPU.hh"
using namespace std;
template <class Impl>
-ROB<Impl>::ROB(O3CPU *_cpu, unsigned _numEntries, unsigned _squashWidth,
- std::string _smtROBPolicy, unsigned _smtROBThreshold,
- ThreadID _numThreads)
+ROB<Impl>::ROB(O3CPU *_cpu, DerivO3CPUParams *params)
: cpu(_cpu),
- numEntries(_numEntries),
- squashWidth(_squashWidth),
+ numEntries(params->numROBEntries),
+ squashWidth(params->squashWidth),
numInstsInROB(0),
- numThreads(_numThreads)
+ numThreads(params->numThreads)
{
- std::string policy = _smtROBPolicy;
+ std::string policy = params->smtROBPolicy;
//Convert string to lowercase
std::transform(policy.begin(), policy.end(), policy.begin(),
@@ -93,7 +92,7 @@
robPolicy = Threshold;
DPRINTF(Fetch, "ROB sharing policy set to Threshold\n");
- int threshold = _smtROBThreshold;;
+ int threshold = params->smtROBThreshold;;
//Divide up by threshold amount
for (ThreadID tid = 0; tid < numThreads; tid++) {
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev