From f95430d97e0a9a77b920ab3ca24b134bc682f655 Mon Sep 17 00:00:00 2001 From: Korey Sewell Date: Thu, 24 Jun 2010 15:34:12 -0400 Subject: inorder: enforce 78-character rule --- src/cpu/inorder/reg_dep_map.hh | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) (limited to 'src/cpu/inorder/reg_dep_map.hh') 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 */ -- cgit v1.2.3