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

2014-08-26 Thread Cron Daemon via gem5-dev
* build/ALPHA/tests/opt/quick/se/00.hello/alpha/linux/inorder-timing passed. * build/ALPHA/tests/opt/quick/se/00.hello/alpha/linux/minor-timing passed. * build/ALPHA/tests/opt/quick/se/00.hello/alpha/linux/o3-timing passed. *

[gem5-dev] changeset in gem5: misc: README direct to website for dependencies

2014-08-26 Thread Andreas Hansson via gem5-dev
changeset d02872388224 in /z/repo/gem5 details: http://repo.gem5.org/gem5?cmd=changeset;node=d02872388224 description: misc: README direct to website for dependencies This patch updates the README to direct the user to the appropriate sections on the gem5.org website

[gem5-dev] changeset in gem5: mem: Update DRAM controller comments

2014-08-26 Thread Andreas Hansson via gem5-dev
changeset 4966471a1ba1 in /z/repo/gem5 details: http://repo.gem5.org/gem5?cmd=changeset;node=4966471a1ba1 description: mem: Update DRAM controller comments Update comments and add a reference for more information. diffstat: src/mem/dram_ctrl.hh | 34

[gem5-dev] changeset in gem5: sparc: Fixup bit ordering in the PSTATE bit u...

2014-08-26 Thread Andreas Sandberg via gem5-dev
changeset e475a7861078 in /z/repo/gem5 details: http://repo.gem5.org/gem5?cmd=changeset;node=e475a7861078 description: sparc: Fixup bit ordering in the PSTATE bit union The order of the MSB and LSB bit of the mm field in the PSTATE union is wrong. Any access to this field

[gem5-dev] changeset in gem5: sim: bump checkpoint version for multiple eve...

2014-08-26 Thread Curtis Dunham via gem5-dev
changeset 6cb378bad253 in /z/repo/gem5 details: http://repo.gem5.org/gem5?cmd=changeset;node=6cb378bad253 description: sim: bump checkpoint version for multiple event queues This patch adds a fix for older checkpoints before support for multiple event queues were added in

[gem5-dev] changeset in gem5: base: Add a static assert to check bit union ...

2014-08-26 Thread Andreas Sandberg via gem5-dev
changeset 4593282280e4 in /z/repo/gem5 details: http://repo.gem5.org/gem5?cmd=changeset;node=4593282280e4 description: base: Add a static assert to check bit union ranges If a bit field in a bit union specified as BitfieldLSB, MSB instead of BitfieldMSB, LSB the code

[gem5-dev] changeset in gem5: mem: Fix address interleaving bug in DRAM con...

2014-08-26 Thread Andreas Hansson via gem5-dev
changeset e95a0ab1d368 in /z/repo/gem5 details: http://repo.gem5.org/gem5?cmd=changeset;node=e95a0ab1d368 description: mem: Fix address interleaving bug in DRAM controller This patch fixes a bug in the DRAM controller address decoding. In cases where the DRAM burst size

[gem5-dev] changeset in gem5: style: Fixup strange semantics in hg m5style

2014-08-26 Thread Andreas Sandberg via gem5-dev
changeset 62c95c428a3d in /z/repo/gem5 details: http://repo.gem5.org/gem5?cmd=changeset;node=62c95c428a3d description: style: Fixup strange semantics in hg m5style The 'hg m5style' command had some rather strange semantics. When called without arguments, it applied the

[gem5-dev] changeset in gem5: mips: Fix RLIMIT_RSS naming

2014-08-26 Thread Mitch Hayenga via gem5-dev
changeset b7715fb7cf9f in /z/repo/gem5 details: http://repo.gem5.org/gem5?cmd=changeset;node=b7715fb7cf9f description: mips: Fix RLIMIT_RSS naming MIPS defined RLIMIT_RSS in a way that could cause a naming conflict with RLIMIT_RSS from the host system. Broke clang+MacOS

[gem5-dev] changeset in gem5: base: Add compiler macros for C++11 final/ove...

2014-08-26 Thread Andreas Sandberg via gem5-dev
changeset 56772eb01583 in /z/repo/gem5 details: http://repo.gem5.org/gem5?cmd=changeset;node=56772eb01583 description: base: Add compiler macros for C++11 final/override Add the macros M5_ATTR_FINAL and M5_ATTR_OVERRIDE which are defined to final and override respectively

