Sun's JVM instruction speed table
- by Pindatjuh
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.