o3: missing newlines on some dprintfs
This commit is contained in:
parent
4229bce89d
commit
c8b43641fd
4 changed files with 8 additions and 8 deletions
|
@ -118,7 +118,7 @@ DefaultCommit<Impl>::DefaultCommit(O3CPU *_cpu, DerivO3CPUParams *params)
|
|||
if (policy == "aggressive"){
|
||||
commitPolicy = Aggressive;
|
||||
|
||||
DPRINTF(Commit,"Commit Policy set to Aggressive.");
|
||||
DPRINTF(Commit,"Commit Policy set to Aggressive.\n");
|
||||
} else if (policy == "roundrobin"){
|
||||
commitPolicy = RoundRobin;
|
||||
|
||||
|
@ -127,7 +127,7 @@ DefaultCommit<Impl>::DefaultCommit(O3CPU *_cpu, DerivO3CPUParams *params)
|
|||
priority_list.push_back(tid);
|
||||
}
|
||||
|
||||
DPRINTF(Commit,"Commit Policy set to Round Robin.");
|
||||
DPRINTF(Commit,"Commit Policy set to Round Robin.\n");
|
||||
} else if (policy == "oldestready"){
|
||||
commitPolicy = OldestReady;
|
||||
|
||||
|
|
|
@ -90,7 +90,7 @@ void
|
|||
DefaultFetch<Impl>::IcachePort::recvFunctional(PacketPtr pkt)
|
||||
{
|
||||
DPRINTF(Fetch, "DefaultFetch doesn't update its state from a "
|
||||
"functional call.");
|
||||
"functional call.\n");
|
||||
}
|
||||
|
||||
template<class Impl>
|
||||
|
|
|
@ -65,7 +65,7 @@ template <class Impl>
|
|||
void
|
||||
LSQ<Impl>::DcachePort::recvFunctional(PacketPtr pkt)
|
||||
{
|
||||
DPRINTF(LSQ, "LSQ doesn't update things on a recvFunctional.");
|
||||
DPRINTF(LSQ, "LSQ doesn't update things on a recvFunctional.\n");
|
||||
}
|
||||
|
||||
template <class Impl>
|
||||
|
@ -151,7 +151,7 @@ LSQ<Impl>::LSQ(O3CPU *cpu_ptr, IEW *iew_ptr, DerivO3CPUParams *params)
|
|||
maxSQEntries = SQEntries / numThreads;
|
||||
|
||||
DPRINTF(Fetch, "LSQ sharing policy set to Partitioned: "
|
||||
"%i entries per LQ | %i entries per SQ",
|
||||
"%i entries per LQ | %i entries per SQ\n",
|
||||
maxLQEntries,maxSQEntries);
|
||||
} else if (policy == "threshold") {
|
||||
lsqPolicy = Threshold;
|
||||
|
@ -166,7 +166,7 @@ LSQ<Impl>::LSQ(O3CPU *cpu_ptr, IEW *iew_ptr, DerivO3CPUParams *params)
|
|||
maxSQEntries = params->smtLSQThreshold;
|
||||
|
||||
DPRINTF(LSQ, "LSQ sharing policy set to Threshold: "
|
||||
"%i entries per LQ | %i entries per SQ",
|
||||
"%i entries per LQ | %i entries per SQ\n",
|
||||
maxLQEntries,maxSQEntries);
|
||||
} else {
|
||||
assert(0 && "Invalid LSQ Sharing Policy.Options Are:{Dynamic,"
|
||||
|
|
|
@ -88,7 +88,7 @@ SimpleRenameMap::init(unsigned _numLogicalIntRegs,
|
|||
floatRenameMap.resize(numLogicalRegs);
|
||||
|
||||
if (bindRegs) {
|
||||
DPRINTF(Rename, "Binding registers into rename map %i",id);
|
||||
DPRINTF(Rename, "Binding registers into rename map %i\n",id);
|
||||
|
||||
// Initialize the entries in the integer rename map to point to the
|
||||
// physical registers of the same index
|
||||
|
@ -108,7 +108,7 @@ SimpleRenameMap::init(unsigned _numLogicalIntRegs,
|
|||
floatRenameMap[index].physical_reg = freg_idx++;
|
||||
}
|
||||
} else {
|
||||
DPRINTF(Rename, "Binding registers into rename map %i",id);
|
||||
DPRINTF(Rename, "Binding registers into rename map %i\n",id);
|
||||
|
||||
PhysRegIndex temp_ireg = ireg_idx;
|
||||
|
||||
|
|
Loading…
Reference in a new issue