Java Solaris Communities Sun Store Join SDN My Profile Why Join?
 
Bug Database
Bug Detail
Quick Lists
Top 25 Bugs
Top 25 RFE's
Recently Closed Bugs
Printable Page Printable Page


Bug Database
Bug ID: 6710487
Votes 0
Synopsis More than half of JDI Regression tests hang with COOPs in -Xcomp mode
Category hotspot:compiler2
Reported Against b01
Release Fixed hs14(b01)
State 10-Fix Delivered, bug
Priority: 2-High
Related Bugs 6689060
Submit Date 04-JUN-2008
Description
More than half of JDI Regression tests hang with COOPs in -Xcomp mode
and as result they fail with timeout.

See comments for more details.
Posted Date : 2008-06-04 12:53:09.0
Work Around
N/A
Evaluation
This change to LoadNode::make:

-      return new (C, 2) DecodeNNode(load, rt);
+      return DecodeNNode::decode(&gvn, load);

causes the problem.  The result of LoadNode::make is passed to _gvn.transform by GraphKit::make_load.  decode returns a preexisting Phi that gets simplified too early when passed to transform so that instead of getParent walking up the chain it calls getParent on the same object over and over again.
Posted Date : 2008-06-10 21:34:39.0
Comments
  
  Include a link with my name & email   


PLEASE NOTE: JDK6 is formerly known as Project Mustang