Re: [gem5-dev] Review Request: Enabled instruction fetch pipelining.

2011-05-24 Thread Gabe Black

---
This is an automatically generated e-mail. To reply, visit:
http://reviews.m5sim.org/r/718/#review1260
---


Have you run the regressions for the various ISAs with this patch? Have you 
tried the applicable ISAs with fetch pipelines deeper than the default (one 
stage?). The fetch code is subjected to a lot of corner cases and would likely 
be easy to break in subtle ways, so we need to be really careful. Also, have 
you considered making this an external component to the CPU? O3 is already very 
complicated, so if it could make sense to compartmentalize this as another 
component that would help.

- Gabe


On 2011-05-24 12:01:29, Lisa Hsu wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> http://reviews.m5sim.org/r/718/
> ---
> 
> (Updated 2011-05-24 12:01:29)
> 
> 
> Review request for Default, Ali Saidi, Gabe Black, Steve Reinhardt, and 
> Nathan Binkert.
> 
> 
> Summary
> ---
> 
> Enabled instruction fetch pipelining.
> 
> This patch is from one of our co-ops who has since finished her term, Yasuko 
> Watanabe. I don't personally know much about it. In the end, I'll push in her 
> name.  Thanks.
> 
> 
> Diffs
> -
> 
>   src/cpu/o3/fetch.hh 54a65799e4c1 
>   src/cpu/o3/fetch_impl.hh 54a65799e4c1 
> 
> Diff: http://reviews.m5sim.org/r/718/diff
> 
> 
> Testing
> ---
> 
> 
> Thanks,
> 
> Lisa
> 
>

___
gem5-dev mailing list
gem5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/gem5-dev


[gem5-dev] changeset in m5: Name: Replace M5 with gem5 in a few places it's...

2011-05-24 Thread Gabe Black
changeset dda2a88eb7c4 in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=dda2a88eb7c4
description:
Name: Replace M5 with gem5 in a few places it's printed on startup.

diffstat:

 src/python/m5/main.py |  15 ---
 1 files changed, 8 insertions(+), 7 deletions(-)

diffs (45 lines):

diff -r 8b0eee09deaf -r dda2a88eb7c4 src/python/m5/main.py
--- a/src/python/m5/main.py Tue May 24 21:19:31 2011 -0700
+++ b/src/python/m5/main.py Wed May 25 01:32:07 2011 -0700
@@ -34,10 +34,10 @@
 
 __all__ = [ 'options', 'arguments', 'main' ]
 
-usage="%prog [m5 options] script.py [script options]"
+usage="%prog [gem5 options] script.py [script options]"
 version="%prog 2.0"
 brief_copyright='''
-Copyright (c) 2001-2008
+Copyright (c) 2001-2011
 The Regents of The University of Michigan
 All Rights Reserved
 '''
@@ -130,7 +130,7 @@
 return options,arguments
 
 def interact(scope):
-banner = "M5 Interactive Console"
+banner = "gem5 Interactive Console"
 sys.argv = []
 try:
 from IPython.Shell import IPShellEmbed
@@ -263,14 +263,15 @@
 
 verbose = options.verbose - options.quiet
 if options.verbose >= 0:
-print "M5 Simulator System"
+print "gem5 Simulator System"
 print brief_copyright
 print
 
-print "M5 compiled %s" % defines.compileDate;
+print "gem5 compiled %s" % defines.compileDate;
 
-print "M5 started %s" % datetime.datetime.now().strftime("%b %e %Y %X")
-print "M5 executing on %s" % socket.gethostname()
+print "gem5 started %s" % \
+datetime.datetime.now().strftime("%b %e %Y %X")
+print "gem5 executing on %s" % socket.gethostname()
 
 print "command line:",
 for argv in sys.argv:
___
gem5-dev mailing list
gem5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/gem5-dev


Re: [gem5-dev] Review Request: Name: Replace M5 with gem5 in a few places it's printed on startup.

2011-05-24 Thread Gabe Black


> On 2011-05-24 18:41:14, Ali Saidi wrote:
> > src/python/m5/main.py, line 40
> > 
> >
> > This really should be the something else, maybe remove university of 
> > michigan and put see COPYRIGHT file (although that needs an update too).

