author | tschatzl |
Wed, 25 Sep 2013 13:25:24 +0200 | |
changeset 20083 | df032615dd00 |
child 22553 | 12b903843ee2 |
permissions | -rw-r--r-- |
20083
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
1 |
/* |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
2 |
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved. |
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 |
#ifndef SHARE_VM_GC_IMPLEMENTATION_G1_G1BIASEDARRAY_HPP |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
26 |
#define SHARE_VM_GC_IMPLEMENTATION_G1_G1BIASEDARRAY_HPP |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
27 |
|
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
28 |
#include "utilities/debug.hpp" |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
29 |
#include "memory/allocation.inline.hpp" |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
30 |
|
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
31 |
// Implements the common base functionality for arrays that contain provisions |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
32 |
// for accessing its elements using a biased index. |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
33 |
// The element type is defined by the instantiating the template. |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
34 |
class G1BiasedMappedArrayBase VALUE_OBJ_CLASS_SPEC { |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
35 |
friend class VMStructs; |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
36 |
public: |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
37 |
typedef size_t idx_t; |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
38 |
protected: |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
39 |
address _base; // the real base address |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
40 |
size_t _length; // the length of the array |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
41 |
address _biased_base; // base address biased by "bias" elements |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
42 |
size_t _bias; // the bias, i.e. the offset biased_base is located to the right in elements |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
43 |
uint _shift_by; // the amount of bits to shift right when mapping to an index of the array. |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
44 |
|
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
45 |
protected: |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
46 |
|
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
47 |
G1BiasedMappedArrayBase() : _base(NULL), _length(0), _biased_base(NULL), |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
48 |
_bias(0), _shift_by(0) { } |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
49 |
|
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
50 |
// Allocate a new array, generic version. |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
51 |
static address create_new_base_array(size_t length, size_t elem_size) { |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
52 |
assert(length > 0, "just checking"); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
53 |
assert(elem_size > 0, "just checking"); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
54 |
return NEW_C_HEAP_ARRAY(u_char, length * elem_size, mtGC); |
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 |
|
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
57 |
// Initialize the members of this class. The biased start address of this array |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
58 |
// is the bias (in elements) multiplied by the element size. |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
59 |
void initialize_base(address base, size_t length, size_t bias, size_t elem_size, uint shift_by) { |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
60 |
assert(base != NULL, "just checking"); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
61 |
assert(length > 0, "just checking"); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
62 |
assert(shift_by < sizeof(uintptr_t) * 8, err_msg("Shifting by %zd, larger than word size?", shift_by)); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
63 |
_base = base; |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
64 |
_length = length; |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
65 |
_biased_base = base - (bias * elem_size); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
66 |
_bias = bias; |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
67 |
_shift_by = shift_by; |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
68 |
} |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
69 |
|
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
70 |
// Allocate and initialize this array to cover the heap addresses in the range |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
71 |
// of [bottom, end). |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
72 |
void initialize(HeapWord* bottom, HeapWord* end, size_t target_elem_size_in_bytes, size_t mapping_granularity_in_bytes) { |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
73 |
assert(mapping_granularity_in_bytes > 0, "just checking"); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
74 |
assert(is_power_of_2(mapping_granularity_in_bytes), |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
75 |
err_msg("mapping granularity must be power of 2, is %zd", mapping_granularity_in_bytes)); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
76 |
assert((uintptr_t)bottom % mapping_granularity_in_bytes == 0, |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
77 |
err_msg("bottom mapping area address must be a multiple of mapping granularity %zd, is "PTR_FORMAT, |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
78 |
mapping_granularity_in_bytes, bottom)); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
79 |
assert((uintptr_t)end % mapping_granularity_in_bytes == 0, |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
80 |
err_msg("end mapping area address must be a multiple of mapping granularity %zd, is "PTR_FORMAT, |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
81 |
mapping_granularity_in_bytes, end)); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
82 |
size_t num_target_elems = (end - bottom) / (mapping_granularity_in_bytes / HeapWordSize); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
83 |
idx_t bias = (uintptr_t)bottom / mapping_granularity_in_bytes; |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
84 |
address base = create_new_base_array(num_target_elems, target_elem_size_in_bytes); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
85 |
initialize_base(base, num_target_elems, bias, target_elem_size_in_bytes, log2_intptr(mapping_granularity_in_bytes)); |
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 |
|
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
88 |
size_t bias() const { return _bias; } |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
89 |
uint shift_by() const { return _shift_by; } |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
90 |
|
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
91 |
void verify_index(idx_t index) const PRODUCT_RETURN; |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
92 |
void verify_biased_index(idx_t biased_index) const PRODUCT_RETURN; |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
93 |
void verify_biased_index_inclusive_end(idx_t biased_index) const PRODUCT_RETURN; |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
94 |
|
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
95 |
public: |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
96 |
// Return the length of the array in elements. |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
97 |
size_t length() const { return _length; } |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
98 |
}; |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
99 |
|
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
100 |
// Array that provides biased access and mapping from (valid) addresses in the |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
101 |
// heap into this array. |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
102 |
template<class T> |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
103 |
class G1BiasedMappedArray : public G1BiasedMappedArrayBase { |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
104 |
public: |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
105 |
typedef G1BiasedMappedArrayBase::idx_t idx_t; |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
106 |
|
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
107 |
T* base() const { return (T*)G1BiasedMappedArrayBase::_base; } |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
108 |
// Return the element of the given array at the given index. Assume |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
109 |
// the index is valid. This is a convenience method that does sanity |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
110 |
// checking on the index. |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
111 |
T get_by_index(idx_t index) const { |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
112 |
verify_index(index); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
113 |
return this->base()[index]; |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
114 |
} |
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 |
// Set the element of the given array at the given index to the |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
117 |
// given value. Assume the index is valid. This is a convenience |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
118 |
// method that does sanity checking on the index. |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
119 |
void set_by_index(idx_t index, T value) { |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
120 |
verify_index(index); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
121 |
this->base()[index] = value; |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
122 |
} |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
123 |
|
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
124 |
// The raw biased base pointer. |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
125 |
T* biased_base() const { return (T*)G1BiasedMappedArrayBase::_biased_base; } |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
126 |
|
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
127 |
// Return the element of the given array that covers the given word in the |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
128 |
// heap. Assumes the index is valid. |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
129 |
T get_by_address(HeapWord* value) const { |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
130 |
idx_t biased_index = ((uintptr_t)value) >> this->shift_by(); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
131 |
this->verify_biased_index(biased_index); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
132 |
return biased_base()[biased_index]; |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
133 |
} |
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 |
// Set the value of the array entry that corresponds to the given array. |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
136 |
void set_by_address(HeapWord * address, T value) { |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
137 |
idx_t biased_index = ((uintptr_t)address) >> this->shift_by(); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
138 |
this->verify_biased_index(biased_index); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
139 |
biased_base()[biased_index] = value; |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
140 |
} |
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 |
protected: |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
143 |
// Returns the address of the element the given address maps to |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
144 |
T* address_mapped_to(HeapWord* address) { |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
145 |
idx_t biased_index = ((uintptr_t)address) >> this->shift_by(); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
146 |
this->verify_biased_index_inclusive_end(biased_index); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
147 |
return biased_base() + biased_index; |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
148 |
} |
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 |
public: |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
151 |
// Return the smallest address (inclusive) in the heap that this array covers. |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
152 |
HeapWord* bottom_address_mapped() const { |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
153 |
return (HeapWord*) ((uintptr_t)this->bias() << this->shift_by()); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
154 |
} |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
155 |
|
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
156 |
// Return the highest address (exclusive) in the heap that this array covers. |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
157 |
HeapWord* end_address_mapped() const { |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
158 |
return (HeapWord*) ((uintptr_t)(this->bias() + this->length()) << this->shift_by()); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
159 |
} |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
160 |
|
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
161 |
protected: |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
162 |
virtual T default_value() const = 0; |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
163 |
// Set all elements of the given array to the given value. |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
164 |
void clear() { |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
165 |
T value = default_value(); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
166 |
for (idx_t i = 0; i < length(); i++) { |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
167 |
set_by_index(i, value); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
168 |
} |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
169 |
} |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
170 |
public: |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
171 |
G1BiasedMappedArray() {} |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
172 |
|
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
173 |
// Allocate and initialize this array to cover the heap addresses in the range |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
174 |
// of [bottom, end). |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
175 |
void initialize(HeapWord* bottom, HeapWord* end, size_t mapping_granularity) { |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
176 |
G1BiasedMappedArrayBase::initialize(bottom, end, sizeof(T), mapping_granularity); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
177 |
this->clear(); |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
178 |
} |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
179 |
}; |
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
180 |
|
df032615dd00
7163191: G1: introduce a "heap spanning table" abstraction
tschatzl
parents:
diff
changeset
|
181 |
#endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1BIASEDARRAY_HPP |