Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2182208 | 7 | Changpeng Fang | P4 | Closed | Fixed | b71 |
JDK-2181952 | 6u18 | Changpeng Fang | P4 | Resolved | Fixed | b01 |
refworkload/vm/bin/java -server -javaagent:/net/smite/never/emptyagent.jar -Xss4m -verify -XX:-ShowMessageBoxOnError -XX:+CompileTheWorld -Xbootclasspath/p:/net/vmsqe.sfbay/export/backup/testbase/CompileTheWorld/jarfiles/Dynamo4.1.0.jar
CompileTheWorld (629) : atg/servlet/pipeline/FileFinderPipelineServletBeanInfo
# To suppress the following error report, specify this argument
# after -XX: or in .hotspotrc: SuppressErrorAt=/graphKit.cpp:211
#
# A fatal error has been detected by the Java Runtime Environment:
#
# Internal Error (/home/cf231476/hg/6833129/src/share/vm/opto/graphKit.cpp:211), pid=15728, tid=12
# Error: assert(ex_map->jvms()->same_calls_as(_exceptions->jvms()),"all collected exceptions must come from the same place")
#
# JRE version: 6.0_03-b05
# Java VM: OpenJDK Server VM (16.0-b06-internal-jvmg mixed mode solaris-x86 )
# An error report file with more information is saved as:
# /home/cf231476/hs_err_pid15728.log
#
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
The reason of the assertion is that in inline native clone intrinsics, the reexecute
bit was not set for the null check at the very beginning, and then set to true for
allocation and copy. Both the null check and the later part may raise exceptions, and
thus the assertion on two exception's jvmstates will see different reexecute bits.
CompileTheWorld (629) : atg/servlet/pipeline/FileFinderPipelineServletBeanInfo
# To suppress the following error report, specify this argument
# after -XX: or in .hotspotrc: SuppressErrorAt=/graphKit.cpp:211
#
# A fatal error has been detected by the Java Runtime Environment:
#
# Internal Error (/home/cf231476/hg/6833129/src/share/vm/opto/graphKit.cpp:211), pid=15728, tid=12
# Error: assert(ex_map->jvms()->same_calls_as(_exceptions->jvms()),"all collected exceptions must come from the same place")
#
# JRE version: 6.0_03-b05
# Java VM: OpenJDK Server VM (16.0-b06-internal-jvmg mixed mode solaris-x86 )
# An error report file with more information is saved as:
# /home/cf231476/hs_err_pid15728.log
#
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
The reason of the assertion is that in inline native clone intrinsics, the reexecute
bit was not set for the null check at the very beginning, and then set to true for
allocation and copy. Both the null check and the later part may raise exceptions, and
thus the assertion on two exception's jvmstates will see different reexecute bits.
- backported by
-
JDK-2181952 CompileTheWorld assertion failure introduced by the reexecute bit implementation
- Resolved
-
JDK-2182208 CompileTheWorld assertion failure introduced by the reexecute bit implementation
- Closed
- relates to
-
JDK-8278846 C2: revisit exception propagation
- Open