summaryrefslogtreecommitdiff
path: root/src/cpu/o3/params.hh
diff options
context:
space:
mode:
authorKevin Lim <ktlim@umich.edu>2006-07-05 16:54:24 -0400
committerKevin Lim <ktlim@umich.edu>2006-07-05 16:54:24 -0400
commitea9697250cf55add36af1548b524ab22d6a2cf94 (patch)
tree23111c4c50543d7264db6d39219175d9abc27c68 /src/cpu/o3/params.hh
parentb973fae85d47a8184204d5d38b32ad3d427ce41c (diff)
downloadgem5-ea9697250cf55add36af1548b524ab22d6a2cf94.tar.xz
Fix up some merge problems.
src/base/traceflags.py: Remove BaseCPU traceflag. src/cpu/o3/alpha/params.hh: Move non-Alpha specific parameters out of this params class. src/cpu/o3/params.hh: Move non-Alpha specific params into this params class. --HG-- extra : convert_revision : e5b652adb47a240376733400e6054c66c50bd514
Diffstat (limited to 'src/cpu/o3/params.hh')
-rwxr-xr-xsrc/cpu/o3/params.hh15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/cpu/o3/params.hh b/src/cpu/o3/params.hh
index 69a1bb937..ed53fa97a 100755
--- a/src/cpu/o3/params.hh
+++ b/src/cpu/o3/params.hh
@@ -47,6 +47,18 @@ class O3Params : public BaseO3CPU::Params
unsigned activity;
//
+ // Pointers to key objects
+ //
+#if !FULL_SYSTEM
+ std::vector<Process *> workload;
+ Process *process;
+#endif // FULL_SYSTEM
+
+ MemObject *mem;
+
+ BaseCPU *checker;
+
+ //
// Caches
//
// MemInterface *icacheInterface;
@@ -86,7 +98,10 @@ class O3Params : public BaseO3CPU::Params
unsigned commitToIEWDelay;
unsigned renameToIEWDelay;
unsigned issueToExecuteDelay;
+ unsigned dispatchWidth;
unsigned issueWidth;
+ unsigned wbWidth;
+ unsigned wbDepth;
FUPool *fuPool;
//