Re: Getting back into invokedynamic in JRuby

2010-03-19 Thread Charles Oliver Nutter
On Tue, Mar 16, 2010 at 10:22 AM, Rémi Forax wrote: > Le 16/03/2010 03:37, Charles Oliver Nutter a écrit : >> 1. Do I need to use all direct method handles to get inlining from the >> caller to the callee? >> > > Yes. > >> 2. If I have a Java method handle that does a MethodHandle.invoke call >> i

Re: Getting back into invokedynamic in JRuby

2010-03-16 Thread Christian Thalinger
On Mon, 2010-03-15 at 20:37 -0600, Charles Oliver Nutter wrote: > I'm trying to find the right way to phrase my question to make sure I > get the right answer... > > 1. Do I need to use all direct method handles to get inlining from the > caller to the callee? > 2. If I have a Java method handle t

Re: Getting back into invokedynamic in JRuby

2010-03-16 Thread Rémi Forax
Le 16/03/2010 03:37, Charles Oliver Nutter a écrit : > Hello all! > Helllo Charles, comment inlined. > I'm finally getting back into invokedynamic/mlvm stuff in JRuby! I > have started updating our indy support and run into a few questions... > > I was under the impression that JavaMethod han

Getting back into invokedynamic in JRuby

2010-03-15 Thread Charles Oliver Nutter
Hello all! I'm finally getting back into invokedynamic/mlvm stuff in JRuby! I have started updating our indy support and run into a few questions... I was under the impression that JavaMethod handle would be a good way to replace all the handle composition I was doing before. Is this true? I wil