hotspot/src/share/vm/gc_implementation/g1/g1BlockOffsetTable.inline.hpp
author brutisso
Wed, 27 Aug 2014 10:51:08 +0200
changeset 26322 3e4ef23b8ee3
parent 26160 aba6b01cb988
child 30583 74ff3d21d616
permissions -rw-r--r--
8055816: Remove dead code in g1BlockOffsetTable Reviewed-by: tschatzl, mgerdin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     1
/*
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 14584
diff changeset
     2
 * Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     4
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     7
 * published by the Free Software Foundation.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     8
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    13
 * accompanied this code).
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    14
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3262
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3262
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3262
diff changeset
    21
 * questions.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    22
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    23
 */
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_GC_IMPLEMENTATION_G1_G1BLOCKOFFSETTABLE_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_GC_IMPLEMENTATION_G1_G1BLOCKOFFSETTABLE_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "gc_implementation/g1/g1BlockOffsetTable.hpp"
25481
1427aa24638c 8047818: G1 HeapRegions can no longer be ContiguousSpaces
mgerdin
parents: 25361
diff changeset
    29
#include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
1427aa24638c 8047818: G1 HeapRegions can no longer be ContiguousSpaces
mgerdin
parents: 25361
diff changeset
    30
#include "gc_implementation/g1/heapRegion.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "memory/space.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    33
inline HeapWord* G1BlockOffsetTable::block_start(const void* addr) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    34
  if (addr >= _bottom && addr < _end) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    35
    return block_start_unsafe(addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    36
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    37
    return NULL;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    38
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    39
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    40
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    41
inline HeapWord*
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    42
G1BlockOffsetTable::block_start_const(const void* addr) const {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    43
  if (addr >= _bottom && addr < _end) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    44
    return block_start_unsafe_const(addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    45
  } else {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    46
    return NULL;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    47
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    48
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    49
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    50
#define check_index(index, msg)                                                \
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    51
  assert((index) < (_reserved.word_size() >> LogN_words),                      \
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    52
         err_msg("%s - index: "SIZE_FORMAT", _vs.committed_size: "SIZE_FORMAT, \
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    53
                 msg, (index), (_reserved.word_size() >> LogN_words)));        \
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    54
  assert(G1CollectedHeap::heap()->is_in_exact(address_for_index_raw(index)),   \
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    55
         err_msg("Index "SIZE_FORMAT" corresponding to "PTR_FORMAT             \
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    56
                 " (%u) is not in committed area.",                            \
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    57
                 (index),                                                      \
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    58
                 p2i(address_for_index_raw(index)),                            \
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    59
                 G1CollectedHeap::heap()->addr_to_region(address_for_index_raw(index))));
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    60
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    61
u_char G1BlockOffsetSharedArray::offset_array(size_t index) const {
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    62
  check_index(index, "index out of range");
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    63
  return _offset_array[index];
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    64
}
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    65
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    66
void G1BlockOffsetSharedArray::set_offset_array(size_t index, u_char offset) {
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    67
  check_index(index, "index out of range");
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    68
  set_offset_array_raw(index, offset);
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    69
}
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    70
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    71
void G1BlockOffsetSharedArray::set_offset_array(size_t index, HeapWord* high, HeapWord* low) {
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    72
  check_index(index, "index out of range");
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    73
  assert(high >= low, "addresses out of order");
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    74
  size_t offset = pointer_delta(high, low);
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    75
  check_offset(offset, "offset too large");
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    76
  set_offset_array(index, (u_char)offset);
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    77
}
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    78
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    79
void G1BlockOffsetSharedArray::set_offset_array(size_t left, size_t right, u_char offset) {
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    80
  check_index(right, "right index out of range");
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    81
  assert(left <= right, "indexes out of order");
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    82
  size_t num_cards = right - left + 1;
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    83
  if (UseMemSetInBOT) {
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    84
    memset(&_offset_array[left], offset, num_cards);
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    85
  } else {
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    86
    size_t i = left;
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    87
    const size_t end = i + num_cards;
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    88
    for (; i < end; i++) {
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    89
      _offset_array[i] = offset;
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    90
    }
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    91
  }
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    92
}
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    93
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    94
// Variant of index_for that does not check the index for validity.
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    95
inline size_t G1BlockOffsetSharedArray::index_for_raw(const void* p) const {
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    96
  return pointer_delta((char*)p, _reserved.start(), sizeof(char)) >> LogN;
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    97
}
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
    98
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    99
inline size_t G1BlockOffsetSharedArray::index_for(const void* p) const {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   100
  char* pc = (char*)p;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   101
  assert(pc >= (char*)_reserved.start() &&
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   102
         pc <  (char*)_reserved.end(),
14584
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   103
         err_msg("p (" PTR_FORMAT ") not in reserved [" PTR_FORMAT ", " PTR_FORMAT ")",
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 14584
diff changeset
   104
                 p2i(p), p2i(_reserved.start()), p2i(_reserved.end())));
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
   105
  size_t result = index_for_raw(p);
14584
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   106
  check_index(result, "bad index from address");
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   107
  return result;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   108
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   109
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   110
inline HeapWord*
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   111
G1BlockOffsetSharedArray::address_for_index(size_t index) const {
14584
bd4290e6d0a5 7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents: 13728
diff changeset
   112
  check_index(index, "index out of range");
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
   113
  HeapWord* result = address_for_index_raw(index);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   114
  assert(result >= _reserved.start() && result < _reserved.end(),
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   115
         err_msg("bad address from index result " PTR_FORMAT
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   116
                 " _reserved.start() " PTR_FORMAT " _reserved.end() "
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   117
                 PTR_FORMAT,
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 14584
diff changeset
   118
                 p2i(result), p2i(_reserved.start()), p2i(_reserved.end())));
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   119
  return result;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   120
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   121
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
   122
#undef check_index
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25492
diff changeset
   123
25361
5146d1e12a2f 8047820: G1 Block offset table does not need to support generic Space classes
mgerdin
parents: 24424
diff changeset
   124
inline size_t
5146d1e12a2f 8047820: G1 Block offset table does not need to support generic Space classes
mgerdin
parents: 24424
diff changeset
   125
G1BlockOffsetArray::block_size(const HeapWord* p) const {
5146d1e12a2f 8047820: G1 Block offset table does not need to support generic Space classes
mgerdin
parents: 24424
diff changeset
   126
  return gsp()->block_size(p);
5146d1e12a2f 8047820: G1 Block offset table does not need to support generic Space classes
mgerdin
parents: 24424
diff changeset
   127
}
5146d1e12a2f 8047820: G1 Block offset table does not need to support generic Space classes
mgerdin
parents: 24424
diff changeset
   128
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   129
inline HeapWord*
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   130
G1BlockOffsetArray::block_at_or_preceding(const void* addr,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   131
                                          bool has_max_index,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   132
                                          size_t max_index) const {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   133
  assert(_array->offset_array(0) == 0, "objects can't cross covered areas");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   134
  size_t index = _array->index_for(addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   135
  // We must make sure that the offset table entry we use is valid.  If
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   136
  // "addr" is past the end, start at the last known one and go forward.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   137
  if (has_max_index) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   138
    index = MIN2(index, max_index);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   139
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   140
  HeapWord* q = _array->address_for_index(index);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   141
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   142
  uint offset = _array->offset_array(index);  // Extend u_char to uint.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   143
  while (offset >= N_words) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   144
    // The excess of the offset from N_words indicates a power of Base
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   145
    // to go back by.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   146
    size_t n_cards_back = BlockOffsetArray::entry_to_cards_back(offset);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   147
    q -= (N_words * n_cards_back);
25361
5146d1e12a2f 8047820: G1 Block offset table does not need to support generic Space classes
mgerdin
parents: 24424
diff changeset
   148
    assert(q >= gsp()->bottom(), "Went below bottom!");
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   149
    index -= n_cards_back;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   150
    offset = _array->offset_array(index);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   151
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   152
  assert(offset < N_words, "offset too large");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   153
  q -= offset;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   154
  return q;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   155
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   156
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   157
inline HeapWord*
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   158
G1BlockOffsetArray::
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   159
forward_to_block_containing_addr_const(HeapWord* q, HeapWord* n,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   160
                                       const void* addr) const {
25361
5146d1e12a2f 8047820: G1 Block offset table does not need to support generic Space classes
mgerdin
parents: 24424
diff changeset
   161
  if (addr >= gsp()->top()) return gsp()->top();
5146d1e12a2f 8047820: G1 Block offset table does not need to support generic Space classes
mgerdin
parents: 24424
diff changeset
   162
  while (n <= addr) {
5146d1e12a2f 8047820: G1 Block offset table does not need to support generic Space classes
mgerdin
parents: 24424
diff changeset
   163
    q = n;
5146d1e12a2f 8047820: G1 Block offset table does not need to support generic Space classes
mgerdin
parents: 24424
diff changeset
   164
    oop obj = oop(q);
5146d1e12a2f 8047820: G1 Block offset table does not need to support generic Space classes
mgerdin
parents: 24424
diff changeset
   165
    if (obj->klass_or_null() == NULL) return q;
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   166
    n += block_size(q);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   167
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   168
  assert(q <= n, "wrong order for q and addr");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   169
  assert(addr < n, "wrong order for addr and n");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   170
  return q;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   171
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   172
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   173
inline HeapWord*
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   174
G1BlockOffsetArray::forward_to_block_containing_addr(HeapWord* q,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   175
                                                     const void* addr) {
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
   176
  if (oop(q)->klass_or_null() == NULL) return q;
25361
5146d1e12a2f 8047820: G1 Block offset table does not need to support generic Space classes
mgerdin
parents: 24424
diff changeset
   177
  HeapWord* n = q + block_size(q);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   178
  // In the normal case, where the query "addr" is a card boundary, and the
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   179
  // offset table chunks are the same size as cards, the block starting at
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   180
  // "q" will contain addr, so the test below will fail, and we'll fall
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   181
  // through quickly.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   182
  if (n <= addr) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   183
    q = forward_to_block_containing_addr_slow(q, n, addr);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   184
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   185
  assert(q <= addr, "wrong order for current and arg");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   186
  return q;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   187
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   188
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   189
#endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1BLOCKOFFSETTABLE_INLINE_HPP