-
Bug
-
Resolution: Fixed
-
P3
-
8, 11, 12, 13
-
b28
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8217028 | 13 | Roland Westrelin | P3 | Resolved | Fixed | b04 |
JDK-8217086 | 12.0.1 | Roland Westrelin | P3 | Resolved | Fixed | b03 |
JDK-8226937 | 11.0.6-oracle | Roland Westrelin | P3 | Resolved | Fixed | b01 |
JDK-8226673 | 11.0.5 | Roland Westrelin | P3 | Resolved | Fixed | b01 |
public class MismatchedUnsafeLoadFromNewObject {
public volatile int f_int = -1;
public static Unsafe unsafe = Unsafe.getUnsafe();
public static final long f_int_off;
static {
Field f_int_field = null;
try {
f_int_field = CASandCAEwithNegExpected.class.getField("f_int");
} catch (Exception e) {
System.out.println("reflection failed " + e);
e.printStackTrace();
}
f_int_off = unsafe.objectFieldOffset(f_int_field);
}
static public void main(String[] args) {
for (int i = 0; i < 20_000; i++) {
byte res = test1();
if (res != -1) {
throw new RuntimeException("Incorrect result: " + res);
}
res = test2();
if (res != -1) {
throw new RuntimeException("Incorrect result: " + res);
}
}
}
static byte test1() {
MismatchedUnsafeLoadFromNewObject t = new MismatchedUnsafeLoadFromNewObject();
return unsafe.getByte(t, f_int_off);
}
static byte test2() {
MismatchedUnsafeLoadFromNewObject t = new MismatchedUnsafeLoadFromNewObject();
return unsafe.getByte(t, f_int_off+1);
}
}
test1() causes the compiler to crash, test2() returns incorrect result
# Internal Error (/home/roland/hs/src/hotspot/share/opto/lcm.cpp:1162), pid=17302, tid=17315
# assert(false) failed: graph should be schedulable
Stack: [0x00007fe7af3fc000,0x00007fe7af4fd000], sp=0x00007fe7af4f7ce0, free space=1007k
Native frames: (J=compiled Java code, A=aot compiled Java code, j=interpreted, Vv=VM code, C=native code)
V [libjvm.so+0x119dc39] PhaseCFG::schedule_local(Block*, GrowableArray<int>&, VectorSet&, long*)+0x739
V [libjvm.so+0xd5b00d] PhaseCFG::global_code_motion()+0xc1d
V [libjvm.so+0xd5cfa1] PhaseCFG::do_global_code_motion()+0x51
V [libjvm.so+0xa17d9c] Compile::Code_Gen()+0x28c
V [libjvm.so+0xa1bffb] Compile::Compile(ciEnv*, C2Compiler*, ciMethod*, int, bool, bool, bool, DirectiveSet*)+0x123b
V [libjvm.so+0x81e401] C2Compiler::compile_method(ciEnv*, ciMethod*, int, DirectiveSet*)+0xd1
V [libjvm.so+0xa28c42] CompileBroker::invoke_compiler_on_method(CompileTask*)+0x452
V [libjvm.so+0xa29b90] CompileBroker::compiler_thread_loop()+0x370
V [libjvm.so+0x186e68f] JavaThread::thread_main_inner()+0x2cf
V [libjvm.so+0x1878981] JavaThread::run()+0x1c1
V [libjvm.so+0x1875820] Thread::call_run()+0x100
V [libjvm.so+0x147352d] thread_native_entry(Thread*)+0x10d
public volatile int f_int = -1;
public static Unsafe unsafe = Unsafe.getUnsafe();
public static final long f_int_off;
static {
Field f_int_field = null;
try {
f_int_field = CASandCAEwithNegExpected.class.getField("f_int");
} catch (Exception e) {
System.out.println("reflection failed " + e);
e.printStackTrace();
}
f_int_off = unsafe.objectFieldOffset(f_int_field);
}
static public void main(String[] args) {
for (int i = 0; i < 20_000; i++) {
byte res = test1();
if (res != -1) {
throw new RuntimeException("Incorrect result: " + res);
}
res = test2();
if (res != -1) {
throw new RuntimeException("Incorrect result: " + res);
}
}
}
static byte test1() {
MismatchedUnsafeLoadFromNewObject t = new MismatchedUnsafeLoadFromNewObject();
return unsafe.getByte(t, f_int_off);
}
static byte test2() {
MismatchedUnsafeLoadFromNewObject t = new MismatchedUnsafeLoadFromNewObject();
return unsafe.getByte(t, f_int_off+1);
}
}
test1() causes the compiler to crash, test2() returns incorrect result
# Internal Error (/home/roland/hs/src/hotspot/share/opto/lcm.cpp:1162), pid=17302, tid=17315
# assert(false) failed: graph should be schedulable
Stack: [0x00007fe7af3fc000,0x00007fe7af4fd000], sp=0x00007fe7af4f7ce0, free space=1007k
Native frames: (J=compiled Java code, A=aot compiled Java code, j=interpreted, Vv=VM code, C=native code)
V [libjvm.so+0x119dc39] PhaseCFG::schedule_local(Block*, GrowableArray<int>&, VectorSet&, long*)+0x739
V [libjvm.so+0xd5b00d] PhaseCFG::global_code_motion()+0xc1d
V [libjvm.so+0xd5cfa1] PhaseCFG::do_global_code_motion()+0x51
V [libjvm.so+0xa17d9c] Compile::Code_Gen()+0x28c
V [libjvm.so+0xa1bffb] Compile::Compile(ciEnv*, C2Compiler*, ciMethod*, int, bool, bool, bool, DirectiveSet*)+0x123b
V [libjvm.so+0x81e401] C2Compiler::compile_method(ciEnv*, ciMethod*, int, DirectiveSet*)+0xd1
V [libjvm.so+0xa28c42] CompileBroker::invoke_compiler_on_method(CompileTask*)+0x452
V [libjvm.so+0xa29b90] CompileBroker::compiler_thread_loop()+0x370
V [libjvm.so+0x186e68f] JavaThread::thread_main_inner()+0x2cf
V [libjvm.so+0x1878981] JavaThread::run()+0x1c1
V [libjvm.so+0x1875820] Thread::call_run()+0x100
V [libjvm.so+0x147352d] thread_native_entry(Thread*)+0x10d
- backported by
-
JDK-8217028 Mismatched unsafe access to non escaping object fails
- Resolved
-
JDK-8217086 Mismatched unsafe access to non escaping object fails
- Resolved
-
JDK-8226673 Mismatched unsafe access to non escaping object fails
- Resolved
-
JDK-8226937 Mismatched unsafe access to non escaping object fails
- Resolved