binaryTreeDictionary.hpp 12.7 KB
Newer Older
D
duke 已提交
1
/*
2
 * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
19 20 21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
D
duke 已提交
22 23 24
 *
 */

25 26
#ifndef SHARE_VM_MEMORY_BINARYTREEDICTIONARY_HPP
#define SHARE_VM_MEMORY_BINARYTREEDICTIONARY_HPP
27

28 29
#include "memory/freeBlockDictionary.hpp"
#include "memory/freeList.hpp"
30

D
duke 已提交
31 32
/*
 * A binary tree based search structure for free blocks.
33 34
 * This is currently used in the Concurrent Mark&Sweep implementation, but
 * will be used for free block management for metadata.
D
duke 已提交
35 36 37 38 39
 */

// A TreeList is a FreeList which can be used to maintain a
// binary tree of free lists.

40 41 42 43 44
template <class Chunk> class TreeChunk;
template <class Chunk> class BinaryTreeDictionary;
template <class Chunk> class AscendTreeCensusClosure;
template <class Chunk> class DescendTreeCensusClosure;
template <class Chunk> class DescendTreeSearchClosure;
D
duke 已提交
45

46 47 48 49 50 51 52 53 54 55 56
template <class Chunk>
class TreeList: public FreeList<Chunk> {
  friend class TreeChunk<Chunk>;
  friend class BinaryTreeDictionary<Chunk>;
  friend class AscendTreeCensusClosure<Chunk>;
  friend class DescendTreeCensusClosure<Chunk>;
  friend class DescendTreeSearchClosure<Chunk>;

  TreeList<Chunk>* _parent;
  TreeList<Chunk>* _left;
  TreeList<Chunk>* _right;
D
duke 已提交
57 58

 protected:
59 60 61 62 63 64 65 66 67 68 69
  TreeList<Chunk>* parent() const { return _parent; }
  TreeList<Chunk>* left()   const { return _left;   }
  TreeList<Chunk>* right()  const { return _right;  }

  // Wrapper on call to base class, to get the template to compile.
  Chunk* head() const { return FreeList<Chunk>::head(); }
  Chunk* tail() const { return FreeList<Chunk>::tail(); }
  void set_head(Chunk* head) { FreeList<Chunk>::set_head(head); }
  void set_tail(Chunk* tail) { FreeList<Chunk>::set_tail(tail); }

  size_t size() const { return FreeList<Chunk>::size(); }
D
duke 已提交
70 71 72

  // Accessors for links in tree.

73
  void set_left(TreeList<Chunk>* tl) {
D
duke 已提交
74 75
    _left   = tl;
    if (tl != NULL)
76
      tl->set_parent(this);
D
duke 已提交
77
  }
78
  void set_right(TreeList<Chunk>* tl) {
D
duke 已提交
79 80
    _right  = tl;
    if (tl != NULL)
81
      tl->set_parent(this);
D
duke 已提交
82
  }
83
  void set_parent(TreeList<Chunk>* tl)  { _parent = tl;   }
D
duke 已提交
84 85

  void clearLeft()               { _left = NULL;   }
86 87 88
  void clear_right()              { _right = NULL;  }
  void clear_parent()             { _parent = NULL; }
  void initialize()              { clearLeft(); clear_right(), clear_parent(); }
D
duke 已提交
89 90 91

  // For constructing a TreeList from a Tree chunk or
  // address and size.
92 93
  static TreeList<Chunk>* as_TreeList(TreeChunk<Chunk>* tc);
  static TreeList<Chunk>* as_TreeList(HeapWord* addr, size_t size);
D
duke 已提交
94 95

  // Returns the head of the free list as a pointer to a TreeChunk.
96
  TreeChunk<Chunk>* head_as_TreeChunk();
D
duke 已提交
97 98 99

