Re: NoClassDefFoundError using LMF against a generated class's handle

2018-06-30 Thread Volker Simonis
schrieb am Sa. 30. Juni 2018 um 03:03: > To help illustrate a bit, here's a snippit of the code to create the > allocator. It succeeds, but the allocator later throws NoClassDefFoundError. > > https://gist.github.com/headius/cce750221cf73df76cb7f7ce92c1a759 > > - Charlie > &

Re: NoClassDefFoundError using LMF against a generated class's handle

2018-06-29 Thread Charles Oliver Nutter
To help illustrate a bit, here's a snippit of the code to create the allocator. It succeeds, but the allocator later throws NoClassDefFoundError. https://gist.github.com/headius/cce750221cf73df76cb7f7ce92c1a759 - Charlie On Fri, Jun 29, 2018 at 8:00 PM, Charles Oliver Nutter wrote: &g

NoClassDefFoundError using LMF against a generated class's handle

2018-06-29 Thread Charles Oliver Nutter
he parent classloader. I am able to get through this process without error. However, when I finally invoke the allocator, I get a NoClassDefFoundError and a stack trace that ends at the allocator call. So...what am I doing wrong? - Charlie ___ mlvm-dev mai

Re: The NoClassDefFoundError bug is back :(

2011-12-12 Thread Christian Thalinger
ot fixed yet: 7093795: JSR 292: Seph bench/bench_arithmetic.sp fails with: NoClassDefFoundError: seph/lang/SephObject 7093796: JSR 292: Rtalk test case fails with: NoClassDefFoundError: ri/core/rtalk/RtObject 7111583: JSR 292: JRuby test_respond_to.rb fails with: NoClassDefFoundError: org/jrub

Re: The NoClassDefFoundError bug is back :(

2011-12-08 Thread Charles Oliver Nutter
On Thu, Dec 8, 2011 at 2:16 PM, Rémi Forax wrote: > invokeWithArguments uses foldArgument and a generic invoker > that maybe why you see the same error. > > about asType(), the idea is to erase the type before calling > invokeWithArguments > instead of >   mh.invokeWithArgument(args); > you can us

Re: The NoClassDefFoundError bug is back :(

2011-12-08 Thread Rémi Forax
On 12/08/2011 06:58 PM, Charles Oliver Nutter wrote: > I just had a report of the same error in 1.7.0GA, and I saw it on the > CI server last night after I set up a 1.7.0_01 build. Did it linger > into GA? > > http://ci.jruby.org/job/jruby-test-matrix/jdk=sun-java-7,label=master/406/console > > On

Re: The NoClassDefFoundError bug is back :(

2011-12-08 Thread Charles Oliver Nutter
I just had a report of the same error in 1.7.0GA, and I saw it on the CI server last night after I set up a 1.7.0_01 build. Did it linger into GA? http://ci.jruby.org/job/jruby-test-matrix/jdk=sun-java-7,label=master/406/console On Tue, Dec 6, 2011 at 3:52 AM, Rémi Forax wrote: > I've forget to

Re: The NoClassDefFoundError bug is back :(

2011-12-06 Thread Rémi Forax
On 12/06/2011 10:34 AM, Rémi Forax wrote: > On 12/05/2011 04:28 PM, Rémi Forax wrote: >> John, Christian, >> I was updating the multi-dispatch sample from the cookbook >> when the NoClassDefFoundError bug re-appear. > I've reduced the code to this

Re: The NoClassDefFoundError bug is back :(

2011-12-06 Thread Rémi Forax
On 12/05/2011 04:28 PM, Rémi Forax wrote: > John, Christian, > I was updating the multi-dispatch sample from the cookbook > when the NoClassDefFoundError bug re-appear. I've reduced the code to this simple sample: public class NoClassDefFoundSample { public void foo() {

The NoClassDefFoundError bug is back :(

2011-12-05 Thread Rémi Forax
John, Christian, I was updating the multi-dispatch sample from the cookbook when the NoClassDefFoundError bug re-appear. [forax@localhost multi-dispatch]$ java -ea -cp classes:. Main2 skip java.lang.String.contentEquals/2 skip java.lang.String.replace/3 Exception in thread "

NoClassDefFoundError, more notes

2011-08-18 Thread Mark Roos
So it happens with Windows XP server and OSX server but not XP client. I enabled the print compilation and the only thing I see that is consistent is the 'made not entrant' on java.lang.Class::GetName. This happens the same for each time the error occurs but it happens after the error is thro

hg: mlvm/mlvm/hotspot: meth: fix one more manifestation of NoClassDefFoundError

2011-06-23 Thread john . r . rose
Changeset: 372bd6ae09e9 Author:jrose Date: 2011-06-23 04:56 -0700 URL: http://hg.openjdk.java.net/mlvm/mlvm/hotspot/rev/372bd6ae09e9 meth: fix one more manifestation of NoClassDefFoundError ! meth-link-7056328.patch ___ mlvm-dev mailing

Re: InvokeDynamic throws NoClassDefFoundError

2010-02-18 Thread Rémi Forax
Le 18/02/2010 10:44, Kirill Shirokov a écrit : > John, > > I don't know if it is a known issue, but I noticed that InvokeDynamic > throws NoClassDefFoundError in the following test: > > package test; > > import java.dyn.InvokeDynamic; > import java

InvokeDynamic throws NoClassDefFoundError

2010-02-18 Thread Kirill Shirokov
John, I don't know if it is a known issue, but I noticed that InvokeDynamic throws NoClassDefFoundError in the following test: package test; import java.dyn.InvokeDynamic; import java.dyn.InvokeDynamicBootstrapError; public class Self { public static void main(S

NoClassDefFoundError

2010-01-08 Thread Helmut Eller
I built a JVM as described on the Wiki[1] and running this example: class Foo { public static void main (String[] args) throws Throwable { java.dyn.InvokeDynamic.bar(); } } with java -Xint -XX:+EnableMethodHandles -XX:+EnableInvokeDynamic Foo prints: Exception in thread "main" ja