Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2138026 | 5.0u10 | Chris Phillips | P3 | Resolved | Fixed | b01 |
JDK-2138027 | 1.4.2_13 | Chris Phillips | P3 | Resolved | Fixed | b01 |
JDK-2138028 | 1.3.1_19 | Chris Phillips | P3 | Resolved | Fixed | b01 |
The ResourceMark shown here is new in 1.5.0_06. It is incorrect, in that calls to "get_ctrl" can call "_nodes.map" which is a growable array. If the array DOES grow here, the then new storage will be allocated inside the ResourceMark, and reclaimed on exit from get_late_ctrl, leaving the _nodes data structure dangling.
//------------------------------get_late_ctrl----------------------------------
// Compute latest legal control.
Node *PhaseIdealLoop::get_late_ctrl( Node *n, Node *early ) {
ResourceMark rm; // Temp allocation
assert(early != NULL, "early control should not be NULL");
//------------------------------get_late_ctrl----------------------------------
// Compute latest legal control.
Node *PhaseIdealLoop::get_late_ctrl( Node *n, Node *early ) {
ResourceMark rm; // Temp allocation
assert(early != NULL, "early control should not be NULL");
- backported by
-
JDK-2138026 ResourceMark breaks growable array
-
- Resolved
-
-
JDK-2138027 ResourceMark breaks growable array
-
- Resolved
-
-
JDK-2138028 ResourceMark breaks growable array
-
- Resolved
-