Java JIT在运行JDK代码时会作弊吗?
我正在对一些代码进行基准测试,即使使用完全相同的算法,也无法让它像java.math.BigInteger
那样快速运行。所以我将java.math.BigInteger
源代码复制到我自己的包中,并尝试了这个:
//import java.math.BigInteger;
public class MultiplyTest {
public static void main(String[] args) {
Random r = new Random(1);
long tm = 0, count = 0,result=0;
for (int i = 0; i < 400000; i++) {
int s1 = 400, s2 = 400;
BigInteger a = new BigInteger(s1 * 8, r), b = new BigInteger(s2 * 8, r);
long tm1 = System.nanoTime();
BigInteger c = a.multiply(b);
if (i > 100000) {
tm += System.nanoTime() - tm1;
count++;
}
result+=c.bitLength();
}
System.out.println((tm / count) + "nsec/mul");
System.out.println(result);
}
}
当我运行这个(在MacOS上运行jdk 1.8.0_144-b01)时,它会输出:
12089nsec/mul
2559044166
当我运行它时,导入行未注释:
4098nsec/mul
2559044166
使用JDK版本的BigInteger与我的版本相比,它的速度几乎是我的三倍,即使它使用的是完全相同的代码。
我已经使用javap检查了字节码,并在使用选项运行时比较了编译器输出:
-Xbatch -XX:-TieredCompilation -XX:+PrintCompilation -XX:+UnlockDiagnosticVMOptions
-XX:+PrintInlining -XX:CICompilerCount=1
两个版本似乎生成相同的代码。那么,热点是否使用了一些我无法在代码中使用的预先计算的优化?我一直明白他们没有。是什么解释了这种差异?