Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2172403 | 7 | Tom Rodriguez | P3 | Closed | Fixed | b42 |
JDK-2170222 | 6u12 | Tom Rodriguez | P3 | Resolved | Fixed | b01 |
JDK-2169326 | hs11 | Tom Rodriguez | P3 | Resolved | Fixed | b17 |
Hi Tom,
One question regarding deoptimization and C1: the StoreField and
LoadField code relies on deoptimization in case a load/store cannot be
determined to be volatile at compile time.
In the c1 runtime patch_code method, a VM_DeoptimizeFrame vm operation
is executed. What is puzzling me, is that when I follow the code of this
vm operation I don't find where the nmethod is made not entrant so that
the method will eventually be recompiled.
Indeed when I run this simple test:
public class TestDeopt {
static class A {
volatile int i;
}
static void m() {
A a = new A();
a.i = 0;
}
static public void main(String[] args) {
m();
m();
m();
}
}
With:
-client -Xcomp -XX:+PrintCompilation -XX:-Inline -XX:+TracePatching -XX:+TraceDeoptimization
I see the m method being compiled once but I see 3 "Deoptimizing for
patching volatile field reference" which proves that the compiled code
is not dropped.
Am I missing something?
Thanks,
Roland.
One question regarding deoptimization and C1: the StoreField and
LoadField code relies on deoptimization in case a load/store cannot be
determined to be volatile at compile time.
In the c1 runtime patch_code method, a VM_DeoptimizeFrame vm operation
is executed. What is puzzling me, is that when I follow the code of this
vm operation I don't find where the nmethod is made not entrant so that
the method will eventually be recompiled.
Indeed when I run this simple test:
public class TestDeopt {
static class A {
volatile int i;
}
static void m() {
A a = new A();
a.i = 0;
}
static public void main(String[] args) {
m();
m();
m();
}
}
With:
-client -Xcomp -XX:+PrintCompilation -XX:-Inline -XX:+TracePatching -XX:+TraceDeoptimization
I see the m method being compiled once but I see 3 "Deoptimizing for
patching volatile field reference" which proves that the compiled code
is not dropped.
Am I missing something?
Thanks,
Roland.
- backported by
-
JDK-2169326 missing call to make_not_entrant after deoptimizing for patching volatiles
-
- Resolved
-
-
JDK-2170222 missing call to make_not_entrant after deoptimizing for patching volatiles
-
- Resolved
-
-
JDK-2172403 missing call to make_not_entrant after deoptimizing for patching volatiles
-
- Closed
-