I think you're right, but that's a larger issue than what I'm trying to handle 
with this patch. We'd need to fix up the copyright file like we've talked about 
in the past.


- Gabe


---
This is an automatically generated e-mail. To reply, visit:
http://reviews.m5sim.org/r/713/#review1257
---


On 2011-05-24 00:42:10, Gabe Black wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> http://reviews.m5sim.org/r/713/
> ---
> 
> (Updated 2011-05-24 00:42:10)
> 
> 
> Review request for Default, Ali Saidi, Gabe Black, Steve Reinhardt, and 
> Nathan Binkert.
> 
> 
> Summary
> ---
> 
> Name: Replace M5 with gem5 in a few places it's printed on startup.
> 
> 
> Diffs
> -
> 
>   src/python/m5/main.py 76095b05f4da 
> 
> Diff: http://reviews.m5sim.org/r/713/diff
> 
> 
> Testing
> ---
> 
> 
> Thanks,
> 
> Gabe
> 
>

___
gem5-dev mailing list
gem5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/gem5-dev


[gem5-dev] changeset in m5: style: Make the style hook work in directories ...

2011-05-24 Thread Nathan Binkert
changeset 8b0eee09deaf in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=8b0eee09deaf
description:
style: Make the style hook work in directories other than the root.

diffstat:

 util/style.py |  13 -
 1 files changed, 8 insertions(+), 5 deletions(-)

diffs (43 lines):

diff -r 76095b05f4da -r 8b0eee09deaf util/style.py
--- a/util/style.py Mon May 23 14:29:23 2011 -0700
+++ b/util/style.py Tue May 24 21:19:31 2011 -0700
@@ -400,10 +400,12 @@
 if skip(fname):
 continue
 
-if whitespace.apply(fname, prompt):
+fpath = joinpath(repo.root, fname)
+
+if whitespace.apply(fpath, prompt):
 return True
 
-if sorted_includes.apply(fname, prompt):
+if sorted_includes.apply(fpath, prompt):
 return True
 
 try:
@@ -416,12 +418,13 @@
 if skip(fname):
 continue
 
+fpath = joinpath(repo.root, fname)
 regions = modregions(wctx, fname)
 
-if whitespace.apply(fname, prompt, regions):
+if whitespace.apply(fpath, prompt, regions):
 return True
 
-if sorted_includes.apply(fname, prompt, regions):
+if sorted_includes.apply(fpath, prompt, regions):
 return True
 
 return False
@@ -434,7 +437,7 @@
 verbose = 0
 stats = ValidationStats()
 for f in modified + added:
-validate(f, stats, verbose, None)
+validate(joinpath(repo.root, f), stats, verbose, None)
 
 if stats:
 stats.dump()
___
gem5-dev mailing list
gem5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/gem5-dev


Re: [gem5-dev] Review Request: style: Make the style hook work in directories other than the root.

2011-05-24 Thread Ali Saidi

---
This is an automatically generated e-mail. To reply, visit:
http://reviews.m5sim.org/r/714/#review1258
---

Ship it!


hooray!

- Ali


On 2011-05-24 10:15:13, Nathan Binkert wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> http://reviews.m5sim.org/r/714/
> ---
> 
> (Updated 2011-05-24 10:15:13)
> 
> 
> Review request for Default, Ali Saidi, Gabe Black, Steve Reinhardt, and 
> Nathan Binkert.
> 
> 
> Summary
> ---
> 
> style: Make the style hook work in directories other than the root.
> 
> 
> Diffs
> -
> 
>   util/style.py 3f37cc5d25bc 
> 
> Diff: http://reviews.m5sim.org/r/714/diff
> 
> 
> Testing
> ---
> 
> Quick Regressions, Compile everything
> 
> 
> Thanks,
> 
> Nathan
> 
>

___
gem5-dev mailing list
gem5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/gem5-dev


Re: [gem5-dev] Review Request: Name: Replace M5 with gem5 in a few places it's printed on startup.

2011-05-24 Thread Ali Saidi

