BaseSimpleCPU.py (8887:20ea02da9c53) BaseSimpleCPU.py (9338:97b4a2be1e5b)
1# Copyright (c) 2008 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 20 unchanged lines hidden (view full) ---

29from m5.defines import buildEnv
30from m5.params import *
31from BaseCPU import BaseCPU
32from DummyChecker import DummyChecker
33
34class BaseSimpleCPU(BaseCPU):
35 type = 'BaseSimpleCPU'
36 abstract = True
1# Copyright (c) 2008 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 20 unchanged lines hidden (view full) ---

29from m5.defines import buildEnv
30from m5.params import *
31from BaseCPU import BaseCPU
32from DummyChecker import DummyChecker
33
34class BaseSimpleCPU(BaseCPU):
35 type = 'BaseSimpleCPU'
36 abstract = True
37 cxx_header = "cpu/simple/base.hh"
37
38 def addCheckerCpu(self):
39 if buildEnv['TARGET_ISA'] in ['arm']:
40 from ArmTLB import ArmTLB
41
42 self.checker = DummyChecker(workload = self.workload)
43 self.checker.itb = ArmTLB(size = self.itb.size)
44 self.checker.dtb = ArmTLB(size = self.dtb.size)
45 else:
46 print "ERROR: Checker only supported under ARM ISA!"
47 exit(1)
38
39 def addCheckerCpu(self):
40 if buildEnv['TARGET_ISA'] in ['arm']:
41 from ArmTLB import ArmTLB
42
43 self.checker = DummyChecker(workload = self.workload)
44 self.checker.itb = ArmTLB(size = self.itb.size)
45 self.checker.dtb = ArmTLB(size = self.dtb.size)
46 else:
47 print "ERROR: Checker only supported under ARM ISA!"
48 exit(1)