Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2143718 | 5.0u12 | Kevin Walls | P4 | Closed | Won't Fix | |
JDK-2143717 | 1.4.2_14 | Kevin Walls | P4 | Closed | Won't Fix |
A longstanding bug (6306530) recently came to light in which a
GrowableArray was being allocated with the "C_heap" argument set to
true but the GrowableArray itself (a ResourceObj) was being allocated
without the ResourceObj::C_HEAP flag passed to operator new. This
caused the GrowableArray object (containing the nesting, arena and
data pointers) to be accidentally destroyed and overwritten.
While in some cases it is not incorrect to allocate a GrowableArray in
this fashion (for example, when the initial allocation is performed at
a well-known ResourceMark nesting but modifications to it will not
be), in general this is problematic usage and should be disallowed. In
debug mode, ResourceObj and NonPrintingResourceObj should record
whether they were allocated from the C heap, and the GrowableArray
constructor should assert that if the C_heap argument is true, that
the GrowableArray itself was allocated from the C heap.
-
-
-
-
-
-
GrowableArray was being allocated with the "C_heap" argument set to
true but the GrowableArray itself (a ResourceObj) was being allocated
without the ResourceObj::C_HEAP flag passed to operator new. This
caused the GrowableArray object (containing the nesting, arena and
data pointers) to be accidentally destroyed and overwritten.
While in some cases it is not incorrect to allocate a GrowableArray in
this fashion (for example, when the initial allocation is performed at
a well-known ResourceMark nesting but modifications to it will not
be), in general this is problematic usage and should be disallowed. In
debug mode, ResourceObj and NonPrintingResourceObj should record
whether they were allocated from the C heap, and the GrowableArray
constructor should assert that if the C_heap argument is true, that
the GrowableArray itself was allocated from the C heap.
-
-
-
-
-
-
- backported by
-
JDK-2143717 Add assertions to GrowableArray and ResourceObj
-
- Closed
-
-
JDK-2143718 Add assertions to GrowableArray and ResourceObj
-
- Closed
-
- relates to
-
JDK-6420984 Fastdebug Server VM asserts with -XX:+TraceIterativeGVN
-
- Resolved
-
-
JDK-6306730 Incorrect management of C-heap GrowableArrays
-
- Resolved
-
-
JDK-6469701 java.lang.Thread.getStackTrace() causes memory leaks in the VM
-
- Closed
-