---
This is an automatically generated e-mail. To reply, visit:
http://reviews.m5sim.org/r/713/#review1257
---

Ship it!



src/python/m5/main.py


This really should be the something else, maybe remove university of 
michigan and put see COPYRIGHT file (although that needs an update too).


- Ali


On 2011-05-24 00:42:10, Gabe Black wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> http://reviews.m5sim.org/r/713/
> ---
> 
> (Updated 2011-05-24 00:42:10)
> 
> 
> Review request for Default, Ali Saidi, Gabe Black, Steve Reinhardt, and 
> Nathan Binkert.
> 
> 
> Summary
> ---
> 
> Name: Replace M5 with gem5 in a few places it's printed on startup.
> 
> 
> Diffs
> -
> 
>   src/python/m5/main.py 76095b05f4da 
> 
> Diff: http://reviews.m5sim.org/r/713/diff
> 
> 
> Testing
> ---
> 
> 
> Thanks,
> 
> Gabe
> 
>

___
gem5-dev mailing list
gem5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/gem5-dev


[gem5-dev] Review Request: Enabled instruction fetch pipelining.

2011-05-24 Thread Lisa Hsu

---
This is an automatically generated e-mail. To reply, visit:
http://reviews.m5sim.org/r/718/
---

Review request for Default, Ali Saidi, Gabe Black, Steve Reinhardt, and Nathan 
Binkert.


Summary
---

Enabled instruction fetch pipelining.

This patch is from one of our co-ops who has since finished her term, Yasuko 
Watanabe. I don't personally know much about it. In the end, I'll push in her 
name.  Thanks.


Diffs
-

  src/cpu/o3/fetch.hh 54a65799e4c1 
  src/cpu/o3/fetch_impl.hh 54a65799e4c1 

Diff: http://reviews.m5sim.org/r/718/diff


Testing
---


Thanks,

Lisa

___
gem5-dev mailing list
gem5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/gem5-dev


[gem5-dev] Review Request: slicc: add a protocol statement and an include statement

2011-05-24 Thread Nathan Binkert

---
This is an automatically generated e-mail. To reply, visit:
http://reviews.m5sim.org/r/717/
---

Review request for Default, Ali Saidi, Gabe Black, Steve Reinhardt, and Nathan 
Binkert.


Summary
---

slicc: add a protocol statement and an include statement
All protocols must specify their name
The include statement allows any file to include another file.


Diffs
-

  src/mem/protocol/MESI_CMP_directory.slicc 3f37cc5d25bc 
  src/mem/protocol/MI_example.slicc 3f37cc5d25bc 
  src/mem/protocol/MOESI_CMP_directory.slicc 3f37cc5d25bc 
  src/mem/protocol/MOESI_CMP_token.slicc 3f37cc5d25bc 
  src/mem/protocol/MOESI_hammer.slicc 3f37cc5d25bc 
  src/mem/protocol/Network_test.slicc 3f37cc5d25bc 
  src/mem/protocol/RubySlicc_interfaces.slicc 3f37cc5d25bc 
  src/mem/protocol/SConscript 3f37cc5d25bc 
  src/mem/slicc/main.py 3f37cc5d25bc 
  src/mem/slicc/parser.py 3f37cc5d25bc 

Diff: http://reviews.m5sim.org/r/717/diff


Testing
---

Quick Regressions, Compile everything


Thanks,

Nathan

___
gem5-dev mailing list
gem5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/gem5-dev


[gem5-dev] Review Request: slicc: cleanup slicc code and make it less verbose

2011-05-24 Thread Nathan Binkert

---
This is an automatically generated e-mail. To reply, visit:
http://reviews.m5sim.org/r/716/
---

Review request for Default, Ali Saidi, Gabe Black, Steve Reinhardt, and Nathan 
Binkert.


Summary
---

slicc: cleanup slicc code and make it less verbose


Diffs
-

  src/mem/protocol/SConscript 3f37cc5d25bc 
  src/mem/slicc/ast/AST.py 3f37cc5d25bc 
  src/mem/slicc/main.py 3f37cc5d25bc 
  src/mem/slicc/parser.py 3f37cc5d25bc 
  src/mem/slicc/symbols/SymbolTable.py 3f37cc5d25bc 
  src/mem/slicc/util.py 3f37cc5d25bc 
  src/python/m5/util/__init__.py 3f37cc5d25bc 

