author | tschatzl |
Wed, 18 Apr 2018 11:36:48 +0200 | |
changeset 49806 | 2d62570a615c |
parent 47216 | 71c04702a3d5 |
child 53244 | 9807daeb47c4 |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
46286
c112671e114e
8173764: G1 BOT wrongly assumes that objects must always begin at the start of G1BlockOffsetTablePart
sjohanss
parents:
42588
diff
changeset
|
2 |
* Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved. |
1374 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
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 | 22 |
* |
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_G1_G1BLOCKOFFSETTABLE_INLINE_HPP |
26 |
#define SHARE_VM_GC_G1_G1BLOCKOFFSETTABLE_INLINE_HPP |
|
7397 | 27 |
|
30764 | 28 |
#include "gc/g1/g1BlockOffsetTable.hpp" |
32389
626f27450e12
8067336: Allow that PLAB allocations at the end of regions are flexible
tschatzl
parents:
30764
diff
changeset
|
29 |
#include "gc/g1/heapRegion.hpp" |
32598
70b490faa49f
8131330: G1CollectedHeap::verify_dirty_young_list fails with assert
kbarrett
parents:
32389
diff
changeset
|
30 |
#include "gc/shared/memset_with_concurrent_readers.hpp" |
30764 | 31 |
#include "gc/shared/space.hpp" |
7397 | 32 |
|
35461 | 33 |
inline HeapWord* G1BlockOffsetTablePart::block_start(const void* addr) { |
34 |
if (addr >= _space->bottom() && addr < _space->end()) { |
|
35 |
HeapWord* q = block_at_or_preceding(addr, true, _next_offset_index-1); |
|
36 |
return forward_to_block_containing_addr(q, addr); |
|
1374 | 37 |
} else { |
38 |
return NULL; |
|
39 |
} |
|
40 |
} |
|
41 |
||
35461 | 42 |
inline HeapWord* G1BlockOffsetTablePart::block_start_const(const void* addr) const { |
43 |
if (addr >= _space->bottom() && addr < _space->end()) { |
|
44 |
HeapWord* q = block_at_or_preceding(addr, true, _next_offset_index-1); |
|
45 |
HeapWord* n = q + block_size(q); |
|
46 |
return forward_to_block_containing_addr_const(q, n, addr); |
|
1374 | 47 |
} else { |
48 |
return NULL; |
|
49 |
} |
|
50 |
} |
|
51 |
||
35461 | 52 |
u_char G1BlockOffsetTable::offset_array(size_t index) const { |
26160 | 53 |
check_index(index, "index out of range"); |
54 |
return _offset_array[index]; |
|
55 |
} |
|
56 |
||
35461 | 57 |
void G1BlockOffsetTable::set_offset_array(size_t index, u_char offset) { |
26160 | 58 |
check_index(index, "index out of range"); |
59 |
set_offset_array_raw(index, offset); |
|
60 |
} |
|
61 |
||
35461 | 62 |
void G1BlockOffsetTable::set_offset_array(size_t index, HeapWord* high, HeapWord* low) { |
26160 | 63 |
check_index(index, "index out of range"); |
64 |
assert(high >= low, "addresses out of order"); |
|
65 |
size_t offset = pointer_delta(high, low); |
|
66 |
check_offset(offset, "offset too large"); |
|
67 |
set_offset_array(index, (u_char)offset); |
|
68 |
} |
|
69 |
||
35461 | 70 |
void G1BlockOffsetTable::set_offset_array(size_t left, size_t right, u_char offset) { |
26160 | 71 |
check_index(right, "right index out of range"); |
72 |
assert(left <= right, "indexes out of order"); |
|
73 |
size_t num_cards = right - left + 1; |
|
32598
70b490faa49f
8131330: G1CollectedHeap::verify_dirty_young_list fails with assert
kbarrett
parents:
32389
diff
changeset
|
74 |
memset_with_concurrent_readers(&_offset_array[left], offset, num_cards); |
26160 | 75 |
} |
76 |
||
77 |
// Variant of index_for that does not check the index for validity. |
|
35461 | 78 |
inline size_t G1BlockOffsetTable::index_for_raw(const void* p) const { |
35469
17ea1b453dd5
8146694: Break out shared constants and static BOT functions.
david
parents:
35461
diff
changeset
|
79 |
return pointer_delta((char*)p, _reserved.start(), sizeof(char)) >> BOTConstants::LogN; |
26160 | 80 |
} |
81 |
||
35461 | 82 |
inline size_t G1BlockOffsetTable::index_for(const void* p) const { |
1374 | 83 |
char* pc = (char*)p; |
84 |
assert(pc >= (char*)_reserved.start() && |
|
85 |
pc < (char*)_reserved.end(), |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32598
diff
changeset
|
86 |
"p (" PTR_FORMAT ") not in reserved [" PTR_FORMAT ", " PTR_FORMAT ")", |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32598
diff
changeset
|
87 |
p2i(p), p2i(_reserved.start()), p2i(_reserved.end())); |
26160 | 88 |
size_t result = index_for_raw(p); |
14584
bd4290e6d0a5
7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents:
13728
diff
changeset
|
89 |
check_index(result, "bad index from address"); |
1374 | 90 |
return result; |
91 |
} |
|
92 |
||
35461 | 93 |
inline HeapWord* G1BlockOffsetTable::address_for_index(size_t index) const { |
14584
bd4290e6d0a5
7194633: G1: Assertion and guarantee failures in block offset table
johnc
parents:
13728
diff
changeset
|
94 |
check_index(index, "index out of range"); |
26160 | 95 |
HeapWord* result = address_for_index_raw(index); |
1374 | 96 |
assert(result >= _reserved.start() && result < _reserved.end(), |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32598
diff
changeset
|
97 |
"bad address from index result " PTR_FORMAT |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32598
diff
changeset
|
98 |
" _reserved.start() " PTR_FORMAT " _reserved.end() " PTR_FORMAT, |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32598
diff
changeset
|
99 |
p2i(result), p2i(_reserved.start()), p2i(_reserved.end())); |
1374 | 100 |
return result; |
101 |
} |
|
102 |
||
35461 | 103 |
inline size_t G1BlockOffsetTablePart::block_size(const HeapWord* p) const { |
104 |
return _space->block_size(p); |
|
25361
5146d1e12a2f
8047820: G1 Block offset table does not need to support generic Space classes
mgerdin
parents:
24424
diff
changeset
|
105 |
} |
5146d1e12a2f
8047820: G1 Block offset table does not need to support generic Space classes
mgerdin
parents:
24424
diff
changeset
|
106 |
|
35461 | 107 |
inline HeapWord* G1BlockOffsetTablePart::block_at_or_preceding(const void* addr, |
108 |
bool has_max_index, |
|
109 |
size_t max_index) const { |
|
46286
c112671e114e
8173764: G1 BOT wrongly assumes that objects must always begin at the start of G1BlockOffsetTablePart
sjohanss
parents:
42588
diff
changeset
|
110 |
assert(_object_can_span || _bot->offset_array(_bot->index_for(_space->bottom())) == 0, |
c112671e114e
8173764: G1 BOT wrongly assumes that objects must always begin at the start of G1BlockOffsetTablePart
sjohanss
parents:
42588
diff
changeset
|
111 |
"Object crossed region boundary, found offset %u instead of 0", |
c112671e114e
8173764: G1 BOT wrongly assumes that objects must always begin at the start of G1BlockOffsetTablePart
sjohanss
parents:
42588
diff
changeset
|
112 |
(uint) _bot->offset_array(_bot->index_for(_space->bottom()))); |
35461 | 113 |
size_t index = _bot->index_for(addr); |
1374 | 114 |
// We must make sure that the offset table entry we use is valid. If |
115 |
// "addr" is past the end, start at the last known one and go forward. |
|
116 |
if (has_max_index) { |
|
117 |
index = MIN2(index, max_index); |
|
118 |
} |
|
35461 | 119 |
HeapWord* q = _bot->address_for_index(index); |
1374 | 120 |
|
35461 | 121 |
uint offset = _bot->offset_array(index); // Extend u_char to uint. |
35469
17ea1b453dd5
8146694: Break out shared constants and static BOT functions.
david
parents:
35461
diff
changeset
|
122 |
while (offset >= BOTConstants::N_words) { |
1374 | 123 |
// The excess of the offset from N_words indicates a power of Base |
124 |
// to go back by. |
|
35469
17ea1b453dd5
8146694: Break out shared constants and static BOT functions.
david
parents:
35461
diff
changeset
|
125 |
size_t n_cards_back = BOTConstants::entry_to_cards_back(offset); |
17ea1b453dd5
8146694: Break out shared constants and static BOT functions.
david
parents:
35461
diff
changeset
|
126 |
q -= (BOTConstants::N_words * n_cards_back); |
1374 | 127 |
index -= n_cards_back; |
35461 | 128 |
offset = _bot->offset_array(index); |
1374 | 129 |
} |
35469
17ea1b453dd5
8146694: Break out shared constants and static BOT functions.
david
parents:
35461
diff
changeset
|
130 |
assert(offset < BOTConstants::N_words, "offset too large"); |
1374 | 131 |
q -= offset; |
132 |
return q; |
|
133 |
} |
|
134 |
||
35461 | 135 |
inline HeapWord* G1BlockOffsetTablePart::forward_to_block_containing_addr_const(HeapWord* q, HeapWord* n, |
136 |
const void* addr) const { |
|
137 |
if (addr >= _space->top()) return _space->top(); |
|
25361
5146d1e12a2f
8047820: G1 Block offset table does not need to support generic Space classes
mgerdin
parents:
24424
diff
changeset
|
138 |
while (n <= addr) { |
5146d1e12a2f
8047820: G1 Block offset table does not need to support generic Space classes
mgerdin
parents:
24424
diff
changeset
|
139 |
q = n; |
5146d1e12a2f
8047820: G1 Block offset table does not need to support generic Space classes
mgerdin
parents:
24424
diff
changeset
|
140 |
oop obj = oop(q); |
42588 | 141 |
if (obj->klass_or_null_acquire() == NULL) { |
35461 | 142 |
return q; |
143 |
} |
|
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
144 |
n += block_size(q); |
1374 | 145 |
} |
146 |
assert(q <= n, "wrong order for q and addr"); |
|
147 |
assert(addr < n, "wrong order for addr and n"); |
|
148 |
return q; |
|
149 |
} |
|
150 |
||
35461 | 151 |
inline HeapWord* G1BlockOffsetTablePart::forward_to_block_containing_addr(HeapWord* q, |
152 |
const void* addr) { |
|
42588 | 153 |
if (oop(q)->klass_or_null_acquire() == NULL) { |
35461 | 154 |
return q; |
155 |
} |
|
25361
5146d1e12a2f
8047820: G1 Block offset table does not need to support generic Space classes
mgerdin
parents:
24424
diff
changeset
|
156 |
HeapWord* n = q + block_size(q); |
1374 | 157 |
// In the normal case, where the query "addr" is a card boundary, and the |
158 |
// offset table chunks are the same size as cards, the block starting at |
|
159 |
// "q" will contain addr, so the test below will fail, and we'll fall |
|
160 |
// through quickly. |
|
161 |
if (n <= addr) { |
|
162 |
q = forward_to_block_containing_addr_slow(q, n, addr); |
|
163 |
} |
|
164 |
assert(q <= addr, "wrong order for current and arg"); |
|
165 |
return q; |
|
166 |
} |
|
167 |
||
30764 | 168 |
#endif // SHARE_VM_GC_G1_G1BLOCKOFFSETTABLE_INLINE_HPP |