O3CPU.py (8887:20ea02da9c53) O3CPU.py (9132:c8d4b0595448)
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
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

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

136 from ArmTLB import ArmTLB
137
138 self.checker = O3Checker(workload=self.workload,
139 exitOnError=False,
140 updateOnError=True,
141 warnOnlyOnLoadError=True)
142 self.checker.itb = ArmTLB(size = self.itb.size)
143 self.checker.dtb = ArmTLB(size = self.dtb.size)
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
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

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

136 from ArmTLB import ArmTLB
137
138 self.checker = O3Checker(workload=self.workload,
139 exitOnError=False,
140 updateOnError=True,
141 warnOnlyOnLoadError=True)
142 self.checker.itb = ArmTLB(size = self.itb.size)
143 self.checker.dtb = ArmTLB(size = self.dtb.size)
144 self.checker.cpu_id = self.cpu_id
144
145 else:
146 print "ERROR: Checker only supported under ARM ISA!"
147 exit(1)
145
146 else:
147 print "ERROR: Checker only supported under ARM ISA!"
148 exit(1)