Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6306746

Add assertions to GrowableArray and ResourceObj

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 6
    • 6
    • hotspot
    • None
    • b52
    • generic
    • generic

        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.
        -
        -
        -
        -
        -
        -

              coleenp Coleen Phillimore
              kbr Kenneth Russell (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: