> How can I personally patch the compiler to use Float32Array Int8Array, > Int16Array, Int32Array, e,t,c ? > Is it super-hard ? > Is there a single place that generates new basic type array ? >
I think easiest solution would be to implement an "optimization pass" on the JavaScript AST. You would need to add that pass to: https://github.com/gwtproject/gwt/blob/master/dev/core/src/com/google/gwt/dev/jjs/JavaToJavaScriptCompiler.java#L304 We have once done the same by adding an "optimization" pass that had wrapped everything in try / catch blocks for Safari to prevent a JIT bug. -- J. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/d/optout.
