src/share/vm/gc_implementation/g1/heapRegionSeq.hpp

Mon, 24 Mar 2014 15:30:14 +0100

author
tschatzl
date
Mon, 24 Mar 2014 15:30:14 +0100
changeset 6402
191174b49bec
parent 6198
55fb97c4c58d
child 6876
710a3c8b516e
child 7049
eec72fa4b108
permissions
-rw-r--r--

8035406: Improve data structure for Code Cache remembered sets
Summary: Change the code cache remembered sets data structure from a GrowableArray to a chunked list of nmethods. This makes the data structure more amenable to parallelization, and decreases freeing time.
Reviewed-by: mgerdin, brutisso

ysr@777 1 /*
mikael@6198 2 * Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
ysr@777 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ysr@777 4 *
ysr@777 5 * This code is free software; you can redistribute it and/or modify it
ysr@777 6 * under the terms of the GNU General Public License version 2 only, as
ysr@777 7 * published by the Free Software Foundation.
ysr@777 8 *
ysr@777 9 * This code is distributed in the hope that it will be useful, but WITHOUT
ysr@777 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ysr@777 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ysr@777 12 * version 2 for more details (a copy is included in the LICENSE file that
ysr@777 13 * accompanied this code).
ysr@777 14 *
ysr@777 15 * You should have received a copy of the GNU General Public License version
ysr@777 16 * 2 along with this work; if not, write to the Free Software Foundation,
ysr@777 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ysr@777 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
ysr@777 22 *
ysr@777 23 */
ysr@777 24
stefank@2314 25 #ifndef SHARE_VM_GC_IMPLEMENTATION_G1_HEAPREGIONSEQ_HPP
stefank@2314 26 #define SHARE_VM_GC_IMPLEMENTATION_G1_HEAPREGIONSEQ_HPP
stefank@2314 27
tschatzl@5773 28 #include "gc_implementation/g1/g1BiasedArray.hpp"
tschatzl@5773 29
ysr@777 30 class HeapRegion;
ysr@777 31 class HeapRegionClosure;
tonyp@2963 32 class FreeRegionList;
tonyp@2963 33
tschatzl@5773 34 class G1HeapRegionTable : public G1BiasedMappedArray<HeapRegion*> {
tschatzl@5773 35 protected:
tschatzl@5773 36 virtual HeapRegion* default_value() const { return NULL; }
tschatzl@5773 37 };
tschatzl@5773 38
tonyp@2963 39 // This class keeps track of the region metadata (i.e., HeapRegion
tonyp@2963 40 // instances). They are kept in the _regions array in address
tonyp@2963 41 // order. A region's index in the array corresponds to its index in
tonyp@2963 42 // the heap (i.e., 0 is the region at the bottom of the heap, 1 is
tonyp@2963 43 // the one after it, etc.). Two regions that are consecutive in the
tonyp@2963 44 // array should also be adjacent in the address space (i.e.,
tonyp@2963 45 // region(i).end() == region(i+1).bottom().
tonyp@2963 46 //
tonyp@2963 47 // We create a HeapRegion when we commit the region's address space
tonyp@2963 48 // for the first time. When we uncommit the address space of a
tonyp@2963 49 // region we retain the HeapRegion to be able to re-use it in the
tonyp@2963 50 // future (in case we recommit it).
tonyp@2963 51 //
tonyp@2963 52 // We keep track of three lengths:
tonyp@2963 53 //
tschatzl@5773 54 // * _committed_length (returned by length()) is the number of currently
tonyp@2963 55 // committed regions.
tonyp@2963 56 // * _allocated_length (not exposed outside this class) is the
tonyp@2963 57 // number of regions for which we have HeapRegions.
tschatzl@5773 58 // * max_length() returns the maximum number of regions the heap can have.
tonyp@2963 59 //
tschatzl@5773 60 // and maintain that: _committed_length <= _allocated_length <= max_length()
ysr@777 61
zgu@3900 62 class HeapRegionSeq: public CHeapObj<mtGC> {
tonyp@3168 63 friend class VMStructs;
ysr@777 64
tschatzl@5773 65 G1HeapRegionTable _regions;
ysr@777 66
tonyp@2963 67 // The number of regions committed in the heap.
tschatzl@5773 68 uint _committed_length;
tonyp@2963 69
tonyp@2963 70 // A hint for which index to start searching from for humongous
tonyp@2963 71 // allocations.
tonyp@3713 72 uint _next_search_index;
tonyp@2963 73
tonyp@2963 74 // The number of regions for which we have allocated HeapRegions for.
tonyp@3713 75 uint _allocated_length;
tonyp@2963 76
tonyp@2963 77 // Find a contiguous set of empty regions of length num, starting
tonyp@2963 78 // from the given index.
tonyp@3713 79 uint find_contiguous_from(uint from, uint num);
tonyp@2963 80
brutisso@5074 81 void increment_allocated_length() {
tschatzl@5773 82 assert(_allocated_length < max_length(), "pre-condition");
brutisso@5074 83 _allocated_length++;
tonyp@2963 84 }
tonyp@2963 85
brutisso@5074 86 void increment_length() {
tschatzl@5773 87 assert(length() < max_length(), "pre-condition");
tschatzl@5773 88 _committed_length++;
brutisso@5074 89 }
brutisso@5074 90
brutisso@5074 91 void decrement_length() {
tschatzl@5773 92 assert(length() > 0, "pre-condition");
tschatzl@5773 93 _committed_length--;
tonyp@2963 94 }
ysr@777 95
tschatzl@5773 96 HeapWord* heap_bottom() const { return _regions.bottom_address_mapped(); }
tschatzl@5773 97 HeapWord* heap_end() const {return _regions.end_address_mapped(); }
tschatzl@5773 98
ysr@777 99 public:
tonyp@2963 100 // Empty contructor, we'll initialize it with the initialize() method.
tschatzl@5773 101 HeapRegionSeq() : _regions(), _committed_length(0), _next_search_index(0), _allocated_length(0) { }
ysr@777 102
tschatzl@5773 103 void initialize(HeapWord* bottom, HeapWord* end);
ysr@777 104
tonyp@2963 105 // Return the HeapRegion at the given index. Assume that the index
tonyp@2963 106 // is valid.
tonyp@3713 107 inline HeapRegion* at(uint index) const;
ysr@777 108
tonyp@2963 109 // If addr is within the committed space return its corresponding
tonyp@2963 110 // HeapRegion, otherwise return NULL.
tonyp@2963 111 inline HeapRegion* addr_to_region(HeapWord* addr) const;
ysr@777 112
tonyp@2963 113 // Return the HeapRegion that corresponds to the given
tonyp@2963 114 // address. Assume the address is valid.
tonyp@2963 115 inline HeapRegion* addr_to_region_unsafe(HeapWord* addr) const;
ysr@777 116
tonyp@2963 117 // Return the number of regions that have been committed in the heap.
tschatzl@5773 118 uint length() const { return _committed_length; }
tonyp@2963 119
tonyp@2963 120 // Return the maximum number of regions in the heap.
tschatzl@5773 121 uint max_length() const { return (uint)_regions.length(); }
tonyp@2963 122
tonyp@2963 123 // Expand the sequence to reflect that the heap has grown from
tonyp@2963 124 // old_end to new_end. Either create new HeapRegions, or re-use
tonyp@2963 125 // existing ones, and return them in the given list. Returns the
tonyp@2963 126 // memory region that covers the newly-created regions. If a
tonyp@2963 127 // HeapRegion allocation fails, the result memory region might be
tonyp@2963 128 // smaller than the desired one.
tonyp@2963 129 MemRegion expand_by(HeapWord* old_end, HeapWord* new_end,
tonyp@2963 130 FreeRegionList* list);
tonyp@2963 131
tonyp@2963 132 // Return the number of contiguous regions at the end of the sequence
ysr@777 133 // that are available for allocation.
tonyp@3713 134 uint free_suffix();
ysr@777 135
tonyp@2643 136 // Find a contiguous set of empty regions of length num and return
tonyp@2963 137 // the index of the first region or G1_NULL_HRS_INDEX if the
tonyp@2963 138 // search was unsuccessful.
tonyp@3713 139 uint find_contiguous(uint num);
ysr@777 140
tonyp@2963 141 // Apply blk->doHeapRegion() on all committed regions in address order,
tonyp@2963 142 // terminating the iteration early if doHeapRegion() returns true.
tonyp@2963 143 void iterate(HeapRegionClosure* blk) const;
ysr@777 144
tonyp@2963 145 // As above, but start the iteration from hr and loop around. If hr
tonyp@2963 146 // is NULL, we start from the first region in the heap.
tonyp@2963 147 void iterate_from(HeapRegion* hr, HeapRegionClosure* blk) const;
ysr@777 148
tonyp@2963 149 // Tag as uncommitted as many regions that are completely free as
brutisso@5074 150 // possible, up to num_regions_to_remove, from the suffix of the committed
brutisso@5074 151 // sequence. Return the actual number of removed regions.
brutisso@5074 152 uint shrink_by(uint num_regions_to_remove);
ysr@777 153
tonyp@2963 154 // Do some sanity checking.
tonyp@2963 155 void verify_optional() PRODUCT_RETURN;
ysr@777 156 };
stefank@2314 157
stefank@2314 158 #endif // SHARE_VM_GC_IMPLEMENTATION_G1_HEAPREGIONSEQ_HPP

mercurial