o3: missing newlines on some dprintfs
authorKorey Sewell <ksewell@umich.edu>
Sat, 11 Jun 2011 02:15:32 +0000 (22:15 -0400)
committerKorey Sewell <ksewell@umich.edu>
Sat, 11 Jun 2011 02:15:32 +0000 (22:15 -0400)
src/cpu/o3/commit_impl.hh
src/cpu/o3/fetch_impl.hh
src/cpu/o3/lsq_impl.hh
src/cpu/o3/rename_map.cc

index 9e7dd65df872a5bc72956ad1a4fe92a364aaf278..9225f525f0a9dbb1d306b6a6c56799d755eeeac1 100644 (file)
@@ -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;
 
index d3a2fc83f9ecca632cc3b2adb430f4ff7205705b..8b1797f111e713e8e048684f2fc84f8412a76496 100644 (file)
@@ -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>
index 8dd2405571104e8f90456cf5a7f9592068784f5d..41b0f3041a6e114e178442508b513e9b6588d7cb 100644 (file)
@@ -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,"
index cc5044c201c7cb460b7e1b38ec569ec4131b1307..8508071b42016c3f606d69ce26d5f1366cdd88b6 100644 (file)
@@ -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;