On Sun, Feb 26, 2012 at 7:10 PM, Mark Roos wrote:
> I was wondering about the need to make the classes GCable. My first
> approach used annoClasses
> from sun.misc.unsafe but that turned out to have limited support so I went
> to a 'normal' class
> generation ( again like you one class per method
Charles you mentioned
That's one class per jitted Ruby method, and to make them GCable that's
one
classloader per class. So if we eventually JIT 1000 Ruby methods, you
have 1000 classes and 1000 classloaders.
I was wondering about the need to make the classes GCable. My first
approach used an