RubyTester.py (9338:97b4a2be1e5b) RubyTester.py (11266:452e10b868ea)
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# Copyright (c) 2009 Advanced Micro Devices, Inc.
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

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

29from MemObject import MemObject
30from m5.params import *
31from m5.proxy import *
32
33class RubyTester(MemObject):
34 type = 'RubyTester'
35 cxx_header = "cpu/testers/rubytest/RubyTester.hh"
36 num_cpus = Param.Int("number of cpus / RubyPorts")
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# Copyright (c) 2009 Advanced Micro Devices, Inc.
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

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

29from MemObject import MemObject
30from m5.params import *
31from m5.proxy import *
32
33class RubyTester(MemObject):
34 type = 'RubyTester'
35 cxx_header = "cpu/testers/rubytest/RubyTester.hh"
36 num_cpus = Param.Int("number of cpus / RubyPorts")
37 cpuDataPort = VectorMasterPort("the cpu data cache ports")
38 cpuInstPort = VectorMasterPort("the cpu inst cache ports")
37 cpuInstDataPort = VectorMasterPort("cpu combo ports to inst & data caches")
38 cpuInstPort = VectorMasterPort("cpu ports to only inst caches")
39 cpuDataPort = VectorMasterPort("cpu ports to only data caches")
39 checks_to_complete = Param.Int(100, "checks to complete")
40 deadlock_threshold = Param.Int(50000, "how often to check for deadlock")
41 wakeup_frequency = Param.Int(10, "number of cycles between wakeups")
42 check_flush = Param.Bool(False, "check cache flushing")
43 system = Param.System(Parent.any, "System we belong to")
40 checks_to_complete = Param.Int(100, "checks to complete")
41 deadlock_threshold = Param.Int(50000, "how often to check for deadlock")
42 wakeup_frequency = Param.Int(10, "number of cycles between wakeups")
43 check_flush = Param.Bool(False, "check cache flushing")
44 system = Param.System(Parent.any, "System we belong to")