hotspot/src/share/vm/gc_implementation/parallelScavenge/objectStartArray.hpp
author xdono
Tue, 22 Sep 2009 14:06:10 -0700
changeset 3795 6227ff014cfe
parent 2131 98f9cef66a34
child 5547 f4b087cbb361
permissions -rw-r--r--
6884624: Update copyright year Summary: Update copyright for files that have been modified in 2009 through Septermber Reviewed-by: tbell, ohair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2001-2005 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// This class can be used to locate the beginning of an object in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// covered region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
class ObjectStartArray : public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
 friend class VerifyObjectStartArrayClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  PSVirtualSpace  _virtual_space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  MemRegion       _reserved_region;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  MemRegion       _covered_region;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  MemRegion       _blocks_region;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  jbyte*          _raw_base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  jbyte*          _offset_base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  enum BlockValueConstants {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    clean_block                  = -1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  enum BlockSizeConstants {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    block_shift                  = 9,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    block_size                   = 1 << block_shift,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    block_size_in_words          = block_size / sizeof(HeapWord)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // Mapping from address to object start array entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  jbyte* block_for_addr(void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    assert(_covered_region.contains(p),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
           "out of bounds access to object start array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    jbyte* result = &_offset_base[uintptr_t(p) >> block_shift];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    assert(_blocks_region.contains(result),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
           "out of bounds result in byte_for");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // Mapping from object start array entry to address of first word
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  HeapWord* addr_for_block(jbyte* p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    assert(_blocks_region.contains(p),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
           "out of bounds access to object start array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    size_t delta = pointer_delta(p, _offset_base, sizeof(jbyte));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    HeapWord* result = (HeapWord*) (delta << block_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    assert(_covered_region.contains(result),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
           "out of bounds accessor from card marking array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // Mapping that includes the derived offset.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // If the block is clean, returns the last address in the covered region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // If the block is < index 0, returns the start of the covered region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  HeapWord* offset_addr_for_block (jbyte* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    // We have to do this before the assert
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    if (p < _raw_base) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
      return _covered_region.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    assert(_blocks_region.contains(p),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
           "out of bounds access to object start array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    if (*p == clean_block) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
      return _covered_region.end();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    size_t delta = pointer_delta(p, _offset_base, sizeof(jbyte));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    HeapWord* result = (HeapWord*) (delta << block_shift);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    result += *p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    assert(_covered_region.contains(result),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
           "out of bounds accessor from card marking array");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // This method is in lieu of a constructor, so that this class can be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // embedded inline in other classes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  void initialize(MemRegion reserved_region);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  void set_covered_region(MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  void reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  MemRegion covered_region() { return _covered_region; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  void allocate_block(HeapWord* p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    assert(_covered_region.contains(p), "Must be in covered region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    jbyte* block = block_for_addr(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    HeapWord* block_base = addr_for_block(block);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    size_t offset = pointer_delta(p, block_base, sizeof(HeapWord*));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    assert(offset < 128, "Sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    // When doing MT offsets, we can't assert this.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    //assert(offset > *block, "Found backwards allocation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    *block = (jbyte)offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    // tty->print_cr("[%p]", p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // Optimized for finding the first object that crosses into
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // a given block. The blocks contain the offset of the last
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // object in that block. Scroll backwards by one, and the first
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1
diff changeset
   130
  // object hit should be at the beginning of the block
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  HeapWord* object_start(HeapWord* addr) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    assert(_covered_region.contains(addr), "Must be in covered region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    jbyte* block = block_for_addr(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    HeapWord* scroll_forward = offset_addr_for_block(block--);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    while (scroll_forward > addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
      scroll_forward = offset_addr_for_block(block--);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    HeapWord* next = scroll_forward;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    while (next <= addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
      scroll_forward = next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      next += oop(next)->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    assert(scroll_forward <= addr, "wrong order for current and arg");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    assert(addr <= next, "wrong order for arg and next");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    return scroll_forward;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  bool is_block_allocated(HeapWord* addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    assert(_covered_region.contains(addr), "Must be in covered region");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    jbyte* block = block_for_addr(addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    if (*block == clean_block)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // Return true if an object starts in the range of heap addresses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // If an object starts at an address corresponding to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // "start", the method will return true.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  bool object_starts_in_range(HeapWord* start_addr, HeapWord* end_addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
};