JDK-6258466 : CTW failure in optimize_inlining()
  • Type: Bug
  • Component: hotspot
  • Sub-Component: compiler
  • Affected Version: 1.4.2_07,6
  • Priority: P3
  • Status: Resolved
  • Resolution: Fixed
  • OS: generic,solaris_8
  • CPU: generic,sparc
  • Submitted: 2005-04-20
  • Updated: 2010-12-08
  • Resolved: 2005-06-22
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other JDK 6
1.4.2_15Fixed 6 b35Fixed
Related Reports
Duplicate :  
Description
CTW runs for appserver.jar and jck13classes.jar fail on Sparc and possibly other platforms.

For example,

java -server -Xss4m -verify -XX:-ShowMessageBoxOnError -XX:+CompileTheWorld -XX:CompileTheWorldStartAt=1 -Xbootclasspath/p:/net/vmsqe.sfbay/export/backup/testbase/CompileTheWorld/jarfiles/appserver.jar

causes a SEGV.
###@###.### 2005-04-20 16:17:25 GMT

Comments
SUGGESTED FIX See PRT webrev for complete change: http://analemma.sfbay.sun.com/net/prt-archiver.sfbay/data/archived_workspaces/main/c2_baseline/2005/20050426070028.rasbold.c2_baseline5/workspace/webrevs/webrev-2005.04.26/index.html If this fix is to be backported, the only required change is replacing ! if (exact_method->holder() != actual_receiver) { ! exact_method = NULL; ! } ! if (exact_method != NULL) { with: ! if (exact_method != NULL && exact_method->holder() == actual_receiver) { ###@###.### 2005-04-26 18:17:19 GMT
26-04-2005

EVALUATION The fix for 6189687 left an unchecked NULL pointer reference. ###@###.### 2005-04-20 16:17:25 GMT
20-04-2005