Experiments with 'Static' JavaScript: As Fast As Native Code?
mozakai.blogspot.com
Experiments with 'Static' JavaScript: As Fast As Native Code?
1–10 of 12 posts
Re: Experiments with 'Static' JavaScript: As Fast As Native Code?
#2Re: Experiments with 'Static' JavaScript: As Fast As Native Code?
#3You don't need static typing in order to compile to machine code.
Re: Experiments with 'Static' JavaScript: As Fast As Native Code?
#4Anything compiled to native code is going to be fast by comparison. (They are just characters in a text file.) The trick is to do it with all the features of an interpreter.
Re: Experiments with 'Static' JavaScript: As Fast As Native Code?
#5But if a JavaScript program - or part of a program - happens to be implicitly statically typed, and in other ways 'performance-friendly', then we should be able to compile at least such code and run it very quickly. You don't need static typing in order to compile to machine code.
The generated code for something like "a = b + c" is very, very different if you know at compile-time whether b and c are strings or numbers or something else. Modern JavaScript VMs go to a lot of effort to guess or infer type information before JIT compilation.
Re: Experiments with 'Static' JavaScript: As Fast As Native Code?
#6Re: Experiments with 'Static' JavaScript: As Fast As Native Code?
#7But if a JavaScript program - or part of a program - happens to be implicitly statically typed, and in other ways 'performance-friendly', then we should be able to compile at least such code and run it very quickly. You don't need static typing in order to compile to machine code.
No, but it saves you having to emit machine code that does type checking and dispatch at run-time. You need type information if you want inner-loop performance that is competitive with languages (like C) that are designed for efficient compilation. The generated code for something like "a = b + c" is very, very different if you know at compile-time whether b and c are strings or numbers or something else. Modern Java…
Re: Experiments with 'Static' JavaScript: As Fast As Native Code?
#8Re: Experiments with 'Static' JavaScript: As Fast As Native Code?
#91) Given a perfect compiler, once compiled any interpreted code would be as fast as a native implementation.
2) How good a job your compiler does is dependent on many things, majorly the complexity of the code being compiled.
Fannkuch is extremely trivial code and really boils down to indirect array manipulation. It's interesting when comparing native/interpreted code because it indicates how much overhead is incurred with indirect memory access, but it's not something that provides any indication of how statically compiled javascript would generally perform against native code.