Diff: http://reviews.m5sim.org/r/716/diff


Testing
---

Quick Regressions, Compile everything


Thanks,

Nathan

___
gem5-dev mailing list
gem5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/gem5-dev


[gem5-dev] Review Request: grammar: better encapsulation of a grammar and parsing

2011-05-24 Thread Nathan Binkert

---
This is an automatically generated e-mail. To reply, visit:
http://reviews.m5sim.org/r/715/
---

Review request for Default, Ali Saidi, Gabe Black, Steve Reinhardt, and Nathan 
Binkert.


Summary
---

grammar: better encapsulation of a grammar and parsing
This makes it possible to use the grammar multiple times and use the multiple
instances concurrently.  This makes implementing an include statement as part
of a grammar possible.


Diffs
-

  src/arch/isa_parser.py 3f37cc5d25bc 
  src/mem/slicc/ast/AST.py 3f37cc5d25bc 
  src/mem/slicc/parser.py 3f37cc5d25bc 
  src/python/m5/util/grammar.py 3f37cc5d25bc 

Diff: http://reviews.m5sim.org/r/715/diff


Testing
---

Quick Regressions, Compile everything


Thanks,

Nathan

___
gem5-dev mailing list
gem5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/gem5-dev


[gem5-dev] Review Request: style: Make the style hook work in directories other than the root.

2011-05-24 Thread Nathan Binkert

---
This is an automatically generated e-mail. To reply, visit:
http://reviews.m5sim.org/r/714/
---

Review request for Default, Ali Saidi, Gabe Black, Steve Reinhardt, and Nathan 
Binkert.


Summary
---

style: Make the style hook work in directories other than the root.


Diffs
-

  util/style.py 3f37cc5d25bc 

Diff: http://reviews.m5sim.org/r/714/diff


Testing
---

Quick Regressions, Compile everything


Thanks,

Nathan

___
gem5-dev mailing list
gem5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/gem5-dev


Re: [gem5-dev] Review Request: Name: Replace M5 with gem5 in a few places it's printed on startup.

2011-05-24 Thread Steve Reinhardt

---
This is an automatically generated e-mail. To reply, visit:
http://reviews.m5sim.org/r/713/#review1256
---

Ship it!



src/python/m5/main.py


This should be "gem5 options" here


- Steve


On 2011-05-24 00:42:10, Gabe Black wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> http://reviews.m5sim.org/r/713/
> ---
> 
> (Updated 2011-05-24 00:42:10)
> 
> 
> Review request for Default, Ali Saidi, Gabe Black, Steve Reinhardt, and 
> Nathan Binkert.
> 
> 
> Summary
> ---
> 
> Name: Replace M5 with gem5 in a few places it's printed on startup.
> 
> 
> Diffs
> -
> 
>   src/python/m5/main.py 76095b05f4da 
> 
> Diff: http://reviews.m5sim.org/r/713/diff
> 
> 
> Testing
> ---
> 
> 
> Thanks,
> 
> Gabe
> 
>

___
gem5-dev mailing list
gem5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/gem5-dev


[gem5-dev] Cron /z/m5/regression/do-regression quick

