[m5-dev] changeset in m5: X86: Replace DISPLACEMENT with disp in movhpd.

2009-10-28 Thread Gabe Black
changeset 21047815f78e in /z/repo/m5 details: http://repo.m5sim.org/m5?cmd=changeset;node=21047815f78e description: X86: Replace DISPLACEMENT with disp in movhpd. diffstat: 1 file changed, 4 insertions(+), 4 deletions(-) src/arch/x86/isa/insts/simd128/floating_point/data_transfer/move.py

[m5-dev] missing power scons defaults

2009-10-28 Thread Gabe Black
I was going to push the arguments-as-a-stack patch with Vince's fixes, but I couldn't build power because there were no default scons options. Is there something I'm missing, or was a file left out? Gabe ___ m5-dev mailing list m5-dev@m5sim.org

[m5-dev] Cron m5t...@zizzer /z/m5/regression/do-regression quick

2009-10-28 Thread Cron Daemon
* build/ALPHA_SE/tests/fast/quick/20.eio-short/alpha/eio/simple-atomic passed. * build/ALPHA_SE/tests/fast/quick/00.hello/alpha/tru64/simple-timing passed. * build/ALPHA_SE/tests/fast/quick/30.eio-mp/alpha/eio/simple-timing-mp passed. *

Re: [m5-dev] Add support for haddpd instruction to x86

2009-10-28 Thread Gabe Black
There's a subtle bug in this implementation that crops up when the operations are split in half like they are. In HADDPD_XMM_XMM, if xmml and xmmlm refer to the same register, you'll overwrite the value you're supposed to use in the second uop. You'll want to use maybe ufp1 in the first uop and a

Re: [m5-dev] [patch] implement movd_Vo_Ed on x86

2009-10-28 Thread Gabe Black
This instruction actually goes in arch/x86/isa/insts/general_purpose/data_transfer/move.py. It's ambiguous (and somewhat arbitrary) since it fits in both categories, but that's where I have a comment for it. Would you mind moving it? Also, I think the GPR size should be 32 bits unless an REX

Re: [m5-dev] missing power scons defaults

2009-10-28 Thread Timothy M Jones
On Wed, 28 Oct 2009 07:09:57 -, Gabe Black gbl...@eecs.umich.edu wrote: I was going to push the arguments-as-a-stack patch with Vince's fixes, but I couldn't build power because there were no default scons options. Is there something I'm missing, or was a file left out? There should

Re: [m5-dev] Cron m5t...@zizzer /z/m5/regression/do-regression quick

2009-10-28 Thread nathan binkert
How does one add POWER to the regressions? Nate On Wed, Oct 28, 2009 at 12:13 AM, Cron Daemon r...@zizzer.eecs.umich.edu wrote: * build/ALPHA_SE/tests/fast/quick/20.eio-short/alpha/eio/simple-atomic passed. * build/ALPHA_SE/tests/fast/quick/00.hello/alpha/tru64/simple-timing

Re: [m5-dev] Cron /z/m5/regression/do-regression quick

2009-10-28 Thread nathan binkert
Add it to util/regress That's enough? The regression tests on zizzer will update themselves? Nate ___ m5-dev mailing list m5-dev@m5sim.org http://m5sim.org/mailman/listinfo/m5-dev

Re: [m5-dev] Cron /z/m5/regression/do-regression quick

2009-10-28 Thread Ali Saidi
The regressions on zizzer execute util/regress in the cloned repository so I believe so. Ali On Wed, 28 Oct 2009 09:55:26 -0700, nathan binkert n...@binkert.org wrote: Add it to util/regress That's enough? The regression tests on zizzer will update themselves? Nate

Re: [m5-dev] Cron /z/m5/regression/do-regression quick

2009-10-28 Thread Steve Reinhardt
You'll need to add reference outputs under tests/{quick,long} as well. Steve On Wed, Oct 28, 2009 at 9:53 AM, Ali Saidi sa...@umich.edu wrote: The regressions on zizzer execute util/regress in the cloned repository so I believe so. Ali On Wed, 28 Oct 2009 09:55:26 -0700, nathan binkert

Re: [m5-dev] Cron /z/m5/regression/do-regression quick

2009-10-28 Thread nathan binkert
You'll need to add reference outputs under tests/{quick,long} as well. Yeah, we already have a 00.hello test in there. I was most concerned about making sure that it got compiled. Nate ___ m5-dev mailing list m5-dev@m5sim.org

Re: [m5-dev] Cron /z/m5/regression/do-regression quick

2009-10-28 Thread Steve Reinhardt
On Wed, Oct 28, 2009 at 10:08 AM, nathan binkert n...@binkert.org wrote: You'll need to add reference outputs under tests/{quick,long} as well. Yeah, we already have a 00.hello test in there. I was most concerned about making sure that it got compiled. OK, I did look for it but somehow

Re: [m5-dev] missing power scons defaults

2009-10-28 Thread nathan binkert
    I was going to push the arguments-as-a-stack patch with Vince's fixes, but I couldn't build power because there were no default scons options. Is there something I'm missing, or was a file left out? There should be a POWER_SE file in build_opts, it's definitely there for me (and I just

[m5-dev] changeset in m5: regress: add POWER to regressions

2009-10-28 Thread Nathan Binkert
changeset b61018e8d169 in /z/repo/m5 details: http://repo.m5sim.org/m5?cmd=changeset;node=b61018e8d169 description: regress: add POWER to regressions diffstat: 1 file changed, 1 insertion(+), 1 deletion(-) util/regress |2 +- diffs (12 lines): diff -r 21047815f78e -r b61018e8d169

[m5-dev] changeset in m5: license: Fix license on network model code

2009-10-28 Thread Nathan Binkert
changeset deb871e1fc27 in /z/repo/m5 details: http://repo.m5sim.org/m5?cmd=changeset;node=deb871e1fc27 description: license: Fix license on network model code This mostly was a matter of changing the license owner to Princeton which is as it should have been. The code was

[m5-dev] [PATCH] build: fix compile problems pointed out by gcc 4.4

2009-10-28 Thread Nathan Binkert
# HG changeset patch # User Nathan Binkert n...@binkert.org # Date 1256775935 25200 # Node ID b152596d51c9336a0f988acb523ec7b4aa41a89e # Parent deb871e1fc27edb635d71fa2670051706115a6a9 build: fix compile problems pointed out by gcc 4.4 diff --git a/src/arch/arm/insts/static_inst.cc

Re: [m5-dev] [PATCH] build: fix compile problems pointed out by gcc 4.4

2009-10-28 Thread nathan binkert
Sorry for the duplicate e-mail. Anyway, I got a new machine that I just set up yesterday with ubuntu 9.10 and I fixed the new problems. Can people please look this over? Mostly what happened: 1) cstdio was not implicitly included by some other headers, so we needed to explicitly include it. 2)

Re: [m5-dev] [PATCH] build: fix compile problems pointed out by gcc 4.4

2009-10-28 Thread Gabe Black
nathan binkert wrote: Sorry for the duplicate e-mail. Anyway, I got a new machine that I just set up yesterday with ubuntu 9.10 and I fixed the new problems. Can people please look this over? Mostly what happened: 1) cstdio was not implicitly included by some other headers, so we needed to