diff options
author | Korey Sewell <ksewell@umich.edu> | 2011-06-19 21:43:36 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2011-06-19 21:43:36 -0400 |
commit | 555bd4d8423bcc4edd77acd3226bcd2af0cbcdac (patch) | |
tree | 4d96ff655c02661ce49c40b76f2f65c9255c6db3 /src/cpu/inorder/resources | |
parent | 7dea79535c87b68b5fc6143190d09b8fc364f2aa (diff) | |
download | gem5-555bd4d8423bcc4edd77acd3226bcd2af0cbcdac.tar.xz |
inorder: update event priorities
dont use offset to calculate this but rather an enum
that can be updated
Diffstat (limited to 'src/cpu/inorder/resources')
-rw-r--r-- | src/cpu/inorder/resources/fetch_seq_unit.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cpu/inorder/resources/fetch_seq_unit.cc b/src/cpu/inorder/resources/fetch_seq_unit.cc index 024f38fdd..b79b17cdc 100644 --- a/src/cpu/inorder/resources/fetch_seq_unit.cc +++ b/src/cpu/inorder/resources/fetch_seq_unit.cc @@ -165,7 +165,8 @@ FetchSeqUnit::squash(DynInstPtr inst, int squash_stage, // A Trap Caused This Fault and will update the pc state // when done trapping DPRINTF(InOrderFetchSeq, "[tid:%i] Blocking due to fault @ " - "[sn:%i].\n", inst->seqNum); + "[sn:%i].%s %s \n", inst->seqNum, + inst->instName(), inst->pcState()); pcValid[tid] = false; } else { TheISA::PCState nextPC; |