2011-05-24 Thread Cron Daemon
* build/ALPHA_SE/tests/opt/quick/00.hello/alpha/linux/simple-timing passed.
* build/ALPHA_SE/tests/opt/quick/20.eio-short/alpha/eio/simple-atomic 
passed.
* build/ALPHA_SE/tests/opt/quick/00.hello/alpha/linux/inorder-timing passed.
* build/ALPHA_SE/tests/opt/quick/30.eio-mp/alpha/eio/simple-atomic-mp 
passed.
* build/ALPHA_SE/tests/opt/quick/30.eio-mp/alpha/eio/simple-timing-mp 
passed.
* build/ALPHA_SE/tests/opt/quick/01.hello-2T-smt/alpha/linux/o3-timing 
passed.
* build/ALPHA_SE/tests/opt/quick/00.hello/alpha/tru64/simple-timing passed.
* build/ALPHA_SE/tests/opt/quick/60.rubytest/alpha/linux/rubytest-ruby 
passed.
* build/ALPHA_SE/tests/opt/quick/00.hello/alpha/linux/o3-timing passed.
* build/ALPHA_SE/tests/opt/quick/00.hello/alpha/linux/simple-timing-ruby 
passed.
* build/ALPHA_SE/tests/opt/quick/20.eio-short/alpha/eio/simple-timing 
passed.
* build/ALPHA_SE/tests/opt/quick/00.hello/alpha/linux/simple-atomic passed.
* build/ALPHA_SE/tests/opt/quick/00.hello/alpha/tru64/simple-timing-ruby 
passed.
* build/ALPHA_SE/tests/opt/quick/00.hello/alpha/tru64/o3-timing passed.
* build/ALPHA_SE/tests/opt/quick/00.hello/alpha/tru64/simple-atomic passed.
* build/ALPHA_SE/tests/opt/quick/50.memtest/alpha/linux/memtest-ruby passed.
* 
build/ALPHA_SE_MOESI_hammer/tests/opt/quick/60.rubytest/alpha/linux/rubytest-ruby-MOESI_hammer
 passed.
* 
build/ALPHA_SE_MOESI_hammer/tests/opt/quick/00.hello/alpha/tru64/simple-timing-ruby-MOESI_hammer
 passed.
* 
build/ALPHA_SE_MOESI_hammer/tests/opt/quick/00.hello/alpha/linux/simple-timing-ruby-MOESI_hammer
 passed.
* build/ALPHA_SE/tests/opt/quick/50.memtest/alpha/linux/memtest passed.
* 
build/ALPHA_SE_MESI_CMP_directory/tests/opt/quick/60.rubytest/alpha/linux/rubytest-ruby-MESI_CMP_directory
 passed.
* 
build/ALPHA_SE_MESI_CMP_directory/tests/opt/quick/00.hello/alpha/tru64/simple-timing-ruby-MESI_CMP_directory
 passed.
* 
build/ALPHA_SE_MESI_CMP_directory/tests/opt/quick/00.hello/alpha/linux/simple-timing-ruby-MESI_CMP_directory
 passed.
* 
build/ALPHA_SE_MOESI_hammer/tests/opt/quick/50.memtest/alpha/linux/memtest-ruby-MOESI_hammer
 passed.
* 
build/ALPHA_SE_MOESI_CMP_directory/tests/opt/quick/60.rubytest/alpha/linux/rubytest-ruby-MOESI_CMP_directory
 passed.
* 
build/ALPHA_SE_MOESI_CMP_directory/tests/opt/quick/00.hello/alpha/tru64/simple-timing-ruby-MOESI_CMP_directory
 passed.
* 
build/ALPHA_SE_MOESI_CMP_directory/tests/opt/quick/00.hello/alpha/linux/simple-timing-ruby-MOESI_CMP_directory
 passed.
* 
build/ALPHA_SE_MOESI_CMP_token/tests/opt/quick/60.rubytest/alpha/linux/rubytest-ruby-MOESI_CMP_token
 passed.
* 
build/ALPHA_SE_MOESI_CMP_token/tests/opt/quick/00.hello/alpha/linux/simple-timing-ruby-MOESI_CMP_token
 passed.
* 
build/ALPHA_SE_MOESI_CMP_token/tests/opt/quick/00.hello/alpha/tru64/simple-timing-ruby-MOESI_CMP_token
 passed.
* 
build/ALPHA_FS/tests/opt/quick/10.linux-boot/alpha/linux/tsunami-simple-atomic-dual
 passed.
* 
build/ALPHA_FS/tests/opt/quick/10.linux-boot/alpha/linux/tsunami-simple-timing 
passed.
* 
build/ALPHA_FS/tests/opt/quick/10.linux-boot/alpha/linux/tsunami-simple-timing-dual
 passed.
* 
build/ALPHA_FS/tests/opt/quick/10.linux-boot/alpha/linux/tsunami-simple-atomic 
passed.
* 
build/ALPHA_SE_MOESI_CMP_token/tests/opt/quick/50.memtest/alpha/linux/memtest-ruby-MOESI_CMP_token
 passed.
