hotspot/src/share/vm/gc/g1/g1BiasedArray.cpp
author david
Tue, 29 Sep 2015 11:02:08 +0200
changeset 33105 294e48b4f704
parent 31592 43f48e165466
child 41732 25dcacf3d009
permissions -rw-r--r--
8080775: Better argument formatting for assert() and friends Reviewed-by: kbarrett, pliden
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
20083
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
     1
/*
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 24424
diff changeset
     2
 * Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
20083
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
     4
 *
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
     7
 * published by the Free Software Foundation.
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
     8
 *
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    13
 * accompanied this code).
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    14
 *
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    18
 *
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    21
 * questions.
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    22
 *
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    23
 */
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    24
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    25
#include "precompiled.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 24424
diff changeset
    26
#include "gc/g1/g1BiasedArray.hpp"
23458
947a3d680f3e 8036860: Pad and cache-align the BiasedMappedArray
tschatzl
parents: 20083
diff changeset
    27
#include "memory/padded.inline.hpp"
947a3d680f3e 8036860: Pad and cache-align the BiasedMappedArray
tschatzl
parents: 20083
diff changeset
    28
947a3d680f3e 8036860: Pad and cache-align the BiasedMappedArray
tschatzl
parents: 20083
diff changeset
    29
// Allocate a new array, generic version.
947a3d680f3e 8036860: Pad and cache-align the BiasedMappedArray
tschatzl
parents: 20083
diff changeset
    30
