src/share/vm/memory/blockOffsetTable.hpp

Tue, 23 Nov 2010 13:22:55 -0800

author
stefank
date
Tue, 23 Nov 2010 13:22:55 -0800
changeset 2314
f95d63e2154a
parent 2087
52f2bc645da5
child 3900
d2a62e0f25eb
permissions
-rw-r--r--

6989984: Use standard include model for Hospot
Summary: Replaced MakeDeps and the includeDB files with more standardized solutions.
Reviewed-by: coleenp, kvn, kamg

duke@435 1 /*
ysr@2071 2 * Copyright (c) 2000, 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_MEMORY_BLOCKOFFSETTABLE_HPP
stefank@2314 26 #define SHARE_VM_MEMORY_BLOCKOFFSETTABLE_HPP
stefank@2314 27
stefank@2314 28 #include "memory/memRegion.hpp"
stefank@2314 29 #include "runtime/virtualspace.hpp"
stefank@2314 30 #include "utilities/globalDefinitions.hpp"
stefank@2314 31
duke@435 32 // The CollectedHeap type requires subtypes to implement a method
duke@435 33 // "block_start". For some subtypes, notably generational
duke@435 34 // systems using card-table-based write barriers, the efficiency of this
duke@435 35 // operation may be important. Implementations of the "BlockOffsetArray"
duke@435 36 // class may be useful in providing such efficient implementations.
duke@435 37 //
duke@435 38 // BlockOffsetTable (abstract)
duke@435 39 // - BlockOffsetArray (abstract)
duke@435 40 // - BlockOffsetArrayNonContigSpace
duke@435 41 // - BlockOffsetArrayContigSpace
duke@435 42 //
duke@435 43
duke@435 44 class ContiguousSpace;
duke@435 45 class SerializeOopClosure;
duke@435 46
duke@435 47 //////////////////////////////////////////////////////////////////////////
duke@435 48 // The BlockOffsetTable "interface"
duke@435 49 //////////////////////////////////////////////////////////////////////////
duke@435 50 class BlockOffsetTable VALUE_OBJ_CLASS_SPEC {
duke@435 51 friend class VMStructs;
duke@435 52 protected:
duke@435 53 // These members describe the region covered by the table.
duke@435 54
duke@435 55 // The space this table is covering.
duke@435 56 HeapWord* _bottom; // == reserved.start
duke@435 57 HeapWord* _end; // End of currently allocated region.
duke@435 58
duke@435 59 public:
duke@435 60 // Initialize the table to cover the given space.
duke@435 61 // The contents of the initial table are undefined.
duke@435 62 BlockOffsetTable(HeapWord* bottom, HeapWord* end):
duke@435 63 _bottom(bottom), _end(end) {
duke@435 64 assert(_bottom <= _end, "arguments out of order");
duke@435 65 }
duke@435 66
duke@435 67 // Note that the committed size of the covered space may have changed,
duke@435 68 // so the table size might also wish to change.
duke@435 69 virtual void resize(size_t new_word_size) = 0;
duke@435 70
duke@435 71 virtual void set_bottom(HeapWord* new_bottom) {
duke@435 72 assert(new_bottom <= _end, "new_bottom > _end");
duke@435 73 _bottom = new_bottom;
duke@435 74 resize(pointer_delta(_end, _bottom));
duke@435 75 }
duke@435 76
duke@435 77 // Requires "addr" to be contained by a block, and returns the address of
duke@435 78 // the start of that block.
duke@435 79 virtual HeapWord* block_start_unsafe(const void* addr) const = 0;
duke@435 80
duke@435 81 // Returns the address of the start of the block containing "addr", or
duke@435 82 // else "null" if it is covered by no block.
duke@435 83 HeapWord* block_start(const void* addr) const;
duke@435 84 };
duke@435 85
duke@435 86 //////////////////////////////////////////////////////////////////////////
duke@435 87 // One implementation of "BlockOffsetTable," the BlockOffsetArray,
duke@435 88 // divides the covered region into "N"-word subregions (where
duke@435 89 // "N" = 2^"LogN". An array with an entry for each such subregion
duke@435 90 // indicates how far back one must go to find the start of the
duke@435 91 // chunk that includes the first word of the subregion.
duke@435 92 //
duke@435 93 // Each BlockOffsetArray is owned by a Space. However, the actual array
duke@435 94 // may be shared by several BlockOffsetArrays; this is useful
duke@435 95 // when a single resizable area (such as a generation) is divided up into
duke@435 96 // several spaces in which contiguous allocation takes place. (Consider,
duke@435 97 // for example, the garbage-first generation.)
duke@435 98
duke@435 99 // Here is the shared array type.
duke@435 100 //////////////////////////////////////////////////////////////////////////
duke@435 101 // BlockOffsetSharedArray
duke@435 102 //////////////////////////////////////////////////////////////////////////
duke@435 103 class BlockOffsetSharedArray: public CHeapObj {
duke@435 104 friend class BlockOffsetArray;
duke@435 105 friend class BlockOffsetArrayNonContigSpace;
duke@435 106 friend class BlockOffsetArrayContigSpace;
duke@435 107 friend class VMStructs;
duke@435 108
duke@435 109 private:
duke@435 110 enum SomePrivateConstants {
duke@435 111 LogN = 9,
duke@435 112 LogN_words = LogN - LogHeapWordSize,
duke@435 113 N_bytes = 1 << LogN,
duke@435 114 N_words = 1 << LogN_words
duke@435 115 };
duke@435 116
ysr@2071 117 bool _init_to_zero;
ysr@2071 118
duke@435 119 // The reserved region covered by the shared array.
duke@435 120 MemRegion _reserved;
duke@435 121
duke@435 122 // End of the current committed region.
duke@435 123 HeapWord* _end;
duke@435 124
duke@435 125 // Array for keeping offsets for retrieving object start fast given an
duke@435 126 // address.
duke@435 127 VirtualSpace _vs;
duke@435 128 u_char* _offset_array; // byte array keeping backwards offsets
duke@435 129
duke@435 130 protected:
duke@435 131 // Bounds checking accessors:
duke@435 132 // For performance these have to devolve to array accesses in product builds.
duke@435 133 u_char offset_array(size_t index) const {
duke@435 134 assert(index < _vs.committed_size(), "index out of range");
duke@435 135 return _offset_array[index];
duke@435 136 }
ysr@2071 137 // An assertion-checking helper method for the set_offset_array() methods below.
ysr@2071 138 void check_reducing_assertion(bool reducing);
ysr@2071 139
ysr@2071 140 void set_offset_array(size_t index, u_char offset, bool reducing = false) {
ysr@2071 141 check_reducing_assertion(reducing);
duke@435 142 assert(index < _vs.committed_size(), "index out of range");
ysr@2071 143 assert(!reducing || _offset_array[index] >= offset, "Not reducing");
duke@435 144 _offset_array[index] = offset;
duke@435 145 }
ysr@2071 146
ysr@2071 147 void set_offset_array(size_t index, HeapWord* high, HeapWord* low, bool reducing = false) {
ysr@2071 148 check_reducing_assertion(reducing);
duke@435 149 assert(index < _vs.committed_size(), "index out of range");
duke@435 150 assert(high >= low, "addresses out of order");
duke@435 151 assert(pointer_delta(high, low) <= N_words, "offset too large");
ysr@2071 152 assert(!reducing || _offset_array[index] >= (u_char)pointer_delta(high, low),
ysr@2071 153 "Not reducing");
duke@435 154 _offset_array[index] = (u_char)pointer_delta(high, low);
duke@435 155 }
ysr@2071 156
ysr@2071 157 void set_offset_array(HeapWord* left, HeapWord* right, u_char offset, bool reducing = false) {
ysr@2071 158 check_reducing_assertion(reducing);
duke@435 159 assert(index_for(right - 1) < _vs.committed_size(),
duke@435 160 "right address out of range");
duke@435 161 assert(left < right, "Heap addresses out of order");
duke@435 162 size_t num_cards = pointer_delta(right, left) >> LogN_words;
ysr@1873 163
ysr@1873 164 // Below, we may use an explicit loop instead of memset()
ysr@1873 165 // because on certain platforms memset() can give concurrent
ysr@1873 166 // readers "out-of-thin-air," phantom zeros; see 6948537.
ysr@1873 167 if (UseMemSetInBOT) {
ysr@1873 168 memset(&_offset_array[index_for(left)], offset, num_cards);
ysr@1873 169 } else {
ysr@1873 170 size_t i = index_for(left);
ysr@1873 171 const size_t end = i + num_cards;
ysr@1873 172 for (; i < end; i++) {
ysr@2087 173 // Elided until CR 6977974 is fixed properly.
ysr@2087 174 // assert(!reducing || _offset_array[i] >= offset, "Not reducing");
ysr@1873 175 _offset_array[i] = offset;
ysr@1873 176 }
ysr@1873 177 }
duke@435 178 }
duke@435 179
ysr@2071 180 void set_offset_array(size_t left, size_t right, u_char offset, bool reducing = false) {
ysr@2071 181 check_reducing_assertion(reducing);
duke@435 182 assert(right < _vs.committed_size(), "right address out of range");
duke@435 183 assert(left <= right, "indexes out of order");
duke@435 184 size_t num_cards = right - left + 1;
ysr@1873 185
ysr@1873 186 // Below, we may use an explicit loop instead of memset
ysr@1873 187 // because on certain platforms memset() can give concurrent
ysr@1873 188 // readers "out-of-thin-air," phantom zeros; see 6948537.
ysr@1873 189 if (UseMemSetInBOT) {
ysr@1873 190 memset(&_offset_array[left], offset, num_cards);
ysr@1873 191 } else {
ysr@1873 192 size_t i = left;
ysr@1873 193 const size_t end = i + num_cards;
ysr@1873 194 for (; i < end; i++) {
ysr@2087 195 // Elided until CR 6977974 is fixed properly.
ysr@2087 196 // assert(!reducing || _offset_array[i] >= offset, "Not reducing");
ysr@1873 197 _offset_array[i] = offset;
ysr@1873 198 }
ysr@1873 199 }
duke@435 200 }
duke@435 201
duke@435 202 void check_offset_array(size_t index, HeapWord* high, HeapWord* low) const {
duke@435 203 assert(index < _vs.committed_size(), "index out of range");
duke@435 204 assert(high >= low, "addresses out of order");
duke@435 205 assert(pointer_delta(high, low) <= N_words, "offset too large");
duke@435 206 assert(_offset_array[index] == pointer_delta(high, low),
duke@435 207 "Wrong offset");
duke@435 208 }
duke@435 209
duke@435 210 bool is_card_boundary(HeapWord* p) const;
duke@435 211
duke@435 212 // Return the number of slots needed for an offset array
duke@435 213 // that covers mem_region_words words.
duke@435 214 // We always add an extra slot because if an object
duke@435 215 // ends on a card boundary we put a 0 in the next
duke@435 216 // offset array slot, so we want that slot always
duke@435 217 // to be reserved.
duke@435 218
duke@435 219 size_t compute_size(size_t mem_region_words) {
duke@435 220 size_t number_of_slots = (mem_region_words / N_words) + 1;
duke@435 221 return ReservedSpace::allocation_align_size_up(number_of_slots);
duke@435 222 }
duke@435 223
duke@435 224 public:
duke@435 225 // Initialize the table to cover from "base" to (at least)
duke@435 226 // "base + init_word_size". In the future, the table may be expanded
duke@435 227 // (see "resize" below) up to the size of "_reserved" (which must be at
duke@435 228 // least "init_word_size".) The contents of the initial table are
duke@435 229 // undefined; it is the responsibility of the constituent
duke@435 230 // BlockOffsetTable(s) to initialize cards.
duke@435 231 BlockOffsetSharedArray(MemRegion reserved, size_t init_word_size);
duke@435 232
duke@435 233 // Notes a change in the committed size of the region covered by the
duke@435 234 // table. The "new_word_size" may not be larger than the size of the
duke@435 235 // reserved region this table covers.
duke@435 236 void resize(size_t new_word_size);
duke@435 237
duke@435 238 void set_bottom(HeapWord* new_bottom);
duke@435 239
ysr@2071 240 // Whether entries should be initialized to zero. Used currently only for
ysr@2071 241 // error checking.
ysr@2071 242 void set_init_to_zero(bool val) { _init_to_zero = val; }
ysr@2071 243 bool init_to_zero() { return _init_to_zero; }
ysr@2071 244
duke@435 245 // Updates all the BlockOffsetArray's sharing this shared array to
duke@435 246 // reflect the current "top"'s of their spaces.
duke@435 247 void update_offset_arrays(); // Not yet implemented!
duke@435 248
duke@435 249 // Return the appropriate index into "_offset_array" for "p".
duke@435 250 size_t index_for(const void* p) const;
duke@435 251
duke@435 252 // Return the address indicating the start of the region corresponding to
duke@435 253 // "index" in "_offset_array".
duke@435 254 HeapWord* address_for_index(size_t index) const;
duke@435 255
jmasa@736 256 // Return the address "p" incremented by the size of
jmasa@736 257 // a region. This method does not align the address
jmasa@736 258 // returned to the start of a region. It is a simple
jmasa@736 259 // primitive.
jmasa@736 260 HeapWord* inc_by_region_size(HeapWord* p) const { return p + N_words; }
jmasa@736 261
duke@435 262 // Shared space support
duke@435 263 void serialize(SerializeOopClosure* soc, HeapWord* start, HeapWord* end);
duke@435 264 };
duke@435 265
duke@435 266 //////////////////////////////////////////////////////////////////////////
duke@435 267 // The BlockOffsetArray whose subtypes use the BlockOffsetSharedArray.
duke@435 268 //////////////////////////////////////////////////////////////////////////
duke@435 269 class BlockOffsetArray: public BlockOffsetTable {
duke@435 270 friend class VMStructs;
ysr@777 271 friend class G1BlockOffsetArray; // temp. until we restructure and cleanup
duke@435 272 protected:
duke@435 273 // The following enums are used by do_block_internal() below
duke@435 274 enum Action {
duke@435 275 Action_single, // BOT records a single block (see single_block())
duke@435 276 Action_mark, // BOT marks the start of a block (see mark_block())
duke@435 277 Action_check // Check that BOT records block correctly
duke@435 278 // (see verify_single_block()).
duke@435 279 };
duke@435 280
duke@435 281 enum SomePrivateConstants {
duke@435 282 N_words = BlockOffsetSharedArray::N_words,
duke@435 283 LogN = BlockOffsetSharedArray::LogN,
duke@435 284 // entries "e" of at least N_words mean "go back by Base^(e-N_words)."
duke@435 285 // All entries are less than "N_words + N_powers".
duke@435 286 LogBase = 4,
duke@435 287 Base = (1 << LogBase),
duke@435 288 N_powers = 14
duke@435 289 };
duke@435 290
duke@435 291 static size_t power_to_cards_back(uint i) {
kvn@1080 292 return (size_t)(1 << (LogBase * i));
duke@435 293 }
duke@435 294 static size_t power_to_words_back(uint i) {
duke@435 295 return power_to_cards_back(i) * N_words;
duke@435 296 }
duke@435 297 static size_t entry_to_cards_back(u_char entry) {
duke@435 298 assert(entry >= N_words, "Precondition");
duke@435 299 return power_to_cards_back(entry - N_words);
duke@435 300 }
duke@435 301 static size_t entry_to_words_back(u_char entry) {
duke@435 302 assert(entry >= N_words, "Precondition");
duke@435 303 return power_to_words_back(entry - N_words);
duke@435 304 }
duke@435 305
duke@435 306 // The shared array, which is shared with other BlockOffsetArray's
duke@435 307 // corresponding to different spaces within a generation or span of
duke@435 308 // memory.
duke@435 309 BlockOffsetSharedArray* _array;
duke@435 310
duke@435 311 // The space that owns this subregion.
duke@435 312 Space* _sp;
duke@435 313
duke@435 314 // If true, array entries are initialized to 0; otherwise, they are
duke@435 315 // initialized to point backwards to the beginning of the covered region.
duke@435 316 bool _init_to_zero;
duke@435 317
ysr@2071 318 // An assertion-checking helper method for the set_remainder*() methods below.
ysr@2071 319 void check_reducing_assertion(bool reducing) { _array->check_reducing_assertion(reducing); }
ysr@2071 320
duke@435 321 // Sets the entries
duke@435 322 // corresponding to the cards starting at "start" and ending at "end"
duke@435 323 // to point back to the card before "start": the interval [start, end)
ysr@2071 324 // is right-open. The last parameter, reducing, indicates whether the
ysr@2071 325 // updates to individual entries always reduce the entry from a higher
ysr@2071 326 // to a lower value. (For example this would hold true during a temporal
ysr@2071 327 // regime during which only block splits were updating the BOT.
ysr@2071 328 void set_remainder_to_point_to_start(HeapWord* start, HeapWord* end, bool reducing = false);
duke@435 329 // Same as above, except that the args here are a card _index_ interval
duke@435 330 // that is closed: [start_index, end_index]
ysr@2071 331 void set_remainder_to_point_to_start_incl(size_t start, size_t end, bool reducing = false);
duke@435 332
duke@435 333 // A helper function for BOT adjustment/verification work
ysr@2071 334 void do_block_internal(HeapWord* blk_start, HeapWord* blk_end, Action action, bool reducing = false);
duke@435 335
duke@435 336 public:
duke@435 337 // The space may not have its bottom and top set yet, which is why the
duke@435 338 // region is passed as a parameter. If "init_to_zero" is true, the
duke@435 339 // elements of the array are initialized to zero. Otherwise, they are
duke@435 340 // initialized to point backwards to the beginning.
duke@435 341 BlockOffsetArray(BlockOffsetSharedArray* array, MemRegion mr,
ysr@2071 342 bool init_to_zero_);
duke@435 343
duke@435 344 // Note: this ought to be part of the constructor, but that would require
duke@435 345 // "this" to be passed as a parameter to a member constructor for
duke@435 346 // the containing concrete subtype of Space.
duke@435 347 // This would be legal C++, but MS VC++ doesn't allow it.
duke@435 348 void set_space(Space* sp) { _sp = sp; }
duke@435 349
duke@435 350 // Resets the covered region to the given "mr".
duke@435 351 void set_region(MemRegion mr) {
duke@435 352 _bottom = mr.start();
duke@435 353 _end = mr.end();
duke@435 354 }
duke@435 355
duke@435 356 // Note that the committed size of the covered space may have changed,
duke@435 357 // so the table size might also wish to change.
duke@435 358 virtual void resize(size_t new_word_size) {
duke@435 359 HeapWord* new_end = _bottom + new_word_size;
duke@435 360 if (_end < new_end && !init_to_zero()) {
duke@435 361 // verify that the old and new boundaries are also card boundaries
duke@435 362 assert(_array->is_card_boundary(_end),
duke@435 363 "_end not a card boundary");
duke@435 364 assert(_array->is_card_boundary(new_end),
duke@435 365 "new _end would not be a card boundary");
duke@435 366 // set all the newly added cards
duke@435 367 _array->set_offset_array(_end, new_end, N_words);
duke@435 368 }
duke@435 369 _end = new_end; // update _end
duke@435 370 }
duke@435 371
duke@435 372 // Adjust the BOT to show that it has a single block in the
duke@435 373 // range [blk_start, blk_start + size). All necessary BOT
duke@435 374 // cards are adjusted, but _unallocated_block isn't.
duke@435 375 void single_block(HeapWord* blk_start, HeapWord* blk_end);
duke@435 376 void single_block(HeapWord* blk, size_t size) {
duke@435 377 single_block(blk, blk + size);
duke@435 378 }
duke@435 379
duke@435 380 // When the alloc_block() call returns, the block offset table should
duke@435 381 // have enough information such that any subsequent block_start() call
duke@435 382 // with an argument equal to an address that is within the range
duke@435 383 // [blk_start, blk_end) would return the value blk_start, provided
duke@435 384 // there have been no calls in between that reset this information
duke@435 385 // (e.g. see BlockOffsetArrayNonContigSpace::single_block() call
duke@435 386 // for an appropriate range covering the said interval).
duke@435 387 // These methods expect to be called with [blk_start, blk_end)
duke@435 388 // representing a block of memory in the heap.
duke@435 389 virtual void alloc_block(HeapWord* blk_start, HeapWord* blk_end);
duke@435 390 void alloc_block(HeapWord* blk, size_t size) {
duke@435 391 alloc_block(blk, blk + size);
duke@435 392 }
duke@435 393
duke@435 394 // If true, initialize array slots with no allocated blocks to zero.
duke@435 395 // Otherwise, make them point back to the front.
duke@435 396 bool init_to_zero() { return _init_to_zero; }
ysr@2071 397 // Corresponding setter
ysr@2071 398 void set_init_to_zero(bool val) {
ysr@2071 399 _init_to_zero = val;
ysr@2071 400 assert(_array != NULL, "_array should be non-NULL");
ysr@2071 401 _array->set_init_to_zero(val);
ysr@2071 402 }
duke@435 403
duke@435 404 // Debugging
duke@435 405 // Return the index of the last entry in the "active" region.
duke@435 406 virtual size_t last_active_index() const = 0;
duke@435 407 // Verify the block offset table
duke@435 408 void verify() const;
duke@435 409 void check_all_cards(size_t left_card, size_t right_card) const;
duke@435 410 };
duke@435 411
duke@435 412 ////////////////////////////////////////////////////////////////////////////
duke@435 413 // A subtype of BlockOffsetArray that takes advantage of the fact
duke@435 414 // that its underlying space is a NonContiguousSpace, so that some
duke@435 415 // specialized interfaces can be made available for spaces that
duke@435 416 // manipulate the table.
duke@435 417 ////////////////////////////////////////////////////////////////////////////
duke@435 418 class BlockOffsetArrayNonContigSpace: public BlockOffsetArray {
duke@435 419 friend class VMStructs;
duke@435 420 private:
duke@435 421 // The portion [_unallocated_block, _sp.end()) of the space that
duke@435 422 // is a single block known not to contain any objects.
duke@435 423 // NOTE: See BlockOffsetArrayUseUnallocatedBlock flag.
duke@435 424 HeapWord* _unallocated_block;
duke@435 425
duke@435 426 public:
duke@435 427 BlockOffsetArrayNonContigSpace(BlockOffsetSharedArray* array, MemRegion mr):
duke@435 428 BlockOffsetArray(array, mr, false),
duke@435 429 _unallocated_block(_bottom) { }
duke@435 430
duke@435 431 // accessor
duke@435 432 HeapWord* unallocated_block() const {
duke@435 433 assert(BlockOffsetArrayUseUnallocatedBlock,
duke@435 434 "_unallocated_block is not being maintained");
duke@435 435 return _unallocated_block;
duke@435 436 }
duke@435 437
duke@435 438 void set_unallocated_block(HeapWord* block) {
duke@435 439 assert(BlockOffsetArrayUseUnallocatedBlock,
duke@435 440 "_unallocated_block is not being maintained");
duke@435 441 assert(block >= _bottom && block <= _end, "out of range");
duke@435 442 _unallocated_block = block;
duke@435 443 }
duke@435 444
duke@435 445 // These methods expect to be called with [blk_start, blk_end)
duke@435 446 // representing a block of memory in the heap.
duke@435 447 void alloc_block(HeapWord* blk_start, HeapWord* blk_end);
duke@435 448 void alloc_block(HeapWord* blk, size_t size) {
duke@435 449 alloc_block(blk, blk + size);
duke@435 450 }
duke@435 451
duke@435 452 // The following methods are useful and optimized for a
duke@435 453 // non-contiguous space.
duke@435 454
duke@435 455 // Given a block [blk_start, blk_start + full_blk_size), and
duke@435 456 // a left_blk_size < full_blk_size, adjust the BOT to show two
duke@435 457 // blocks [blk_start, blk_start + left_blk_size) and
duke@435 458 // [blk_start + left_blk_size, blk_start + full_blk_size).
duke@435 459 // It is assumed (and verified in the non-product VM) that the
duke@435 460 // BOT was correct for the original block.
duke@435 461 void split_block(HeapWord* blk_start, size_t full_blk_size,
duke@435 462 size_t left_blk_size);
duke@435 463
duke@435 464 // Adjust BOT to show that it has a block in the range
duke@435 465 // [blk_start, blk_start + size). Only the first card
duke@435 466 // of BOT is touched. It is assumed (and verified in the
duke@435 467 // non-product VM) that the remaining cards of the block
duke@435 468 // are correct.
ysr@2071 469 void mark_block(HeapWord* blk_start, HeapWord* blk_end, bool reducing = false);
ysr@2071 470 void mark_block(HeapWord* blk, size_t size, bool reducing = false) {
ysr@2071 471 mark_block(blk, blk + size, reducing);
duke@435 472 }
duke@435 473
duke@435 474 // Adjust _unallocated_block to indicate that a particular
duke@435 475 // block has been newly allocated or freed. It is assumed (and
duke@435 476 // verified in the non-product VM) that the BOT is correct for
duke@435 477 // the given block.
ysr@2071 478 void allocated(HeapWord* blk_start, HeapWord* blk_end, bool reducing = false) {
duke@435 479 // Verify that the BOT shows [blk, blk + blk_size) to be one block.
duke@435 480 verify_single_block(blk_start, blk_end);
duke@435 481 if (BlockOffsetArrayUseUnallocatedBlock) {
duke@435 482 _unallocated_block = MAX2(_unallocated_block, blk_end);
duke@435 483 }
duke@435 484 }
duke@435 485
ysr@2071 486 void allocated(HeapWord* blk, size_t size, bool reducing = false) {
ysr@2071 487 allocated(blk, blk + size, reducing);
duke@435 488 }
duke@435 489
duke@435 490 void freed(HeapWord* blk_start, HeapWord* blk_end);
ysr@2071 491 void freed(HeapWord* blk, size_t size);
duke@435 492
duke@435 493 HeapWord* block_start_unsafe(const void* addr) const;
duke@435 494
duke@435 495 // Requires "addr" to be the start of a card and returns the
duke@435 496 // start of the block that contains the given address.
duke@435 497 HeapWord* block_start_careful(const void* addr) const;
duke@435 498
duke@435 499 // Verification & debugging: ensure that the offset table reflects
duke@435 500 // the fact that the block [blk_start, blk_end) or [blk, blk + size)
duke@435 501 // is a single block of storage. NOTE: can't const this because of
duke@435 502 // call to non-const do_block_internal() below.
duke@435 503 void verify_single_block(HeapWord* blk_start, HeapWord* blk_end)
duke@435 504 PRODUCT_RETURN;
duke@435 505 void verify_single_block(HeapWord* blk, size_t size) PRODUCT_RETURN;
duke@435 506
duke@435 507 // Verify that the given block is before _unallocated_block
duke@435 508 void verify_not_unallocated(HeapWord* blk_start, HeapWord* blk_end)
duke@435 509 const PRODUCT_RETURN;
duke@435 510 void verify_not_unallocated(HeapWord* blk, size_t size)
duke@435 511 const PRODUCT_RETURN;
duke@435 512
duke@435 513 // Debugging support
duke@435 514 virtual size_t last_active_index() const;
duke@435 515 };
duke@435 516
duke@435 517 ////////////////////////////////////////////////////////////////////////////
duke@435 518 // A subtype of BlockOffsetArray that takes advantage of the fact
duke@435 519 // that its underlying space is a ContiguousSpace, so that its "active"
duke@435 520 // region can be more efficiently tracked (than for a non-contiguous space).
duke@435 521 ////////////////////////////////////////////////////////////////////////////
duke@435 522 class BlockOffsetArrayContigSpace: public BlockOffsetArray {
duke@435 523 friend class VMStructs;
duke@435 524 private:
duke@435 525 // allocation boundary at which offset array must be updated
duke@435 526 HeapWord* _next_offset_threshold;
duke@435 527 size_t _next_offset_index; // index corresponding to that boundary
duke@435 528
duke@435 529 // Work function when allocation start crosses threshold.
duke@435 530 void alloc_block_work(HeapWord* blk_start, HeapWord* blk_end);
duke@435 531
duke@435 532 public:
duke@435 533 BlockOffsetArrayContigSpace(BlockOffsetSharedArray* array, MemRegion mr):
duke@435 534 BlockOffsetArray(array, mr, true) {
duke@435 535 _next_offset_threshold = NULL;
duke@435 536 _next_offset_index = 0;
duke@435 537 }
duke@435 538
duke@435 539 void set_contig_space(ContiguousSpace* sp) { set_space((Space*)sp); }
duke@435 540
duke@435 541 // Initialize the threshold for an empty heap.
duke@435 542 HeapWord* initialize_threshold();
duke@435 543 // Zero out the entry for _bottom (offset will be zero)
duke@435 544 void zero_bottom_entry();
duke@435 545
duke@435 546 // Return the next threshold, the point at which the table should be
duke@435 547 // updated.
duke@435 548 HeapWord* threshold() const { return _next_offset_threshold; }
duke@435 549
duke@435 550 // In general, these methods expect to be called with
duke@435 551 // [blk_start, blk_end) representing a block of memory in the heap.
duke@435 552 // In this implementation, however, we are OK even if blk_start and/or
duke@435 553 // blk_end are NULL because NULL is represented as 0, and thus
duke@435 554 // never exceeds the "_next_offset_threshold".
duke@435 555 void alloc_block(HeapWord* blk_start, HeapWord* blk_end) {
duke@435 556 if (blk_end > _next_offset_threshold) {
duke@435 557 alloc_block_work(blk_start, blk_end);
duke@435 558 }
duke@435 559 }
duke@435 560 void alloc_block(HeapWord* blk, size_t size) {
duke@435 561 alloc_block(blk, blk + size);
duke@435 562 }
duke@435 563
duke@435 564 HeapWord* block_start_unsafe(const void* addr) const;
duke@435 565
duke@435 566 void serialize(SerializeOopClosure* soc);
duke@435 567
duke@435 568 // Debugging support
duke@435 569 virtual size_t last_active_index() const;
duke@435 570 };
stefank@2314 571
stefank@2314 572 #endif // SHARE_VM_MEMORY_BLOCKOFFSETTABLE_HPP

mercurial