Hacker News new | ask | show | jobs
by di4na 1149 days ago
Funnily enough...

It is really hard if not impossible to optimise when everything is bignum.

2 comments

While JavaScript didn't have BigInt until a couple years ago, it did start with all numbers being floats. JSVMs optimize heavily for the small integer (SMI) case. They do both dynamic profiling, speculative optimization, and significant type analysis to get very good code for the SMI cases.
you realise floats are far easier because in any case you are limited to 64 bits and you know that?
Yeah, just look at Scheme or any other Lisp!