diff options
author | Mrinmoy Ghosh <Mrinmoy.Ghosh@arm.com> | 2011-08-19 15:08:05 -0500 |
---|---|---|
committer | Mrinmoy Ghosh <Mrinmoy.Ghosh@arm.com> | 2011-08-19 15:08:05 -0500 |
commit | d0e04859023702ec23c97683700c638949a1dad1 (patch) | |
tree | 9ed3e8ea4957235d615dd4f0050a94f23e92a889 /src/cpu/o3/mem_dep_unit.hh | |
parent | 0db95030fc75792de8231bad7e66a09561eaa2ec (diff) | |
download | gem5-d0e04859023702ec23c97683700c638949a1dad1.tar.xz |
LSQ: Add some better dprintfs for storeset predictor.
Diffstat (limited to 'src/cpu/o3/mem_dep_unit.hh')
-rw-r--r-- | src/cpu/o3/mem_dep_unit.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/o3/mem_dep_unit.hh b/src/cpu/o3/mem_dep_unit.hh index 5d6f0a159..7d00369d3 100644 --- a/src/cpu/o3/mem_dep_unit.hh +++ b/src/cpu/o3/mem_dep_unit.hh @@ -169,7 +169,7 @@ class MemDepUnit ++memdep_count; DPRINTF(MemDepUnit, "Memory dependency entry created. " - "memdep_count=%i\n", memdep_count); + "memdep_count=%i %s\n", memdep_count, inst->pcState()); #endif } @@ -183,7 +183,7 @@ class MemDepUnit --memdep_count; DPRINTF(MemDepUnit, "Memory dependency entry deleted. " - "memdep_count=%i\n", memdep_count); + "memdep_count=%i %s\n", memdep_count, inst->pcState()); #endif } |