summaryrefslogtreecommitdiff
path: root/src/cpu/inorder/reg_dep_map.hh
diff options
context:
space:
mode:
authorKorey Sewell <ksewell@umich.edu>2010-06-24 15:34:12 -0400
committerKorey Sewell <ksewell@umich.edu>2010-06-24 15:34:12 -0400
commitf95430d97e0a9a77b920ab3ca24b134bc682f655 (patch)
tree13a5424847b8e4a65135e82a518ef60ed069b2d3 /src/cpu/inorder/reg_dep_map.hh
parentecba3074c2eb9e873655a1e0e49bfd03e2bd2a41 (diff)
downloadgem5-f95430d97e0a9a77b920ab3ca24b134bc682f655.tar.xz
inorder: enforce 78-character rule
Diffstat (limited to 'src/cpu/inorder/reg_dep_map.hh')
-rw-r--r--src/cpu/inorder/reg_dep_map.hh19
1 files changed, 13 insertions, 6 deletions
diff --git a/src/cpu/inorder/reg_dep_map.hh b/src/cpu/inorder/reg_dep_map.hh
index 2e938a6b5..fa4fe45f3 100644
--- a/src/cpu/inorder/reg_dep_map.hh
+++ b/src/cpu/inorder/reg_dep_map.hh
@@ -60,29 +60,36 @@ class RegDepMap
/** Insert all of a instruction's destination registers into map*/
void insert(DynInstPtr inst);
- /** Insert an instruction into a specific destination register index onto map */
+ /** Insert an instruction into a specific destination register index
+ * onto map
+ */
void insert(unsigned idx, DynInstPtr inst);
/** Remove all of a instruction's destination registers into map*/
void remove(DynInstPtr inst);
- /** Remove a specific instruction and destination register index from map */
+ /** Remove a specific instruction and dest. register index from map*/
void remove(unsigned idx, DynInstPtr inst);
/** Remove Front instruction from a destination register */
void removeFront(unsigned idx, DynInstPtr inst);
- /** Is the current instruction able to read from this destination register? */
+ /** Is the current instruction able to read from this
+ * destination register?
+ */
bool canRead(unsigned idx, DynInstPtr inst);
- /** Is the current instruction able to get a forwarded value from another instruction
- * for this destination register? */
+ /** Is the current instruction able to get a forwarded value from
+ * another instruction for this destination register?
+ */
DynInstPtr canForward(unsigned reg_idx, DynInstPtr inst);
/** find an instruction to forward/bypass a value from */
DynInstPtr findBypassInst(unsigned idx);
- /** Is the current instruction able to write to this destination register? */
+ /** Is the current instruction able to write to this
+ * destination register?
+ */
bool canWrite(unsigned idx, DynInstPtr inst);
/** Size of Dependency of Map */