  // Returns the first available chunk in the free list as a pointer
  // to a TreeChunk.
100
  TreeChunk<Chunk>* first_available();
D
duke 已提交
101

102 103 104
  // Returns the block with the largest heap address amongst
  // those in the list for this size; potentially slow and expensive,
  // use with caution!
105
  TreeChunk<Chunk>* largest_address();
106

107
  // remove_chunk_replace_if_needed() removes the given "tc" from the TreeList.
D
duke 已提交
108
  // If "tc" is the first chunk in the list, it is also the
109
  // TreeList that is the node in the tree.  remove_chunk_replace_if_needed()
D
duke 已提交
110 111 112
  // returns the possibly replaced TreeList* for the node in
  // the tree.  It also updates the parent of the original
  // node to point to the new node.
113
  TreeList<Chunk>* remove_chunk_replace_if_needed(TreeChunk<Chunk>* tc);
D
duke 已提交
114
  // See FreeList.
115 116
  void return_chunk_at_head(TreeChunk<Chunk>* tc);
  void return_chunk_at_tail(TreeChunk<Chunk>* tc);
D
duke 已提交
117 118
};

119
// A TreeChunk is a subclass of a Chunk that additionally
D
duke 已提交
120 121 122 123 124 125 126 127 128 129 130 131
// maintains a pointer to the free list on which it is currently
// linked.
// A TreeChunk is also used as a node in the binary tree.  This
// allows the binary tree to be maintained without any additional
// storage (the free chunks are used).  In a binary tree the first
// chunk in the free list is also the tree node.  Note that the
// TreeChunk has an embedded TreeList for this purpose.  Because
// the first chunk in the list is distinguished in this fashion
// (also is the node in the tree), it is the last chunk to be found
// on the free list for a node in the tree and is only removed if
// it is the last chunk on the free list.

132 133 134 135 136
template <class Chunk>
class TreeChunk : public Chunk {
  friend class TreeList<Chunk>;
  TreeList<Chunk>* _list;
  TreeList<Chunk> _embedded_list;  // if non-null, this chunk is on _list
D
duke 已提交
137
 protected:
138 139
  TreeList<Chunk>* embedded_list() const { return (TreeList<Chunk>*) &_embedded_list; }
  void set_embedded_list(TreeList<Chunk>* v) { _embedded_list = *v; }
D
duke 已提交
140
 public:
141 142 143
  TreeList<Chunk>* list() { return _list; }
  void set_list(TreeList<Chunk>* v) { _list = v; }
  static TreeChunk<Chunk>* as_TreeChunk(Chunk* fc);
D
duke 已提交
144 145 146 147 148
  // Initialize fields in a TreeChunk that should be
  // initialized when the TreeChunk is being added to
  // a free list in the tree.
  void initialize() { embedded_list()->initialize(); }

149 150 151 152
  Chunk* next() const { return Chunk::next(); }
  Chunk* prev() const { return Chunk::prev(); }
  size_t size() const volatile { return Chunk::size(); }

D
duke 已提交
153
  // debugging
154
  void verify_tree_chunk_list() const;
D
duke 已提交
155 156 157
};


158 159
template <class Chunk>
class BinaryTreeDictionary: public FreeBlockDictionary<Chunk> {
160
  friend class VMStructs;
D
duke 已提交
161
  bool       _splay;
162 163
  size_t     _total_size;
  size_t     _total_free_blocks;
164 165
  TreeList<Chunk>* _root;
  bool       _adaptive_freelists;
D
duke 已提交
166 167 168 169

  // private accessors
  bool splay() const { return _splay; }
  void set_splay(bool v) { _splay = v; }
170 171 172 173 174
  void set_total_size(size_t v) { _total_size = v; }
  virtual void inc_total_size(size_t v);
  virtual void dec_total_size(size_t v);
  size_t total_free_blocks() const { return _total_free_blocks; }
  void set_total_free_blocks(size_t v) { _total_free_blocks = v; }
175 176 177 178 179 180 181 182 183
  TreeList<Chunk>* root() const { return _root; }
  void set_root(TreeList<Chunk>* v) { _root = v; }
  bool adaptive_freelists() { return _adaptive_freelists; }

