Forgot about the tracing cpus for the changes to the base class
authorNathan Binkert <binkertn@umich.edu>
Thu, 4 Nov 2004 03:30:13 +0000 (22:30 -0500)
committerNathan Binkert <binkertn@umich.edu>
Thu, 4 Nov 2004 03:30:13 +0000 (22:30 -0500)
cpu/trace/opt_cpu.cc:
cpu/trace/trace_cpu.cc:
    we don't want to register this cpu since it's not a real cpu

--HG--
extra : convert_revision : 3b87b6ac3dd061018909bf4fdb4e2d611128d07b

cpu/trace/opt_cpu.cc
cpu/trace/trace_cpu.cc

index df4197e26619a9e9abdbcae7fd2bdd515861912d..77211e3827f64a5b6c3725af58ff890d9fb1ee1c 100644 (file)
@@ -48,7 +48,7 @@ OptCPU::OptCPU(const string &name,
                int block_size,
                int cache_size,
                int _assoc)
-    : BaseCPU(name,1), tickEvent(this), trace(_trace),
+    : BaseCPU(name, 1, true), tickEvent(this), trace(_trace),
       numBlks(cache_size/block_size), assoc(_assoc), numSets(numBlks/assoc),
       setMask(numSets - 1)
 {
index b69793a4b587f8f1717d43bf52dc0d60a401e638..f1160337a10ad7248d6b30a5d42d63eafbd856b9 100644 (file)
@@ -47,7 +47,7 @@ TraceCPU::TraceCPU(const string &name,
                    MemInterface *icache_interface,
                    MemInterface *dcache_interface,
                    MemTraceReader *data_trace)
-    : BaseCPU(name, 4), icacheInterface(icache_interface),
+    : BaseCPU(name, 4, true), icacheInterface(icache_interface),
       dcacheInterface(dcache_interface),
       dataTrace(data_trace), outstandingRequests(0), tickEvent(this)
 {