From: Charles Oliver Nutter Date: 2008-06-01T10:14:48+09:00 Subject: Re: Huge performance gap Roger Pack wrote: > Maybe something is possible along the lines of > > vm_optimized :no_frame_pointer, :fast_math, :no_thread_checkpointing do > # some code that should run very fast > end > > :) > Thanks for your work :) > -R Yeah, I'm looking into those possibilities, trying to find a nonintrusive way to introduce compiler pragmas that we could use for implementing parts of JRuby in Ruby code (or that others could use). For example, something like this (a bogus name...I don't want to reveal any pragmas yet): def foo ____NO_FRAMING = true end - Charlie