src/share/vm/gc_implementation/concurrentMarkSweep/binaryTreeDictionary.hpp

Thu, 06 Jan 2011 23:50:02 -0800

author
ysr
date
Thu, 06 Jan 2011 23:50:02 -0800
changeset 2452
4947ee68d19c
parent 2314
f95d63e2154a
permissions
-rw-r--r--

7008136: CMS: assert((HeapWord*)nextChunk <= _limit) failed: sweep invariant
Summary: The recorded _sweep_limit may not necessarily remain a block boundary as the old generation expands during a concurrent cycle. Terminal actions inside the sweep closure need to be aware of this as they cross over the limit.
Reviewed-by: johnc, minqi

duke@435 1 /*
stefank@2314 2 * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 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.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_BINARYTREEDICTIONARY_HPP
stefank@2314 26 #define SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_BINARYTREEDICTIONARY_HPP
stefank@2314 27
stefank@2314 28 #include "gc_implementation/concurrentMarkSweep/freeBlockDictionary.hpp"
stefank@2314 29 #include "gc_implementation/concurrentMarkSweep/freeList.hpp"
stefank@2314 30
duke@435 31 /*
duke@435 32 * A binary tree based search structure for free blocks.
duke@435 33 * This is currently used in the Concurrent Mark&Sweep implementation.
duke@435 34 */
duke@435 35
duke@435 36 // A TreeList is a FreeList which can be used to maintain a
duke@435 37 // binary tree of free lists.
duke@435 38
duke@435 39 class TreeChunk;
duke@435 40 class BinaryTreeDictionary;
duke@435 41 class AscendTreeCensusClosure;
duke@435 42 class DescendTreeCensusClosure;
duke@435 43 class DescendTreeSearchClosure;
duke@435 44
duke@435 45 class TreeList: public FreeList {
duke@435 46 friend class TreeChunk;
duke@435 47 friend class BinaryTreeDictionary;
duke@435 48 friend class AscendTreeCensusClosure;
duke@435 49 friend class DescendTreeCensusClosure;
duke@435 50 friend class DescendTreeSearchClosure;
duke@435 51
duke@435 52 protected:
duke@435 53 TreeList* parent() const { return _parent; }
duke@435 54 TreeList* left() const { return _left; }
duke@435 55 TreeList* right() const { return _right; }
duke@435 56
duke@435 57 // Accessors for links in tree.
duke@435 58
duke@435 59 void setLeft(TreeList* tl) {
duke@435 60 _left = tl;
duke@435 61 if (tl != NULL)
duke@435 62 tl->setParent(this);
duke@435 63 }
duke@435 64 void setRight(TreeList* tl) {
duke@435 65 _right = tl;
duke@435 66 if (tl != NULL)
duke@435 67 tl->setParent(this);
duke@435 68 }
duke@435 69 void setParent(TreeList* tl) { _parent = tl; }
duke@435 70
duke@435 71 void clearLeft() { _left = NULL; }
duke@435 72 void clearRight() { _right = NULL; }
duke@435 73 void clearParent() { _parent = NULL; }
duke@435 74 void initialize() { clearLeft(); clearRight(), clearParent(); }
duke@435 75
duke@435 76 // For constructing a TreeList from a Tree chunk or
duke@435 77 // address and size.
duke@435 78 static TreeList* as_TreeList(TreeChunk* tc);
duke@435 79 static TreeList* as_TreeList(HeapWord* addr, size_t size);
duke@435 80
duke@435 81 // Returns the head of the free list as a pointer to a TreeChunk.
duke@435 82 TreeChunk* head_as_TreeChunk();
duke@435 83
duke@435 84 // Returns the first available chunk in the free list as a pointer
duke@435 85 // to a TreeChunk.
duke@435 86 TreeChunk* first_available();
duke@435 87
ysr@1580 88 // Returns the block with the largest heap address amongst
ysr@1580 89 // those in the list for this size; potentially slow and expensive,
ysr@1580 90 // use with caution!
ysr@1580 91 TreeChunk* largest_address();
ysr@1580 92
duke@435 93 // removeChunkReplaceIfNeeded() removes the given "tc" from the TreeList.
duke@435 94 // If "tc" is the first chunk in the list, it is also the
duke@435 95 // TreeList that is the node in the tree. removeChunkReplaceIfNeeded()
duke@435 96 // returns the possibly replaced TreeList* for the node in
duke@435 97 // the tree. It also updates the parent of the original
duke@435 98 // node to point to the new node.
duke@435 99 TreeList* removeChunkReplaceIfNeeded(TreeChunk* tc);
duke@435 100 // See FreeList.
duke@435 101 void returnChunkAtHead(TreeChunk* tc);
duke@435 102 void returnChunkAtTail(TreeChunk* tc);
duke@435 103 };
duke@435 104
duke@435 105 // A TreeChunk is a subclass of a FreeChunk that additionally
duke@435 106 // maintains a pointer to the free list on which it is currently
duke@435 107 // linked.
duke@435 108 // A TreeChunk is also used as a node in the binary tree. This
duke@435 109 // allows the binary tree to be maintained without any additional
duke@435 110 // storage (the free chunks are used). In a binary tree the first
duke@435 111 // chunk in the free list is also the tree node. Note that the
duke@435 112 // TreeChunk has an embedded TreeList for this purpose. Because
duke@435 113 // the first chunk in the list is distinguished in this fashion
duke@435 114 // (also is the node in the tree), it is the last chunk to be found
duke@435 115 // on the free list for a node in the tree and is only removed if
duke@435 116 // it is the last chunk on the free list.
duke@435 117
duke@435 118 class TreeChunk : public FreeChunk {
duke@435 119 friend class TreeList;
duke@435 120 TreeList* _list;
duke@435 121 TreeList _embedded_list; // if non-null, this chunk is on _list
duke@435 122 protected:
duke@435 123 TreeList* embedded_list() const { return (TreeList*) &_embedded_list; }
duke@435 124 void set_embedded_list(TreeList* v) { _embedded_list = *v; }
duke@435 125 public:
duke@435 126 TreeList* list() { return _list; }
duke@435 127 void set_list(TreeList* v) { _list = v; }
duke@435 128 static TreeChunk* as_TreeChunk(FreeChunk* fc);
duke@435 129 // Initialize fields in a TreeChunk that should be
duke@435 130 // initialized when the TreeChunk is being added to
duke@435 131 // a free list in the tree.
duke@435 132 void initialize() { embedded_list()->initialize(); }
duke@435 133
duke@435 134 // debugging
duke@435 135 void verifyTreeChunkList() const;
duke@435 136 };
duke@435 137
duke@435 138 const size_t MIN_TREE_CHUNK_SIZE = sizeof(TreeChunk)/HeapWordSize;
duke@435 139
duke@435 140 class BinaryTreeDictionary: public FreeBlockDictionary {
dcubed@587 141 friend class VMStructs;
duke@435 142 bool _splay;
duke@435 143 size_t _totalSize;
duke@435 144 size_t _totalFreeBlocks;
duke@435 145 TreeList* _root;
duke@435 146
duke@435 147 // private accessors
duke@435 148 bool splay() const { return _splay; }
duke@435 149 void set_splay(bool v) { _splay = v; }
duke@435 150 size_t totalSize() const { return _totalSize; }
duke@435 151 void set_totalSize(size_t v) { _totalSize = v; }
duke@435 152 virtual void inc_totalSize(size_t v);
duke@435 153 virtual void dec_totalSize(size_t v);
duke@435 154 size_t totalFreeBlocks() const { return _totalFreeBlocks; }
duke@435 155 void set_totalFreeBlocks(size_t v) { _totalFreeBlocks = v; }
duke@435 156 TreeList* root() const { return _root; }
duke@435 157 void set_root(TreeList* v) { _root = v; }
duke@435 158
duke@435 159 // Remove a chunk of size "size" or larger from the tree and
duke@435 160 // return it. If the chunk
duke@435 161 // is the last chunk of that size, remove the node for that size
duke@435 162 // from the tree.
duke@435 163 TreeChunk* getChunkFromTree(size_t size, Dither dither, bool splay);
duke@435 164 // Return a list of the specified size or NULL from the tree.
duke@435 165 // The list is not removed from the tree.
duke@435 166 TreeList* findList (size_t size) const;
duke@435 167 // Remove this chunk from the tree. If the removal results
duke@435 168 // in an empty list in the tree, remove the empty list.
duke@435 169 TreeChunk* removeChunkFromTree(TreeChunk* tc);
duke@435 170 // Remove the node in the trees starting at tl that has the
duke@435 171 // minimum value and return it. Repair the tree as needed.
duke@435 172 TreeList* removeTreeMinimum(TreeList* tl);
duke@435 173 void semiSplayStep(TreeList* tl);
duke@435 174 // Add this free chunk to the tree.
duke@435 175 void insertChunkInTree(FreeChunk* freeChunk);
duke@435 176 public:
duke@435 177 void verifyTree() const;
duke@435 178 // verify that the given chunk is in the tree.
duke@435 179 bool verifyChunkInFreeLists(FreeChunk* tc) const;
duke@435 180 private:
duke@435 181 void verifyTreeHelper(TreeList* tl) const;
duke@435 182 static size_t verifyPrevFreePtrs(TreeList* tl);
duke@435 183
duke@435 184 // Returns the total number of chunks in the list.
duke@435 185 size_t totalListLength(TreeList* tl) const;
duke@435 186 // Returns the total number of words in the chunks in the tree
duke@435 187 // starting at "tl".
duke@435 188 size_t totalSizeInTree(TreeList* tl) const;
duke@435 189 // Returns the sum of the square of the size of each block
duke@435 190 // in the tree starting at "tl".
duke@435 191 double sum_of_squared_block_sizes(TreeList* const tl) const;
duke@435 192 // Returns the total number of free blocks in the tree starting
duke@435 193 // at "tl".
duke@435 194 size_t totalFreeBlocksInTree(TreeList* tl) const;
duke@435 195 size_t numFreeBlocks() const;
duke@435 196 size_t treeHeight() const;
duke@435 197 size_t treeHeightHelper(TreeList* tl) const;
duke@435 198 size_t totalNodesInTree(TreeList* tl) const;
duke@435 199 size_t totalNodesHelper(TreeList* tl) const;
duke@435 200
duke@435 201 public:
duke@435 202 // Constructor
duke@435 203 BinaryTreeDictionary(MemRegion mr, bool splay = false);
duke@435 204
duke@435 205 // Reset the dictionary to the initial conditions with
duke@435 206 // a single free chunk.
duke@435 207 void reset(MemRegion mr);
duke@435 208 void reset(HeapWord* addr, size_t size);
duke@435 209 // Reset the dictionary to be empty.
duke@435 210 void reset();
duke@435 211
duke@435 212 // Return a chunk of size "size" or greater from
duke@435 213 // the tree.
duke@435 214 // want a better dynamic splay strategy for the future.
duke@435 215 FreeChunk* getChunk(size_t size, Dither dither) {
duke@435 216 verify_par_locked();
duke@435 217 FreeChunk* res = getChunkFromTree(size, dither, splay());
duke@435 218 assert(res == NULL || res->isFree(),
duke@435 219 "Should be returning a free chunk");
duke@435 220 return res;
duke@435 221 }
duke@435 222
duke@435 223 void returnChunk(FreeChunk* chunk) {
duke@435 224 verify_par_locked();
duke@435 225 insertChunkInTree(chunk);
duke@435 226 }
duke@435 227
duke@435 228 void removeChunk(FreeChunk* chunk) {
duke@435 229 verify_par_locked();
duke@435 230 removeChunkFromTree((TreeChunk*)chunk);
duke@435 231 assert(chunk->isFree(), "Should still be a free chunk");
duke@435 232 }
duke@435 233
duke@435 234 size_t maxChunkSize() const;
duke@435 235 size_t totalChunkSize(debug_only(const Mutex* lock)) const {
duke@435 236 debug_only(
duke@435 237 if (lock != NULL && lock->owned_by_self()) {
duke@435 238 assert(totalSizeInTree(root()) == totalSize(),
duke@435 239 "_totalSize inconsistency");
duke@435 240 }
duke@435 241 )
duke@435 242 return totalSize();
duke@435 243 }
duke@435 244
duke@435 245 size_t minSize() const {
duke@435 246 return MIN_TREE_CHUNK_SIZE;
duke@435 247 }
duke@435 248
duke@435 249 double sum_of_squared_block_sizes() const {
duke@435 250 return sum_of_squared_block_sizes(root());
duke@435 251 }
duke@435 252
duke@435 253 FreeChunk* find_chunk_ends_at(HeapWord* target) const;
duke@435 254
duke@435 255 // Find the list with size "size" in the binary tree and update
duke@435 256 // the statistics in the list according to "split" (chunk was
duke@435 257 // split or coalesce) and "birth" (chunk was added or removed).
duke@435 258 void dictCensusUpdate(size_t size, bool split, bool birth);
duke@435 259 // Return true if the dictionary is overpopulated (more chunks of
duke@435 260 // this size than desired) for size "size".
duke@435 261 bool coalDictOverPopulated(size_t size);
duke@435 262 // Methods called at the beginning of a sweep to prepare the
duke@435 263 // statistics for the sweep.
duke@435 264 void beginSweepDictCensus(double coalSurplusPercent,
ysr@1580 265 float inter_sweep_current,
ysr@1580 266 float inter_sweep_estimate,
ysr@1580 267 float intra_sweep_estimate);
duke@435 268 // Methods called after the end of a sweep to modify the
duke@435 269 // statistics for the sweep.
duke@435 270 void endSweepDictCensus(double splitSurplusPercent);
duke@435 271 // Return the largest free chunk in the tree.
duke@435 272 FreeChunk* findLargestDict() const;
duke@435 273 // Accessors for statistics
duke@435 274 void setTreeSurplus(double splitSurplusPercent);
duke@435 275 void setTreeHints(void);
duke@435 276 // Reset statistics for all the lists in the tree.
duke@435 277 void clearTreeCensus(void);
duke@435 278 // Print the statistcis for all the lists in the tree. Also may
duke@435 279 // print out summaries.
duke@435 280 void printDictCensus(void) const;
ysr@1580 281 void print_free_lists(outputStream* st) const;
duke@435 282
duke@435 283 // For debugging. Returns the sum of the _returnedBytes for
duke@435 284 // all lists in the tree.
duke@435 285 size_t sumDictReturnedBytes() PRODUCT_RETURN0;
duke@435 286 // Sets the _returnedBytes for all the lists in the tree to zero.
duke@435 287 void initializeDictReturnedBytes() PRODUCT_RETURN;
duke@435 288 // For debugging. Return the total number of chunks in the dictionary.
duke@435 289 size_t totalCount() PRODUCT_RETURN0;
duke@435 290
duke@435 291 void reportStatistics() const;
duke@435 292
duke@435 293 void verify() const;
duke@435 294 };
stefank@2314 295
stefank@2314 296 #endif // SHARE_VM_GC_IMPLEMENTATION_CONCURRENTMARKSWEEP_BINARYTREEDICTIONARY_HPP

mercurial