s/cpu_id/cpuId in o3 (to be consistent and match style), also fix some typos in
authorLisa Hsu <hsul@eecs.umich.edu>
Thu, 23 Oct 2008 20:49:17 +0000 (16:49 -0400)
committerLisa Hsu <hsul@eecs.umich.edu>
Thu, 23 Oct 2008 20:49:17 +0000 (16:49 -0400)
comments.

src/cpu/o3/cpu.cc
src/cpu/o3/cpu.hh
src/mem/cache/cache.hh

index 04f344930206ffbd56f71bbd33c42df97b8113d1..1b7a3a17ce5669ac652a4d13246ec5087ec602b0 100644 (file)
@@ -62,7 +62,7 @@ class BaseCPUParams;
 using namespace TheISA;
 
 BaseO3CPU::BaseO3CPU(BaseCPUParams *params)
-    : BaseCPU(params), cpu_id(0)
+    : BaseCPU(params), cpuId(0)
 {
 }
 
index 8cfc9affa40ad339d386f35797eff6704d87d502..d1cc8bea5186e10f7af3d341a05f538ad6252df0 100644 (file)
@@ -76,13 +76,13 @@ class BaseO3CPU : public BaseCPU
     void regStats();
 
     /** Sets this CPU's ID. */
-    void setCpuId(int id) { cpu_id = id; }
+    void setCpuId(int id) { cpuId = id; }
 
     /** Reads this CPU's ID. */
-    int readCpuId() { return cpu_id; }
+    int readCpuId() { return cpuId; }
 
   protected:
-    int cpu_id;
+    int cpuId;
 };
 
 /**
index 510e67ba60bde3fb1d9b9d2526274245b9b5eb82..4db5230f8c896e2288fa396f05fe12f82afabb41 100644 (file)
@@ -137,7 +137,7 @@ class Cache : public BaseCache
     BlkType *tempBlock;
 
     /**
-     * Can this cache should allocate a block on a line-sized write miss.
+     * This cache should allocate a block on a line-sized write miss.
      */
     const bool doFastWrites;
 
@@ -149,8 +149,7 @@ class Cache : public BaseCache
      * @param lat The latency of the access.
      * @param writebacks List for any writebacks that need to be performed.
      * @param update True if the replacement data should be updated.
-     * @return Pointer to the cache block touched by the request. NULL if it
-     * was a miss.
+     * @return Boolean indicating whether the request was satisfied.
      */
     bool access(PacketPtr pkt, BlkType *&blk,
                 int &lat, PacketList &writebacks);