-
Bug
-
Resolution: Fixed
-
P3
-
6u10
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2183196 | 7 | Changpeng Fang | P3 | Closed | Fixed | b72 |
JDK-2190024 | 6u21 | Tom Rodriguez | P4 | Resolved | Fixed | b01 |
FULL PRODUCT VERSION :
java version "1.6.0_14"
Java(TM) SE Runtime Environment (build 1.6.0_14-b08)
Java HotSpot(TM) 64-Bit Server VM (build 14.0-b16, mixed mode)
AND
java version "1.7.0-ea"
Java(TM) SE Runtime Environment (build 1.7.0-ea-b59)
Java HotSpot(TM) 64-Bit Server VM (build 16.0-b03, mixed mode)
FULL OS VERSION :
Linux 2.6.18-128.1.14.el5 #1 SMP Wed Jun 17 06:38:05 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux
AND
Linux 2.6.18-92.1.22.el5 #1 SMP Tue Dec 16 11:57:43 EST 2008 x86_64 x86_64 x86_64 GNU/Linux
A DESCRIPTION OF THE PROBLEM :
I have a loop summing integers. In previous versions and builds of the JVM this returned the correct answer of 1. As of build 1.6.0_14-b08 it crashes the JVM. Because it does not crash when I use -Xint it looks like this is a JIT problem.
I have verified the failure on 2 machines.
THE PROBLEM WAS REPRODUCIBLE WITH -Xint FLAG: No
THE PROBLEM WAS REPRODUCIBLE WITH -server FLAG: Yes
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Run the attached class. In my experience it will crash at least 80% of the time.
EXPECTED VERSUS ACTUAL BEHAVIOR :
Expected output is two lines, each containing the character 1:
$ java Crash.java
1
1
Actual output:
$ java Crash
1
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x00002b1d96ff2793, pid=32558, tid=1091856704
#
# JRE version: 6.0_14-b08
# Java VM: Java HotSpot(TM) 64-Bit Server VM (14.0-b16 mixed mode linux-amd64 )
# Problematic frame:
# V [libjvm.so+0x1bd793]
#
# An error report file with more information is saved as:
# /home2/sean/hs_err_pid32558.log
#
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
#
Aborted
Actual trace file included below
Also, same failure on another machine:
everest[sean]:~> /usr/local/java/jdk1.7.0/bin/java -cp . Crash
1
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x00002acc101779b5, pid=17621, tid=1119455552
#
# JRE version: 7.0-b59
# Java VM: Java HotSpot(TM) 64-Bit Server VM (16.0-b03 mixed mode linux-amd64 )
# Problematic frame:
# V [libjvm.so+0x1eb9b5]
#
# An error report file with more information is saved as:
# /home/sean/hs_err_pid17621.log
#
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
#
Aborted
ERROR MESSAGES/STACK TRACES THAT OCCUR :
hs_err_pidNNNN.log contents removed - they are too large
for the bug reporting tool.
REPRODUCIBILITY :
This bug can be reproduced often.
---------- BEGIN SOURCE ----------
public class Crash {
static int sum() {
int s = 0;
for (int x = 1, y = 0; x != 0; x++, y--) {
s ^= y;
}
return s;
}
public static void main(final String[] args) {
for (int k = 0; k < 2; k++) {
System.err.println(String.valueOf(sum()));
}
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
Use older JVM, such as jdk1.6.0_13
java version "1.6.0_14"
Java(TM) SE Runtime Environment (build 1.6.0_14-b08)
Java HotSpot(TM) 64-Bit Server VM (build 14.0-b16, mixed mode)
AND
java version "1.7.0-ea"
Java(TM) SE Runtime Environment (build 1.7.0-ea-b59)
Java HotSpot(TM) 64-Bit Server VM (build 16.0-b03, mixed mode)
FULL OS VERSION :
Linux 2.6.18-128.1.14.el5 #1 SMP Wed Jun 17 06:38:05 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux
AND
Linux 2.6.18-92.1.22.el5 #1 SMP Tue Dec 16 11:57:43 EST 2008 x86_64 x86_64 x86_64 GNU/Linux
A DESCRIPTION OF THE PROBLEM :
I have a loop summing integers. In previous versions and builds of the JVM this returned the correct answer of 1. As of build 1.6.0_14-b08 it crashes the JVM. Because it does not crash when I use -Xint it looks like this is a JIT problem.
I have verified the failure on 2 machines.
THE PROBLEM WAS REPRODUCIBLE WITH -Xint FLAG: No
THE PROBLEM WAS REPRODUCIBLE WITH -server FLAG: Yes
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Run the attached class. In my experience it will crash at least 80% of the time.
EXPECTED VERSUS ACTUAL BEHAVIOR :
Expected output is two lines, each containing the character 1:
$ java Crash.java
1
1
Actual output:
$ java Crash
1
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x00002b1d96ff2793, pid=32558, tid=1091856704
#
# JRE version: 6.0_14-b08
# Java VM: Java HotSpot(TM) 64-Bit Server VM (14.0-b16 mixed mode linux-amd64 )
# Problematic frame:
# V [libjvm.so+0x1bd793]
#
# An error report file with more information is saved as:
# /home2/sean/hs_err_pid32558.log
#
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
#
Aborted
Actual trace file included below
Also, same failure on another machine:
everest[sean]:~> /usr/local/java/jdk1.7.0/bin/java -cp . Crash
1
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x00002acc101779b5, pid=17621, tid=1119455552
#
# JRE version: 7.0-b59
# Java VM: Java HotSpot(TM) 64-Bit Server VM (16.0-b03 mixed mode linux-amd64 )
# Problematic frame:
# V [libjvm.so+0x1eb9b5]
#
# An error report file with more information is saved as:
# /home/sean/hs_err_pid17621.log
#
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
#
Aborted
ERROR MESSAGES/STACK TRACES THAT OCCUR :
hs_err_pidNNNN.log contents removed - they are too large
for the bug reporting tool.
REPRODUCIBILITY :
This bug can be reproduced often.
---------- BEGIN SOURCE ----------
public class Crash {
static int sum() {
int s = 0;
for (int x = 1, y = 0; x != 0; x++, y--) {
s ^= y;
}
return s;
}
public static void main(final String[] args) {
for (int k = 0; k < 2; k++) {
System.err.println(String.valueOf(sum()));
}
}
}
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
Use older JVM, such as jdk1.6.0_13
- backported by
-
JDK-2190024 Regression: simple int sum crashes jvm (build 1.6.0_14-b08 and 1.7.0-ea-b59)
-
- Resolved
-
-
JDK-2183196 Regression: simple int sum crashes jvm (build 1.6.0_14-b08 and 1.7.0-ea-b59)
-
- Closed
-