summaryrefslogtreecommitdiff
path: root/cpu/o3
diff options
context:
space:
mode:
authorKevin Lim <ktlim@umich.edu>2006-04-24 17:11:31 -0400
committerKevin Lim <ktlim@umich.edu>2006-04-24 17:11:31 -0400
commit31e09892d750d0e6dc7de3d455e34808c159a420 (patch)
tree13e98cd1a807152dd271335a323791dc7debdc88 /cpu/o3
parente704960c80033dd008907caa7c24742a1020d302 (diff)
downloadgem5-31e09892d750d0e6dc7de3d455e34808c159a420.tar.xz
Include option for disabling PC symbols.
cpu/inst_seq.hh: cpu/o3/cpu.cc: cpu/ozone/cpu_builder.cc: cpu/ozone/thread_state.hh: SE build fixes. --HG-- extra : convert_revision : a4df6128533105f849b5469f62d83dffe299b7df
Diffstat (limited to 'cpu/o3')
-rw-r--r--cpu/o3/cpu.cc10
1 files changed, 4 insertions, 6 deletions
diff --git a/cpu/o3/cpu.cc b/cpu/o3/cpu.cc
index d322037bc..ac8c4236e 100644
--- a/cpu/o3/cpu.cc
+++ b/cpu/o3/cpu.cc
@@ -123,7 +123,7 @@ FullO3CPU<Impl>::FullO3CPU(Params *params)
physmem(system->physmem),
mem(params->mem),
#else
- pTable(params->pTable),
+// pTable(params->pTable),
#endif // FULL_SYSTEM
icacheInterface(params->icacheInterface),
@@ -238,8 +238,8 @@ FullO3CPU<Impl>::FullO3CPU(Params *params)
// Setup the page table for whichever stages need it.
#if !FULL_SYSTEM
- fetch.setPageTable(pTable);
- iew.setPageTable(pTable);
+// fetch.setPageTable(pTable);
+// iew.setPageTable(pTable);
#endif
// Setup the ROB for whichever stages need it.
@@ -885,11 +885,9 @@ template <class Impl>
void
FullO3CPU<Impl>::removeFrontInst(DynInstPtr &inst)
{
- unsigned tid = inst->threadNumber;
-
DPRINTF(FullCPU, "FullCPU: Removing committed instruction [tid:%i] PC %#x "
"[sn:%lli]\n",
- tid, inst->readPC(), inst->seqNum);
+ inst->threadNumber, inst->readPC(), inst->seqNum);
removeInstsThisCycle = true;