Charlie~ On Fri, Sep 10, 2010 at 10:04 PM, Charles Oliver Nutter <[email protected]> wrote: > Still, I think it's a promising avenue, especially for something like > your case where you are hitting argument count limits. Try a 32-field > struct that is *only* used to pass from one synthetic method to > another (and then immediately unboxed and discarded/nulled), and see > if EA is able to eliminate it.
We tried that, unfortunately the unbox at the top of each method (and the box before further calls) bloats the code fast and hits the 16K bytecode limit. We found it was fastest to never unbox (just access the variables through the object) and use a series of setter methods to box. Matt -- You received this message because you are subscribed to the Google Groups "JVM Languages" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/jvm-languages?hl=en.
