summaryrefslogtreecommitdiff
path: root/src/cpu/inorder/resources/agen_unit.cc
diff options
context:
space:
mode:
authorKorey Sewell <ksewell@umich.edu>2009-03-04 13:17:09 -0500
committerKorey Sewell <ksewell@umich.edu>2009-03-04 13:17:09 -0500
commit7c8d54421665ccbc204487cb6a9faa31c1b3c243 (patch)
treecb7fccabb1f88bb8567575ff20125b183fb645df /src/cpu/inorder/resources/agen_unit.cc
parent30cd2d21fad6c12e2540672f315f561c9a1643ec (diff)
downloadgem5-7c8d54421665ccbc204487cb6a9faa31c1b3c243.tar.xz
Give each resource in InOrder it's own TraceFlag instead of just standard 'Resource' flag
Diffstat (limited to 'src/cpu/inorder/resources/agen_unit.cc')
-rw-r--r--src/cpu/inorder/resources/agen_unit.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cpu/inorder/resources/agen_unit.cc b/src/cpu/inorder/resources/agen_unit.cc
index 8e3d25656..f462b12ea 100644
--- a/src/cpu/inorder/resources/agen_unit.cc
+++ b/src/cpu/inorder/resources/agen_unit.cc
@@ -54,7 +54,7 @@ AGENUnit::execute(int slot_num)
{
// Load/Store Instruction
if (inst->isMemRef()) {
- DPRINTF(Resource, "[tid:%i] Generating Address for [sn:%i] (%s).\n",
+ DPRINTF(InOrderAGEN, "[tid:%i] Generating Address for [sn:%i] (%s).\n",
tid, inst->seqNum, inst->staticInst->getName());
@@ -67,13 +67,13 @@ AGENUnit::execute(int slot_num)
inst->setMemAddr(inst->getEA());
//inst->setExecuted();
- DPRINTF(Resource, "[tid:%i] [sn:%i] Effective address calculated to be: "
+ DPRINTF(InOrderAGEN, "[tid:%i] [sn:%i] Effective address calculated to be: "
"%#x.\n", tid, inst->seqNum, inst->getEA());
} else if (inst->isStore()) {
fault = inst->calcEA();
inst->setMemAddr(inst->getEA());
- DPRINTF(Resource, "[tid:%i] [sn:%i] Effective address calculated to be: "
+ DPRINTF(InOrderAGEN, "[tid:%i] [sn:%i] Effective address calculated to be: "
"%#x.\n", tid, inst->seqNum, inst->getEA());
} else {
panic("Unexpected memory type!\n");
@@ -86,7 +86,7 @@ AGENUnit::execute(int slot_num)
}
}
} else {
- DPRINTF(Resource, "[tid:] Ignoring non-memory instruction [sn:%i].\n", tid, seq_num);
+ DPRINTF(InOrderAGEN, "[tid:] Ignoring non-memory instruction [sn:%i].\n", tid, seq_num);
agen_req->done();
}
}