Re: Duby dynamic dispatch has landed!

2010-08-26 Thread Attila Szegedi
Hi, so this took only five months, but I finally did move my code to GitHub :-): . One of side effects of being employed by Twitter is that I have ample opportunity to learn and use both command-line Git and GitHub, so I'm feeling comfortable with the switch

Re: Re: bootstrap methods in the constant pool

2010-08-26 Thread ebruneton
Rémi Forax wrote: > Le 12/08/2010 08:20, John Rose a écrit : >> I just posted a prototype patch for local BSMs which works on my unit >> tests. >> >>http://hg.openjdk.java.net/mlvm/mlvm/hotspot/file/tip/asm >> >> There is also an updated "ldc" patch. >> >> I've put the patches with some good e

hg: mlvm/mlvm/langtools: 4 new changesets

2010-08-26 Thread john . r . rose
Changeset: 76d6efbc30a4 Author:jrose Date: 2010-08-25 22:18 -0700 URL: http://hg.openjdk.java.net/mlvm/mlvm/langtools/rev/76d6efbc30a4 meth-edrfix: assign bug numbers; also rebase ! meth-edrfix-6979327.patch < meth-edrfix.patch ! series Changeset: b733d7c4526e Author:jrose Dat

hg: mlvm/mlvm/jdk: 5 new changesets

2010-08-26 Thread john . r . rose
Changeset: b5b8346ef7b5 Author:jrose Date: 2010-08-25 22:39 -0700 URL: http://hg.openjdk.java.net/mlvm/mlvm/jdk/rev/b5b8346ef7b5 meth: fix some javadoc examples ! meth.patch Changeset: 729b34668ed0 Author:jrose Date: 2010-08-25 22:40 -0700 URL: http://hg.openjdk.jav

heads up: MH invocation syntax change

2010-08-26 Thread John Rose
I have just pushed code to mlvm/{langtools,jdk} which reflects the following syntax change for method handle invocation: T x = mh.invokeExact(...); => T x = (T) mh.invokeExact(...); and: {mh.invokeExact(...);} => {mh.invokeExact(...);} In other words, we are replacing fake type parame