Daniel Carvalho has uploaded this change for review. ( https://gem5-review.googlesource.com/c/public/gem5/+/39075 )

Change subject: cpu-o3: Add missing tid in Rename's debug message
......................................................................

cpu-o3: Add missing tid in Rename's debug message

These arguments were missing.

Change-Id: I8a76e46b2bcfc57f299145954fe72196f5969f29
Signed-off-by: Daniel R. Carvalho <[email protected]>
---
M src/cpu/o3/rename_impl.hh
1 file changed, 4 insertions(+), 2 deletions(-)



diff --git a/src/cpu/o3/rename_impl.hh b/src/cpu/o3/rename_impl.hh
index 007ec87..68150f9 100644
--- a/src/cpu/o3/rename_impl.hh
+++ b/src/cpu/o3/rename_impl.hh
@@ -612,7 +612,8 @@

         if (inst->isLoad()) {
             if (calcFreeLQEntries(tid) <= 0) {
- DPRINTF(Rename, "[tid:%i] Cannot rename due to no free LQ\n"); + DPRINTF(Rename, "[tid:%i] Cannot rename due to no free LQ\n",
+                        tid);
                 source = LQ;
                 incrFullStat(source);
                 break;
@@ -621,7 +622,8 @@

         if (inst->isStore() || inst->isAtomic()) {
             if (calcFreeSQEntries(tid) <= 0) {
- DPRINTF(Rename, "[tid:%i] Cannot rename due to no free SQ\n"); + DPRINTF(Rename, "[tid:%i] Cannot rename due to no free SQ\n",
+                        tid);
                 source = SQ;
                 incrFullStat(source);
                 break;

--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/39075
To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: develop
Gerrit-Change-Id: I8a76e46b2bcfc57f299145954fe72196f5969f29
Gerrit-Change-Number: 39075
Gerrit-PatchSet: 1
Gerrit-Owner: Daniel Carvalho <[email protected]>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s

Reply via email to