[gem5-dev] changeset in gem5: style: Add support for a style ignore list an...

2014-08-26 Thread Andreas Sandberg via gem5-dev
changeset b58f6afe14c5 in /z/repo/gem5 details: http://repo.gem5.org/gem5?cmd=changeset;node=b58f6afe14c5 description: style: Add support for a style ignore list and ignore ext/ There are some directories within the repository where we don't want to enforce our coding

[gem5-dev] changeset in gem5: mem: Fix DRAMSim2 cycle check when restoring ...

2014-08-26 Thread Andreas Hansson via gem5-dev
changeset 35738ad3c7c6 in /z/repo/gem5 details: http://repo.gem5.org/gem5?cmd=changeset;node=35738ad3c7c6 description: mem: Fix DRAMSim2 cycle check when restoring from checkpoint This patch ensures the cycle check is still valid even restoring from a checkpoint. In this

[gem5-dev] changeset in gem5: base: Replace the internal varargs stuff with...

2014-08-26 Thread Andreas Sandberg via gem5-dev
changeset 933dfb9d8279 in /z/repo/gem5 details: http://repo.gem5.org/gem5?cmd=changeset;node=933dfb9d8279 description: base: Replace the internal varargs stuff with C++11 constructs We currently use our own home-baked support for type-safe variadic functions. This is

[gem5-dev] changeset in gem5: base: Add const to intmath and be more flexib...

2014-08-26 Thread Andreas Hansson via gem5-dev
changeset 9b9ef42122bc in /z/repo/gem5 details: http://repo.gem5.org/gem5?cmd=changeset;node=9b9ef42122bc description: base: Add const to intmath and be more flexible with typing This patch ensures the functions can be used on const variables. diffstat: src/base/intmath.hh |

Re: [gem5-dev] Review Request 2327: arm: support 16kb vm granules

2014-08-26 Thread Curtis Dunham via gem5-dev
On Aug. 20, 2014, 5:39 p.m., Nilay Vaish wrote: While I am ok with the changes made, do you think it is possible to retain the Enum instead of using 12, 14 and 16? I think this should be fine. I'll update patch shortly. - Curtis

Re: [gem5-dev] changeset in gem5: style: Fixup strange semantics in hg m5style

2014-08-26 Thread Steve Reinhardt via gem5-dev
Thanks for this, Andreas! I've tried to use it in the past and it never did what I wanted... I assumed it was broken, not that it was working correctly according to obscure semantics. Is there any documentation for this beyond the brief 'usage' lines in the script? It would be great if there

[gem5-dev] Review Request 2366: tests: Use medium dataset for perlbmk regressions

2014-08-26 Thread Andreas Hansson via gem5-dev
--- This is an automatically generated e-mail. To reply, visit: http://reviews.gem5.org/r/2366/ --- Review request for Default. Repository: gem5 Description --- Changeset

[gem5-dev] changeset in gem5: Added tag stable_2014_08_26 for changeset cb2...

2014-08-26 Thread Nilay Vaish via gem5-dev
changeset 2a1d75864ad2 in /z/repo/gem5 details: http://repo.gem5.org/gem5?cmd=changeset;node=2a1d75864ad2 description: Added tag stable_2014_08_26 for changeset cb2e6950956d diffstat: .hgtags | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diffs (8 lines): diff -r

Re: [gem5-dev] Updating gem5-stable

2014-08-26 Thread Nilay Vaish via gem5-dev
I have updated gem5-stable to the following changeset from gem5: --- changeset: 10231:cb2e6950956d user: Steve Reinhardt steve.reinha...@amd.com date: Sat May 31 18:00:23 2014 -0700 summary: style: eliminate equality tests

Re: [gem5-dev] Review Request 2327: arm: support 16kb vm granules

2014-08-26 Thread Andreas Hansson via gem5-dev
--- This is an automatically generated e-mail. To reply, visit: http://reviews.gem5.org/r/2327/ --- (Updated Aug. 26, 2014, 9:04 p.m.) Review request for Default. Repository: gem5