summaryrefslogtreecommitdiff
path: root/src/cpu/o3/commit.hh
diff options
context:
space:
mode:
authorNilay Vaish <nilay@cs.wisc.edu>2015-03-09 09:39:08 -0500
committerNilay Vaish <nilay@cs.wisc.edu>2015-03-09 09:39:08 -0500
commit4e1d10a3cf3f5ba78b4a3bc4bd96ec60916809b3 (patch)
tree91980a80713de53aad2c2d5198c85585d86681e7 /src/cpu/o3/commit.hh
parent53de2512b1bb3179912a3d592cc281b475b9f881 (diff)
downloadgem5-4e1d10a3cf3f5ba78b4a3bc4bd96ec60916809b3.tar.xz
cpu: o3: commit: mark pipeline delay variable as consts
Diffstat (limited to 'src/cpu/o3/commit.hh')
-rw-r--r--src/cpu/o3/commit.hh16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/cpu/o3/commit.hh b/src/cpu/o3/commit.hh
index a63e8e9e9..6688a70dc 100644
--- a/src/cpu/o3/commit.hh
+++ b/src/cpu/o3/commit.hh
@@ -406,29 +406,29 @@ class DefaultCommit
std::list<ThreadID> priority_list;
/** IEW to Commit delay. */
- Cycles iewToCommitDelay;
+ const Cycles iewToCommitDelay;
/** Commit to IEW delay. */
- Cycles commitToIEWDelay;
+ const Cycles commitToIEWDelay;
/** Rename to ROB delay. */
- Cycles renameToROBDelay;
+ const Cycles renameToROBDelay;
- Cycles fetchToCommitDelay;
+ const Cycles fetchToCommitDelay;
/** Rename width, in instructions. Used so ROB knows how many
* instructions to get from the rename instruction queue.
*/
- unsigned renameWidth;
+ const unsigned renameWidth;
/** Commit width, in instructions. */
- unsigned commitWidth;
+ const unsigned commitWidth;
/** Number of Reorder Buffers */
unsigned numRobs;
/** Number of Active Threads */
- ThreadID numThreads;
+ const ThreadID numThreads;
/** Is a drain pending? Commit is looking for an instruction boundary while
* there are no pending interrupts
@@ -445,7 +445,7 @@ class DefaultCommit
/** The latency to handle a trap. Used when scheduling trap
* squash event.
*/
- Cycles trapLatency;
+ const Cycles trapLatency;
/** The interrupt fault. */
Fault interrupt;