diff options
author | Nathan Binkert <nate@binkert.org> | 2011-01-10 11:11:20 -0800 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2011-01-10 11:11:20 -0800 |
commit | bd18ac82877072a87745aaf7a104e7bb036c6c66 (patch) | |
tree | 0fb980aea5b81d79160105fbf505670be0cf5e72 /configs/ruby | |
parent | 8e262adf4fcc009776810b9795f907fcd468591c (diff) | |
download | gem5-bd18ac82877072a87745aaf7a104e7bb036c6c66.tar.xz |
ruby: get rid of ruby's Debug.hh
Get rid of the Debug class
Get rid of ASSERT and use assert
Use DPRINTFR for ProtocolTrace
Diffstat (limited to 'configs/ruby')
-rw-r--r-- | configs/ruby/Ruby.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/configs/ruby/Ruby.py b/configs/ruby/Ruby.py index e88e8dfb7..398a18844 100644 --- a/configs/ruby/Ruby.py +++ b/configs/ruby/Ruby.py @@ -50,10 +50,6 @@ def define_options(parser): parser.add_option("--use-map", action="store_true", default=False) parser.add_option("--map-levels", type="int", default=4) - # ruby debug cmd line options - parser.add_option("--ruby-debug", action="store_true", default=False) - parser.add_option("--ruby-debug-cycle", type="int", default=1) - parser.add_option("--recycle-latency", type="int", default=10, help="Recycle latency for ruby controller input buffers") @@ -131,10 +127,6 @@ def create_system(options, system, piobus = None, dma_devices = []): network = network, profiler = ruby_profiler, tracer = RubyTracer(), - debug = RubyDebug(filter_string = 'none', - verbosity_string = 'none', - protocol_trace = options.ruby_debug, - start_time = options.ruby_debug_cycle), mem_size = total_mem_size) ruby.cpu_ruby_ports = cpu_sequencers |