-
Bug
-
Resolution: Fixed
-
P2
-
6
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2176848 | 7 | Tom Rodriguez | P3 | Closed | Fixed | b08 |
JDK-2146607 | 6u1 | Tom Rodriguez | P2 | Resolved | Fixed | b04 |
Please run the attached test programs(Test1.java) using Client VM or take a look at
the attached test result(result.txt). You'll notice that a variable(pre)'s value
is unexpectedly changed from true to false (at line 34 in result.txt) in the middle
of execution.
Based on circumstantial evidence, we think there is a bug in client VM.
Additional info:
- This bug is reproducible only with Client VM. Not reproducible with -server nor -Xint.
- This bug is not always reproducible. Please run the test program several times if you
don't see the symptom.
- Interestingly, this bug becomes non-reproducible
* if you comment out the assignment expression to a variable(brk) at line 17
or the "for" loop at line 27
- or -
* if you rearrange the order of two variable definitions at line 4 and 5.
boolean brk = true;
boolean pre = false;
According to the original bug reporter, this can be reproducible with a break statement with a label as well as a continue statement.
the attached test result(result.txt). You'll notice that a variable(pre)'s value
is unexpectedly changed from true to false (at line 34 in result.txt) in the middle
of execution.
Based on circumstantial evidence, we think there is a bug in client VM.
Additional info:
- This bug is reproducible only with Client VM. Not reproducible with -server nor -Xint.
- This bug is not always reproducible. Please run the test program several times if you
don't see the symptom.
- Interestingly, this bug becomes non-reproducible
* if you comment out the assignment expression to a variable(brk) at line 17
or the "for" loop at line 27
- or -
* if you rearrange the order of two variable definitions at line 4 and 5.
boolean brk = true;
boolean pre = false;
According to the original bug reporter, this can be reproducible with a break statement with a label as well as a continue statement.
- backported by
-
JDK-2146607 Strange behavior of Client VM (Unexpected value change on the specific situation)
-
- Resolved
-
-
JDK-2176848 Strange behavior of Client VM (Unexpected value change on the specific situation)
-
- Closed
-
- duplicates
-
JDK-6500213 inconsistent assignment of local variable
-
- Closed
-
-
JDK-6513210 Assignment of local variables does not work as expected in control flow
-
- Closed
-
-
JDK-6513211 Variable value corruption with JIT compilation
-
- Closed
-