Fix the caches not working in the regression
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
This commit is contained in:
parent
3329f6f639
commit
6eebfda2d9
3 changed files with 5 additions and 3 deletions
|
@ -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']
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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())
|
||||
|
|
Loading…
Reference in a new issue