* 
build/ALPHA_FS/tests/opt/quick/80.netperf-stream/alpha/linux/twosys-tsunami-simple-atomic
 passed.
* 
build/ALPHA_SE_MESI_CMP_directory/tests/opt/quick/50.memtest/alpha/linux/memtest-ruby-MESI_CMP_directory
 passed.
* build/MIPS_SE/tests/opt/quick/00.hello/mips/linux/simple-atomic passed.
* build/MIPS_SE/tests/opt/quick/00.hello/mips/linux/simple-timing passed.
* build/MIPS_SE/tests/opt/quick/00.hello/mips/linux/simple-timing-ruby 
passed.
* build/MIPS_SE/tests/opt/quick/00.hello/mips/linux/o3-timing passed.
* build/MIPS_SE/tests/opt/quick/00.hello/mips/linux/inorder-timing passed.
* 
build/ALPHA_SE_MOESI_CMP_directory/tests/opt/quick/50.memtest/alpha/linux/memtest-ruby-MOESI_CMP_directory
 passed.
* build/POWER_SE/tests/opt/quick/00.hello/power/linux/simple-atomic passed.
* build/POWER_SE/tests/opt/quick/00.hello/power/linux/o3-timing passed.
* 
build/SPARC_SE/tests/opt/quick/40.m5threads-test-atomic/sparc/linux/simple-atomic-mp
 passed.
* 
build/SPARC_SE/tests/opt/quick/40.m5threads-test-atomic/sparc/linux/simple-timing-mp
 passed.
* build/SPARC_SE/tests/opt/quick/00.hello/sparc/linux/simple-timing passed.
* build/SPARC_SE/tests/opt/quick/00.hello/sparc/linux/simple-atomic passed.
* build/SPARC_SE/tests/opt/quick/02.insttest/sparc/linux/o3-timing passed.
* build/SPARC_SE/tests/opt/quick/02.insttest/sparc/linux/simple-atomic 
passed.
* build/SPARC_SE/tests/opt/quick/00.hello/sparc/linux/simple-timing-ruby 
passed.
* build/SPARC_SE/tests/opt/quick/02.insttest/

Re: [gem5-dev] Review Request: Name: Replace M5 with gem5 in a few places it's printed on startup.

2011-05-24 Thread Gabe Black
I'm sure there are other places we need to fix, but this gets some of
the most prominent ones.

Gabe

On 05/24/11 00:42, Gabe Black wrote:
> ---
> This is an automatically generated e-mail. To reply, visit:
> http://reviews.m5sim.org/r/713/
> ---
>
> Review request for Default, Ali Saidi, Gabe Black, Steve Reinhardt, and 
> Nathan Binkert.
>
>
> Summary
> ---
>
> Name: Replace M5 with gem5 in a few places it's printed on startup.
>
>
> Diffs
> -
>
>   src/python/m5/main.py 76095b05f4da 
>
> Diff: http://reviews.m5sim.org/r/713/diff
>
>
> Testing
> ---
>
>
> Thanks,
>
> Gabe
>
> ___
> gem5-dev mailing list
> gem5-dev@m5sim.org
> http://m5sim.org/mailman/listinfo/gem5-dev

___
gem5-dev mailing list
gem5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/gem5-dev


[gem5-dev] Review Request: Name: Replace M5 with gem5 in a few places it's printed on startup.

2011-05-24 Thread Gabe Black

---
This is an automatically generated e-mail. To reply, visit:
http://reviews.m5sim.org/r/713/
---

Review request for Default, Ali Saidi, Gabe Black, Steve Reinhardt, and Nathan 
Binkert.


Summary
---

Name: Replace M5 with gem5 in a few places it's printed on startup.


Diffs
-

  src/python/m5/main.py 76095b05f4da 

Diff: http://reviews.m5sim.org/r/713/diff


Testing
---


Thanks,

Gabe

___
gem5-dev mailing list
gem5-dev@m5sim.org
http://m5sim.org/mailman/listinfo/gem5-dev