  // This field is added and can be set to point to the
  // the Mutex used to synchronize access to the
  // dictionary so that assertion checking can be done.
  // For example it is set to point to _parDictionaryAllocLock.
  NOT_PRODUCT(Mutex* _lock;)
D
duke 已提交
184 185 186 187 188

  // Remove a chunk of size "size" or larger from the tree and
  // return it.  If the chunk
  // is the last chunk of that size, remove the node for that size
  // from the tree.
189
  TreeChunk<Chunk>* get_chunk_from_tree(size_t size, enum FreeBlockDictionary<Chunk>::Dither dither, bool splay);
D
duke 已提交
190 191
  // Return a list of the specified size or NULL from the tree.
  // The list is not removed from the tree.
192
  TreeList<Chunk>* find_list (size_t size) const;
D
duke 已提交
193 194
  // Remove this chunk from the tree.  If the removal results
  // in an empty list in the tree, remove the empty list.
195
  TreeChunk<Chunk>* remove_chunk_from_tree(TreeChunk<Chunk>* tc);
D
duke 已提交
196 197
  // Remove the node in the trees starting at tl that has the
  // minimum value and return it.  Repair the tree as needed.
198 199
  TreeList<Chunk>* remove_tree_minimum(TreeList<Chunk>* tl);
  void       semi_splay_step(TreeList<Chunk>* tl);
D
duke 已提交
200
  // Add this free chunk to the tree.
201
  void       insert_chunk_in_tree(Chunk* freeChunk);
D
duke 已提交
202
 public:
203 204 205

  static const size_t min_tree_chunk_size  = sizeof(TreeChunk<Chunk>)/HeapWordSize;

206
  void       verify_tree() const;
D
duke 已提交
207
  // verify that the given chunk is in the tree.
208
  bool       verify_chunk_in_free_list(Chunk* tc) const;
D
duke 已提交
209
 private:
210 211
  void          verify_tree_helper(TreeList<Chunk>* tl) const;
  static size_t verify_prev_free_ptrs(TreeList<Chunk>* tl);
D
duke 已提交
212 213

  // Returns the total number of chunks in the list.
214
  size_t     total_list_length(TreeList<Chunk>* tl) const;
D
duke 已提交
215 216
  // Returns the total number of words in the chunks in the tree
  // starting at "tl".
217
  size_t     total_size_in_tree(TreeList<Chunk>* tl) const;
D
duke 已提交
218 219
  // Returns the sum of the square of the size of each block
  // in the tree starting at "tl".
220
  double     sum_of_squared_block_sizes(TreeList<Chunk>* const tl) const;
D
duke 已提交
221 222
  // Returns the total number of free blocks in the tree starting
  // at "tl".
223 224
  size_t     total_free_blocks_in_tree(TreeList<Chunk>* tl) const;
  size_t     num_free_blocks() const;
D
duke 已提交
225
  size_t     treeHeight() const;
226 227 228
  size_t     tree_height_helper(TreeList<Chunk>* tl) const;
  size_t     total_nodes_in_tree(TreeList<Chunk>* tl) const;
  size_t     total_nodes_helper(TreeList<Chunk>* tl) const;
D
duke 已提交
229 230 231

 public:
  // Constructor
232 233 234 235
  BinaryTreeDictionary(bool adaptive_freelists, bool splay = false);
  BinaryTreeDictionary(MemRegion mr, bool adaptive_freelists, bool splay = false);

  // Public accessors
236
  size_t total_size() const { return _total_size; }
D
duke 已提交
237 238 239 240 241 242 243 244 245 246 247

  // Reset the dictionary to the initial conditions with
  // a single free chunk.
  void       reset(MemRegion mr);
  void       reset(HeapWord* addr, size_t size);
  // Reset the dictionary to be empty.
  void       reset();

