jatovm / jato

Jato, an open source implementation of the JVM
http://www.jatovm.org/
Other
154 stars 30 forks source link

Floating point conversions are slow on x86 #11

Open penberg opened 13 years ago

penberg commented 13 years ago

Commit a631581 ("x86,jit: Fix floating point conversion issues") fixed compatibility problems wrt. floating point conversions but turned every {float,double} -> {int,long} conversion into a CALL instruction. We should inline fastpath to generated code like CACAO, for example, does.