-
Bug
-
Resolution: Won't Fix
-
P4
-
15
-
generic
jdk.internal.misc.Unsafe.getInt() can be recognized as an intrinsic _getInt by C2. If C2 does, it may wipe out the whole statement in GVN.
C2 optimizer may accidentally remove the side effect of Unsafe.getInt(). It will cause inconsistent behavior between C2 and others.
eg. $cat TestUnsafeIntrinsics.java
import jdk.internal.misc.Unsafe;
public class TestUnsafeIntrinsics {
static final Unsafe UNSAFE = Unsafe.getUnsafe();
static boolean f = false;
static int address;
private static int getAddress() {
return address;
}
public static void test() {
// UNSAFE.getInt(0); // failed to inline.
UNSAFE.getInt(getAddress()); // succeed to inline and intrinsify,
}
static public void main(String[] args) {
test();
}
}
javac --add-exports java.base/jdk.internal.misc=ALL-UNNAMED TestUnsafeIntrinsics.java
java -XX:+UnlockDiagnosticVMOptions -Xcomp -XX:CompileCommand=compileonly,TestUnsafeIntrinsics::* --add-exports java.base/jdk.internal.misc=ALL-UNNAMED -XX:-TieredCompilation --cp . TestUnsafeIntrinsics
nothing will happen because UNSAFE.getInt(getAddress()) is removed.
Hotspot with -Xint will crash because getInt(0) violates off-heap address space.
Please note that afterJDK-8224658, UNSAFE.getInt(0) will fail to inline.
C2 optimizer may accidentally remove the side effect of Unsafe.getInt(). It will cause inconsistent behavior between C2 and others.
eg. $cat TestUnsafeIntrinsics.java
import jdk.internal.misc.Unsafe;
public class TestUnsafeIntrinsics {
static final Unsafe UNSAFE = Unsafe.getUnsafe();
static boolean f = false;
static int address;
private static int getAddress() {
return address;
}
public static void test() {
// UNSAFE.getInt(0); // failed to inline.
UNSAFE.getInt(getAddress()); // succeed to inline and intrinsify,
}
static public void main(String[] args) {
test();
}
}
javac --add-exports java.base/jdk.internal.misc=ALL-UNNAMED TestUnsafeIntrinsics.java
java -XX:+UnlockDiagnosticVMOptions -Xcomp -XX:CompileCommand=compileonly,TestUnsafeIntrinsics::* --add-exports java.base/jdk.internal.misc=ALL-UNNAMED -XX:-TieredCompilation --cp . TestUnsafeIntrinsics
nothing will happen because UNSAFE.getInt(getAddress()) is removed.
Hotspot with -Xint will crash because getInt(0) violates off-heap address space.
Please note that after