  // Return a chunk of size "size" or greater from
  // the tree.
  // want a better dynamic splay strategy for the future.
248
  Chunk* get_chunk(size_t size, enum FreeBlockDictionary<Chunk>::Dither dither) {
249
    FreeBlockDictionary<Chunk>::verify_par_locked();
250 251
    Chunk* res = get_chunk_from_tree(size, dither, splay());
    assert(res == NULL || res->is_free(),
D
duke 已提交
252 253 254 255
           "Should be returning a free chunk");
    return res;
  }

256
  void return_chunk(Chunk* chunk) {
257
    FreeBlockDictionary<Chunk>::verify_par_locked();
258
    insert_chunk_in_tree(chunk);
D
duke 已提交
259 260
  }

261
  void remove_chunk(Chunk* chunk) {
262
    FreeBlockDictionary<Chunk>::verify_par_locked();
263 264
    remove_chunk_from_tree((TreeChunk<Chunk>*)chunk);
    assert(chunk->is_free(), "Should still be a free chunk");
D
duke 已提交
265 266
  }

267 268
  size_t     max_chunk_size() const;
  size_t     total_chunk_size(debug_only(const Mutex* lock)) const {
D
duke 已提交
269 270
    debug_only(
      if (lock != NULL && lock->owned_by_self()) {
271 272
        assert(total_size_in_tree(root()) == total_size(),
               "_total_size inconsistency");
D
duke 已提交
273 274
      }
    )
275
    return total_size();
D
duke 已提交
276 277
  }

278
  size_t     min_size() const {
279
    return min_tree_chunk_size;
D
duke 已提交
280 281 282 283 284 285
  }

  double     sum_of_squared_block_sizes() const {
    return sum_of_squared_block_sizes(root());
  }

286
  Chunk* find_chunk_ends_at(HeapWord* target) const;
D
duke 已提交
287 288 289 290

  // Find the list with size "size" in the binary tree and update
  // the statistics in the list according to "split" (chunk was
  // split or coalesce) and "birth" (chunk was added or removed).
291
  void       dict_census_udpate(size_t size, bool split, bool birth);
D
duke 已提交
292 293
  // Return true if the dictionary is overpopulated (more chunks of
  // this size than desired) for size "size".
294
  bool       coal_dict_over_populated(size_t size);
D
duke 已提交
295 296
  // Methods called at the beginning of a sweep to prepare the
  // statistics for the sweep.
297
  void       begin_sweep_dict_census(double coalSurplusPercent,
298 299 300
                                  float inter_sweep_current,
                                  float inter_sweep_estimate,
                                  float intra_sweep_estimate);
D
duke 已提交
301 302
  // Methods called after the end of a sweep to modify the
  // statistics for the sweep.
303
  void       end_sweep_dict_census(double splitSurplusPercent);
D
duke 已提交
304
  // Return the largest free chunk in the tree.
305
  Chunk* find_largest_dict() const;
D
duke 已提交
306
  // Accessors for statistics
307 308
  void       set_tree_surplus(double splitSurplusPercent);
  void       set_tree_hints(void);
D
duke 已提交
309
  // Reset statistics for all the lists in the tree.
310
  void       clear_tree_census(void);
D
duke 已提交
311 312
  // Print the statistcis for all the lists in the tree.  Also may
  // print out summaries.
313
  void       print_dict_census(void) const;
314
  void       print_free_lists(outputStream* st) const;
D
duke 已提交
315

316
  // For debugging.  Returns the sum of the _returned_bytes for
D
duke 已提交
317
  // all lists in the tree.
318 319 320
  size_t     sum_dict_returned_bytes()     PRODUCT_RETURN0;
  // Sets the _returned_bytes for all the lists in the tree to zero.
  void       initialize_dict_returned_bytes()      PRODUCT_RETURN;
D
duke 已提交
321
  // For debugging.  Return the total number of chunks in the dictionary.
322
  size_t     total_count()       PRODUCT_RETURN0;
D
duke 已提交
323

324
  void       report_statistics() const;
D
duke 已提交
325 326 327

  void       verify() const;
};
328

329
#endif // SHARE_VM_MEMORY_BINARYTREEDICTIONARY_HPP