Re: One problem still outstanding - Was: Two Problem with Method Reference

2011-01-11 Thread Rémi Forax
I think that the mlvm repository is not uptodate, or was not up to date when stephen creates its build. The code looks for MethodHandle.invoke but this method doesn't exist anymore because it was renamed to invokeExact. Rémi Le 11/01/2011 06:06, Howard Lovatt a écrit : > Using the latest ver

Re: Few questions about invokeDynamic

2011-01-11 Thread Christian Thalinger
On Jan 10, 2011, at 2:32 PM, Rémi Forax wrote: >> I just got back to this bug and now that InvokeDynamic is gone how can I >> rewrite that code to work again (without John's Indify magic)? >> >> -- Christian >> > > Good question. > > First, I don't know if this bug is specific to invokedynamic

Re: Few questions about invokeDynamic

2011-01-11 Thread Rémi Forax
Le 11/01/2011 11:32, Christian Thalinger a écrit : > On Jan 10, 2011, at 2:32 PM, Rémi Forax wrote: >>> I just got back to this bug and now that InvokeDynamic is gone how can I >>> rewrite that code to work again (without John's Indify magic)? >>> >>> -- Christian >>> >> Good question. >> >> Fir

Re: ValueConversion.unbox* fixes(?)

2011-01-11 Thread Christian Thalinger
On Nov 12, 2010, at 2:42 PM, Christian Thalinger wrote: > On Nov 12, 2010, at 2:35 PM, Rémi Forax wrote: >> Le 12/11/2010 12:26, Christian Thalinger a écrit : >>> As I have already said, I'm not expert here but these changes let all >>> tests of this testcase pass: >>> >>> http://cr.openjdk.java.n

Re: ValueConversion.unbox* fixes(?)

2011-01-11 Thread John Rose
On Jan 11, 2011, at 7:30 AM, Christian Thalinger wrote: > On Nov 12, 2010, at 2:42 PM, Christian Thalinger wrote: >> On Nov 12, 2010, at 2:35 PM, Rémi Forax wrote: >>> Le 12/11/2010 12:26, Christian Thalinger a écrit : As I have already said, I'm not expert here but these changes let all

failures running jdk/test/java/dyn tests

2011-01-11 Thread Stephen Bannasch
I'm trying to run the four dyn tests in jdk/test/java/dyn for my mlvm build using jtreg v4.1 and I'm failing 3 out of 4 -- I assume these tests should pass? I'd like to run a small subset of tests whenever I have what appears to a successful build to confirm that the mlvm functionality is work

Re: failures running jdk/test/java/dyn tests

2011-01-11 Thread Stephen Bannasch
More verbose output from running just: jdk/test/java/dyn/InvokeDynamicPrintArgs: [sources]$ jtreg -testjdk:build/bsd-amd64/j2sdk-image -vmoption:-XX:+UnlockExperimentalVMOptions -vmoption:-XX:+EnableInvokeDynamic -v:all jdk/test/java/dyn/InvokeDynamicPrintArgs.java -

Re: failures running jdk/test/java/dyn tests

2011-01-11 Thread John Rose
On Jan 11, 2011, at 3:26 PM, Stephen Bannasch wrote: > I'm trying to run the four dyn tests in jdk/test/java/dyn for my mlvm build > using jtreg v4.1 and I'm failing 3 out of 4 -- I > assume these tests should pass? > > I'd like to run a small subset of tests whenever I have what appears to a

hg: mlvm/mlvm/hotspot: meth: mark conv and notrans non-testable pending further testing

2011-01-11 Thread john . r . rose
Changeset: 191144727001 Author:jrose Date: 2011-01-11 18:14 -0800 URL: http://hg.openjdk.java.net/mlvm/mlvm/hotspot/rev/191144727001 meth: mark conv and notrans non-testable pending further testing ! series ___ mlvm-dev mailing list mlvm

hg: mlvm/mlvm/jdk: meth: mark conv non-testable pending further testing; add initial version of vcoll

2011-01-11 Thread john . r . rose
Changeset: b3a10a11ff02 Author:jrose Date: 2011-01-11 18:14 -0800 URL: http://hg.openjdk.java.net/mlvm/mlvm/jdk/rev/b3a10a11ff02 meth: mark conv non-testable pending further testing; add initial version of vcoll ! meth-rename.patch + meth-vcoll.patch ! meth.test.patch ! series __

Re: failures running jdk/test/java/dyn tests

2011-01-11 Thread John Rose
On Jan 11, 2011, at 5:23 PM, Stephen Bannasch wrote: > # An error report file with more information is saved as: > # /Users/stephen/dev/java/src/mlvm/sources/JTwork/scratch/hs_err_pid20112.log Can you send me that error file? Also, it would be best if you could run this script over it first: h

Re: failures running jdk/test/java/dyn tests

2011-01-11 Thread Stephen Bannasch
At 5:48 PM -0800 1/11/11, John Rose wrote: >On Jan 11, 2011, at 3:26 PM, Stephen Bannasch wrote: > >> I'm trying to run the four dyn tests in jdk/test/java/dyn for my mlvm build >> using jtreg v4.1 and I'm failing 3 out of 4 -- I >> assume these tests should pass? >> >> I'd like to run a small sub

Re: failures running jdk/test/java/dyn tests

2011-01-11 Thread Stephen Bannasch
>On Jan 11, 2011, at 5:23 PM, Stephen Bannasch wrote: > >> # An error report file with more information is saved as: > > # > > /Users/stephen/dev/java/src/mlvm/sources/JTwork/scratch/hs_err_pid20112.log > >Can you send me that error file? > >Also, it would be best if you could run this script over

Re: failures running jdk/test/java/dyn tests

2011-01-11 Thread Stephen Bannasch
At 6:22 PM -0800 1/11/11, John Rose wrote: >Also, I have just pushed an update to the series files for hotspot and jdk >patch repos, to exclude patches that are not yet needed and may have >bit-rotted. Thanks John, That fixed the problem for all the failing tests in jdk/test/java/dyn. I'm not

Re: failures running jdk/test/java/dyn tests

2011-01-11 Thread John Rose
On Jan 11, 2011, at 6:37 PM, Stephen Bannasch wrote: > At 5:48 PM -0800 1/11/11, John Rose wrote: >> You can run with jtreg directly like this: >> $ jtreg -jdk:$JAVA7X_HOME test/java/dyn/ >> $ jtreg -jdk:$JAVA7X_HOME test/java/dyn/InvokeDynamicPrintArgs.java >> >> ...and so on. > > Do the java/d

Re: failures running jdk/test/java/dyn tests

2011-01-11 Thread John Rose
On Jan 11, 2011, at 7:07 PM, Stephen Bannasch wrote: > That fixed the problem for all the failing tests in jdk/test/java/dyn. Good. So there's a bug in those pending patches. Sorry for the extra work! -- John ___ mlvm-dev mailing list mlvm-dev@openj

another mac build available

2011-01-11 Thread Stephen Bannasch
Howard Lovatt was interested in another build for the Mac and now I've got one that actually passes the five test suites in jdk/test/java/dyn. http://www.concord.org/~sbannasch/mlvm/java-1.7.0-internal-mlvm-2011_01_11.tar.gz This was built with the following guards: "buildable testable /coro"

fyi: coro patch still won't build coroutine.o on Mac OS X

2011-01-11 Thread Stephen Bannasch
FYI: still can't compile coroutine.o on Mac OS X warning that "NULL used in arithmetic". Building with guards="buildable testable coro" still produces these compilation warnings (with the -Werror compiler flag being used warnings are treated as errors): hotspot/src/share/vm/runtime/coroutin