gem5/src/mem/ruby
Brad Beckmann e4218dd08f ruby: Re-enabled orion power models
Removed the dummy power function implementations so that Orion can implement
them correctly.  Since Orion lacks modular design, this patch simply enables
scons to compile it.  There are no python configuration changes in this patch.
2010-01-29 20:29:33 -08:00
..
buffers ruby: new atomics implementation 2010-01-19 17:11:36 -06:00
common ruby: added the GEMS ruby tester 2010-01-29 20:29:23 -08:00
eventqueue ruby: Converted the sequencer deadlock event to m5 eventq 2010-01-29 20:29:19 -08:00
filters ruby: removed all refs to old RubyConfig 2009-07-18 18:20:03 -05:00
network ruby: Re-enabled orion power models 2010-01-29 20:29:33 -08:00
profiler ruby: cleaned up ruby profilers 2010-01-29 20:29:22 -08:00
recorder ruby: Convered ruby tracing support usage of sequencer 2010-01-29 20:29:20 -08:00
slicc_interface ruby: Ruby changes required to use the python config system 2010-01-29 20:29:19 -08:00
storebuffer ruby: Fix RubyMemory to work with the newer ruby. 2009-07-06 15:49:47 -07:00
system ruby: Converted Garnet to M5 configuration 2010-01-29 20:29:32 -08:00
tester Fixed the licences plus minor fixes for compilation 2009-07-22 20:28:32 -05:00
Decomissioning_note ruby: Import ruby and slicc from GEMS 2009-05-11 10:38:43 -07:00
libruby.cc ruby: added data print to ruby request 2010-01-29 20:29:23 -08:00
libruby.hh merge 2010-01-19 15:48:12 -06:00
libruby_internal.hh ruby: Import the latest ruby changes from gems. 2009-07-06 15:49:47 -07:00
README.debugging ruby: Import ruby and slicc from GEMS 2009-05-11 10:38:43 -07:00
SConscript ruby: Ruby changes required to use the python config system 2010-01-29 20:29:19 -08:00
SConsopts ruby: Fix RubyMemory to work with the newer ruby. 2009-07-06 15:49:47 -07:00

# ------ Debugging the Ruby Tester ------

You can compile Ruby with debugging turned on.

cd ruby
[vim or emacs] Makefile

Change OPT_FLAGS to "-g -O0" (the first OPT_FLAGS line). Make
sure all the other OPT_FLAGS lines are commented out.

Change DEBUG_FLAGS to "-DRUBY_DEBUG=true". (Just uncomment the
first DEBUG_FLAGS line, and comment out the second DEBUG_FLAGS
line.)

You can choose which component or components to debug, and the
level of verbosity. For example,

"x86-linux/generated/MOSI_SMP_bcast/bin/tester.exec -l 100000 -v med -c n"

gives you debugging information about the network component at
the medium verbosity level. -v selects the verbosity, which may
be low, med, high, or none. -c selects the component or
components.

"x86-linux/generated/MOSI_SMP_bcast/bin/tester.exec -l 100000 -v med -c nSt"

debugs the network, the sequencer, and the tester.

For a list of the components you can debug, just run the tester with
no arguments, and it will display a list of valid components. The
components are defined in ruby/common/Debug.def.

The protocol debug trace is especially useful for debugging cache coherence protocols.  This must be enabled at compile-time by ensuring that PROTOCOL_DEBUG_TRACE is set to true for rubyconfig.defaults (if running in Simics) or tester.defaults.  You must specify the time to start tracing.  The following starts the protocol trace immediately (at time 1)

"x86-linux/generated/MOSI_SMP_bcast/bin/tester.exec -l 100000 -s 1"

Also, if something seems to be wrong and you're not sure where to
start looking, it may help to run the tester for a longer time,
e.g.

"x86-linux/generated/MOSI_SMP_bcast/bin/tester.exec -l 500000"

This may help because some problems eventually show up as
deadlock, but the tester has to run for a long time before a
deadlock is detected.

Once your simulator has succeeded on the tester for a certain
number of cycles, say 1000000, you may want to set the
RANDOMIZATION variable in ruby/config/tester.defaults to "true"
for more thorough testing.  However, RANDOMIZATION may not work in
all situations because it overrides some of the ordering in the
network and may break your simulator in ways you don't like.  For
example, messages are added to MessageBuffers with random
latency.

By default the tester driver is a generator that issues random store
and load requests. This driver does a good job of stressing the
cache coherency protocol by issuing racy store requests from multiple
processors to a cache line then checks the stores with a single load.

Other tester drivers are available.  By setting the g_SYNTHETIC_DRIVER
to true in ruby/config/tester.defaults, you enable a tester that generates
racy lock requests for a number of locks indicated by g_synthetic_locks.

Another tester driver is a series of non-racy deterministic testers.  By
setting the g_DETERMINISTIC_DRIVER in ruby/config/tester.defaults to true,
you enable the deterministic tester.  The deterministic tester can do
different types of deterministic tests as specified by g_SpecifiedGenerator
string.  The deterministic tester works best when RANDOMIZATION is set to
false.  To easily track the queues being used with the deterministic tester,
use the following debug flags "-v low -c nq".

# ------ Debugging Ruby in Simics ------

When you're running Simics, the debugging components and
verbosity levels are the same. However, the way you communicate
with Ruby changes.

See the README.quickstart for information on compiling the Ruby
module and loading it into Simics. Once you've got Simics
running, with the Ruby module loaded, you can set up Ruby
debugging.

To set the debugging verbosity level, run:

simics> ruby0.debug-verb med

To set the debugging components, run: (see common/Debug.def for complete list
                                       of component shortcuts)

simics> ruby0.debug-filter n

(NOTE: sometimes simics will interpret a single letter as a
command; e.g. expanding "p" into "print". If simics gives you an
error when setting the debug filter, try setting it like so:
simics> ruby0.debug-filter "n")

This gives the same kind of debugging information as running the
tester with "-v med -c n".

You can also send the debugging output to a file (may be a good
idea, since there's a lot of it). To do this, run:

simics> ruby0.debug-output-file <filename>