Sun's JVM instruction speed table

Posted by Pindatjuh on Stack Overflow See other posts from Stack Overflow or by Pindatjuh
Published on 2010-03-13T21:21:42Z Indexed on 2010/03/13 21:25 UTC
Read the original article Hit count: 179

Filed under:
|
|

Is there a benchmark available how much relative time each instruction costs in a single-thread, average-case scenario (either with or without JIT compiler), for the JVM (any version) by Sun?

If there is not a benchmark already available, how can I get this information?

E.g.:

         TIME
iload_1     1
iadd       12
getfield   40
etc.

Where getfield is equivalent to 40 iload_1 instructions.

© Stack Overflow or respective owner

Related posts about jvm

Related posts about bytecode