|
|
|
|
|
by venning
2950 days ago
|
|
> a global optimizing compile tends to be dominated by the O(f(x)) of the optimization passes Really good point. Closure Compiler, at least historically, rejected many valid optimizations because they aren't common enough to justify growing the rate of number of passes. > If you rewrote something like Closure Compiler in C, I doubt you could get more than a 2x-4x speedup. Closure Compiler is written in Java. I don't know exactly where the state of the art of JIT is right now, but I would bet C wouldn't be that much faster. |
|