Fix the caches not working in the regression
authorRon Dreslinski <rdreslin@umich.edu>
Thu, 17 Aug 2006 03:46:54 +0000 (23:46 -0400)
committerRon Dreslinski <rdreslin@umich.edu>
Thu, 17 Aug 2006 03:46:54 +0000 (23:46 -0400)
src/python/m5/objects/BaseCPU.py:
    Make mem parameter a MemObject, not just a PhysicalMemory
    Fix a reference not using self
tests/configs/simple-atomic.py:
    Set the mem paramter
tests/configs/simple-timing.py:
    Set the mem parameter

--HG--
extra : convert_revision : 6bd9df36831a1c5bafc9e88ab945c2ebe91db785

src/python/m5/objects/BaseCPU.py
tests/configs/simple-atomic.py
tests/configs/simple-timing.py

index 7906156a25d56e92716e40d6dd55942ad3ad45e6..88a8bf5e346d0318c2d9a916cd232d8be786e77f 100644 (file)
@@ -6,7 +6,7 @@ from Bus import Bus
 class BaseCPU(SimObject):
     type = 'BaseCPU'
     abstract = True
-    mem = Param.PhysicalMemory(Parent.any, "memory")
+    mem = Param.MemObject(Parent.any, "memory")
 
     system = Param.System(Parent.any, "system object")
     if build_env['FULL_SYSTEM']:
@@ -43,11 +43,12 @@ class BaseCPU(SimObject):
         self.icache_port = ic.cpu_side
         self.dcache_port = dc.cpu_side
         self._mem_ports = ['icache.mem_side', 'dcache.mem_side']
+#        self.mem = dc
 
     def addTwoLevelCacheHierarchy(self, ic, dc, l2c):
         self.addPrivateSplitL1Caches(ic, dc)
         self.toL2Bus = Bus()
         self.connectMemPorts(self.toL2Bus)
         self.l2cache = l2c
-        self.l2cache.cpu_side = toL2Bus.port
+        self.l2cache.cpu_side = self.toL2Bus.port
         self._mem_ports = ['l2cache.mem_side']
index 9b7ce1429113f9b6bcf9c140edfd9ae10feef206..2bf67f3b11647a535da32e21f6cba153e4bcbf5e 100644 (file)
@@ -34,5 +34,6 @@ system = System(cpu = AtomicSimpleCPU(),
                 membus = Bus())
 system.physmem.port = system.membus.port
 system.cpu.connectMemPorts(system.membus)
+system.cpu.mem = system.physmem
 
 root = Root(system = system)
index 823a8aec1e3810eeaa4d37fbfd22855683283bf9..78dfabe3bd54f8be14d9e9bff52203f8e2548994 100644 (file)
@@ -39,7 +39,7 @@ class MyCache(BaseCache):
 cpu = TimingSimpleCPU()
 cpu.addTwoLevelCacheHierarchy(MyCache(size = '128kB'), MyCache(size = '256kB'),
                               MyCache(size = '2MB'))
-
+cpu.mem = cpu.dcache
 system = System(cpu = cpu,
                 physmem = PhysicalMemory(),
                 membus = Bus())