address G1BiasedMappedArrayBase::create_new_base_array(size_t length, size_t elem_size) {
947a3d680f3e 8036860: Pad and cache-align the BiasedMappedArray
tschatzl
parents: 20083
diff changeset
    31
  assert(length > 0, "just checking");
947a3d680f3e 8036860: Pad and cache-align the BiasedMappedArray
tschatzl
parents: 20083
diff changeset
    32
  assert(elem_size > 0, "just checking");
947a3d680f3e 8036860: Pad and cache-align the BiasedMappedArray
tschatzl
parents: 20083
diff changeset
    33
  return PaddedPrimitiveArray<u_char, mtGC>::create_unfreeable(length * elem_size);
947a3d680f3e 8036860: Pad and cache-align the BiasedMappedArray
tschatzl
parents: 20083
diff changeset
    34
}
20083
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    35
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    36
#ifndef PRODUCT
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    37
void G1BiasedMappedArrayBase::verify_index(idx_t index) const {
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    38
  guarantee(_base != NULL, "Array not initialized");
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31592
diff changeset
    39
  guarantee(index < length(), "Index out of bounds index: " SIZE_FORMAT " length: " SIZE_FORMAT, index, length());
20083
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    40
}
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    41
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    42
void G1BiasedMappedArrayBase::verify_biased_index(idx_t biased_index) const {
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    43
  guarantee(_biased_base != NULL, "Array not initialized");
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    44
  guarantee(biased_index >= bias() && biased_index < (bias() + length()),
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31592
diff changeset
    45
            "Biased index out of bounds, index: " SIZE_FORMAT " bias: " SIZE_FORMAT " length: " SIZE_FORMAT,
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31592
diff changeset
    46
            biased_index, bias(), length());
20083
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    47
}
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    48
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    49
void G1BiasedMappedArrayBase::verify_biased_index_inclusive_end(idx_t biased_index) const {
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    50
  guarantee(_biased_base != NULL, "Array not initialized");
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    51
  guarantee(biased_index >= bias() && biased_index <= (bias() + length()),
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31592
diff changeset
    52
            "Biased index out of inclusive bounds, index: " SIZE_FORMAT " bias: " SIZE_FORMAT " length: " SIZE_FORMAT,
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31592
diff changeset
    53
            biased_index, bias(), length());
20083
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    54
}
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    55
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    56
class TestMappedArray : public G1BiasedMappedArray<int> {
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    57
protected:
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    58
  virtual int default_value() const { return 0xBAADBABE; }
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    59
public:
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    60
  static void test_biasedarray() {
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    61
    const size_t REGION_SIZE_IN_WORDS = 512;
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    62
    const size_t NUM_REGIONS = 20;
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    63
    HeapWord* fake_heap = (HeapWord*)LP64_ONLY(0xBAAA00000) NOT_LP64(0xBA000000); // Any value that is non-zero
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    64
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    65
    TestMappedArray array;
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    66
    array.initialize(fake_heap, fake_heap + REGION_SIZE_IN_WORDS * NUM_REGIONS,
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    67
            REGION_SIZE_IN_WORDS * HeapWordSize);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    68
    // Check address calculation (bounds)
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    69
    assert(array.bottom_address_mapped() == fake_heap,
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 31592
diff changeset
    70
           "bottom mapped address should be " PTR_FORMAT ", but is " PTR_FORMAT, p2i(fake_heap), p2i(array.bottom_address_mapped()));
20083
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    71
    assert(array.end_address_mapped() == (fake_heap + REGION_SIZE_IN_WORDS * NUM_REGIONS), "must be");
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    72
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    73
    int* bottom = array.address_mapped_to(fake_heap);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    74
    assert((void*)bottom == (void*) array.base(), "must be");
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    75
    int* end = array.address_mapped_to(fake_heap + REGION_SIZE_IN_WORDS * NUM_REGIONS);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    76
    assert((void*)end == (void*)(array.base() + array.length()), "must be");
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    77
    // The entire array should contain default value elements
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    78
    for (int* current = bottom; current < end; current++) {
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    79
      assert(*current == array.default_value(), "must be");
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    80
    }
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    81
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    82
    // Test setting values in the table
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    83
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    84
    HeapWord* region_start_address = fake_heap + REGION_SIZE_IN_WORDS * (NUM_REGIONS / 2);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    85
    HeapWord* region_end_address = fake_heap + (REGION_SIZE_IN_WORDS * (NUM_REGIONS / 2) + REGION_SIZE_IN_WORDS - 1);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    86
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    87
    // Set/get by address tests: invert some value; first retrieve one
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    88
    int actual_value = array.get_by_index(NUM_REGIONS / 2);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    89
    array.set_by_index(NUM_REGIONS / 2, ~actual_value);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    90
    // Get the same value by address, should correspond to the start of the "region"
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    91
    int value = array.get_by_address(region_start_address);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    92
    assert(value == ~actual_value, "must be");
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    93
    // Get the same value by address, at one HeapWord before the start
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    94
    value = array.get_by_address(region_start_address - 1);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    95
    assert(value == array.default_value(), "must be");
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    96
    // Get the same value by address, at the end of the "region"
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    97
    value = array.get_by_address(region_end_address);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    98
    assert(value == ~actual_value, "must be");
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
    99
    // Make sure the next value maps to another index
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   100
    value = array.get_by_address(region_end_address + 1);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   101
    assert(value == array.default_value(), "must be");
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   102
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   103
    // Reset the value in the array
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   104
    array.set_by_address(region_start_address + (region_end_address - region_start_address) / 2, actual_value);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   105
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   106
    // The entire array should have the default value again
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   107
    for (int* current = bottom; current < end; current++) {
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   108
      assert(*current == array.default_value(), "must be");
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   109
    }
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   110
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   111
    // Set/get by index tests: invert some value
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   112
    idx_t index = NUM_REGIONS / 2;
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   113
    actual_value = array.get_by_index(index);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   114
    array.set_by_index(index, ~actual_value);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   115
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   116
    value = array.get_by_index(index);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   117
    assert(value == ~actual_value, "must be");
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   118
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   119
    value = array.get_by_index(index - 1);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   120
    assert(value == array.default_value(), "must be");
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   121
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   122
    value = array.get_by_index(index + 1);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   123
    assert(value == array.default_value(), "must be");
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   124
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   125
    array.set_by_index(0, 0);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   126
    value = array.get_by_index(0);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   127
    assert(value == 0, "must be");
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   128
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   129
    array.set_by_index(array.length() - 1, 0);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   130
    value = array.get_by_index(array.length() - 1);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   131
    assert(value == 0, "must be");
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   132
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   133
    array.set_by_index(index, 0);
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   134
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   135
    // The array should have three zeros, and default values otherwise
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   136
    size_t num_zeros = 0;
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   137
    for (int* current = bottom; current < end; current++) {
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   138
      assert(*current == array.default_value() || *current == 0, "must be");
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   139
      if (*current == 0) {
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   140
        num_zeros++;
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   141
      }
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   142
    }
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   143
    assert(num_zeros == 3, "must be");
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   144
  }
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   145
};
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   146
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   147
void TestG1BiasedArray_test() {
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   148
  TestMappedArray::test_biasedarray();
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   149
}
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   150
df032615dd00 7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff changeset
   151
#endif