author | tschatzl |
Wed, 18 Apr 2018 11:36:48 +0200 | |
changeset 49806 | 2d62570a615c |
parent 49632 | 64f9ebc85e67 |
child 51332 | c25572739e7c |
permissions | -rw-r--r-- |
7923 | 1 |
/* |
49632
64f9ebc85e67
8197573: Remove concurrent cleanup and secondary free list handling
tschatzl
parents:
47216
diff
changeset
|
2 |
* Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved. |
7923 | 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 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
#include "precompiled.hpp" |
|
30764 | 26 |
#include "gc/g1/g1CollectedHeap.inline.hpp" |
27 |
#include "gc/g1/heapRegionRemSet.hpp" |
|
28 |
#include "gc/g1/heapRegionSet.inline.hpp" |
|
7923 | 29 |
|
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
30 |
uint FreeRegionList::_unrealistically_long_length = 0; |
7923 | 31 |
|
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
32 |
#ifndef PRODUCT |
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
33 |
void HeapRegionSetBase::verify_region(HeapRegion* hr) { |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
34 |
assert(hr->containing_set() == this, "Inconsistent containing set for %u", hr->hrm_index()); |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
35 |
assert(!hr->is_young(), "Adding young region %u", hr->hrm_index()); // currently we don't use these sets for young regions |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
36 |
assert(hr->is_humongous() == regions_humongous(), "Wrong humongous state for region %u and set %s", hr->hrm_index(), name()); |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
37 |
assert(hr->is_free() == regions_free(), "Wrong free state for region %u and set %s", hr->hrm_index(), name()); |
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
38 |
assert(!hr->is_free() || hr->is_empty(), "Free region %u is not empty for set %s", hr->hrm_index(), name()); |
31346
a70d45c06136
8042668: GC Support for shared heap ranges in CDS
jiangli
parents:
30764
diff
changeset
|
39 |
assert(!hr->is_empty() || hr->is_free() || hr->is_archive(), |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
40 |
"Empty region %u is not free or archive for set %s", hr->hrm_index(), name()); |
7923 | 41 |
} |
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
42 |
#endif |
7923 | 43 |
|
44 |
void HeapRegionSetBase::verify() { |
|
45 |
// It's important that we also observe the MT safety protocol even |
|
46 |
// for the verification calls. If we do verification without the |
|
47 |
// appropriate locks and the set changes underneath our feet |
|
48 |
// verification might fail and send us on a wild goose chase. |
|
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
49 |
check_mt_safety(); |
7923 | 50 |
|
35065
b4ff0249c092
8144996: Replace the HeapRegionSetCount class with an uint
david
parents:
35061
diff
changeset
|
51 |
guarantee_heap_region_set(( is_empty() && length() == 0) || |
b4ff0249c092
8144996: Replace the HeapRegionSetCount class with an uint
david
parents:
35061
diff
changeset
|
52 |
(!is_empty() && length() > 0), |
33753
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
53 |
"invariant"); |
7923 | 54 |
} |
55 |
||
56 |
void HeapRegionSetBase::verify_start() { |
|
57 |
// See comment in verify() about MT safety and verification. |
|
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
58 |
check_mt_safety(); |
33753
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
59 |
assert_heap_region_set(!_verify_in_progress, "verification should not be in progress"); |
7923 | 60 |
|
61 |
// Do the basic verification first before we do the checks over the regions. |
|
62 |
HeapRegionSetBase::verify(); |
|
63 |
||
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
64 |
_verify_in_progress = true; |
7923 | 65 |
} |
66 |
||
67 |
void HeapRegionSetBase::verify_end() { |
|
68 |
// See comment in verify() about MT safety and verification. |
|
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
69 |
check_mt_safety(); |
33753
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
70 |
assert_heap_region_set(_verify_in_progress, "verification should be in progress"); |
7923 | 71 |
|
72 |
_verify_in_progress = false; |
|
73 |
} |
|
74 |
||
75 |
void HeapRegionSetBase::print_on(outputStream* out, bool print_contents) { |
|
76 |
out->cr(); |
|
31592
43f48e165466
8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents:
31346
diff
changeset
|
77 |
out->print_cr("Set: %s (" PTR_FORMAT ")", name(), p2i(this)); |
7923 | 78 |
out->print_cr(" Region Assumptions"); |
79 |
out->print_cr(" humongous : %s", BOOL_TO_STR(regions_humongous())); |
|
26696
623a25e6c686
8057768: Make heap region region type in G1 HeapRegion explicit
tonyp
parents:
26316
diff
changeset
|
80 |
out->print_cr(" free : %s", BOOL_TO_STR(regions_free())); |
7923 | 81 |
out->print_cr(" Attributes"); |
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10996
diff
changeset
|
82 |
out->print_cr(" length : %14u", length()); |
7923 | 83 |
} |
84 |
||
26696
623a25e6c686
8057768: Make heap region region type in G1 HeapRegion explicit
tonyp
parents:
26316
diff
changeset
|
85 |
HeapRegionSetBase::HeapRegionSetBase(const char* name, bool humongous, bool free, HRSMtSafeChecker* mt_safety_checker) |
7923 | 86 |
: _name(name), _verify_in_progress(false), |
26696
623a25e6c686
8057768: Make heap region region type in G1 HeapRegion explicit
tonyp
parents:
26316
diff
changeset
|
87 |
_is_humongous(humongous), _is_free(free), _mt_safety_checker(mt_safety_checker), |
35065
b4ff0249c092
8144996: Replace the HeapRegionSetCount class with an uint
david
parents:
35061
diff
changeset
|
88 |
_length(0) |
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
89 |
{ } |
7923 | 90 |
|
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
91 |
void FreeRegionList::set_unrealistically_long_length(uint len) { |
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
92 |
guarantee(_unrealistically_long_length == 0, "should only be set once"); |
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
93 |
_unrealistically_long_length = len; |
7923 | 94 |
} |
95 |
||
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
96 |
void FreeRegionList::remove_all() { |
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
97 |
check_mt_safety(); |
7923 | 98 |
verify_optional(); |
99 |
||
100 |
HeapRegion* curr = _head; |
|
101 |
while (curr != NULL) { |
|
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
102 |
verify_region(curr); |
7923 | 103 |
|
104 |
HeapRegion* next = curr->next(); |
|
105 |
curr->set_next(NULL); |
|
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
106 |
curr->set_prev(NULL); |
7923 | 107 |
curr->set_containing_set(NULL); |
108 |
curr = next; |
|
109 |
} |
|
110 |
clear(); |
|
111 |
||
112 |
verify_optional(); |
|
113 |
} |
|
114 |
||
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
115 |
void FreeRegionList::add_ordered(FreeRegionList* from_list) { |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
116 |
check_mt_safety(); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
117 |
from_list->check_mt_safety(); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
118 |
|
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
119 |
verify_optional(); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
120 |
from_list->verify_optional(); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
121 |
|
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
122 |
if (from_list->is_empty()) { |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
123 |
return; |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
124 |
} |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
125 |
|
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
126 |
#ifdef ASSERT |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
127 |
FreeRegionListIterator iter(from_list); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
128 |
while (iter.more_available()) { |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
129 |
HeapRegion* hr = iter.get_next(); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
130 |
// In set_containing_set() we check that we either set the value |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
131 |
// from NULL to non-NULL or vice versa to catch bugs. So, we have |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
132 |
// to NULL it first before setting it to the value. |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
133 |
hr->set_containing_set(NULL); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
134 |
hr->set_containing_set(this); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
135 |
} |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
136 |
#endif // ASSERT |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
137 |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
138 |
if (is_empty()) { |
33753
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
139 |
assert_free_region_list(length() == 0 && _tail == NULL, "invariant"); |
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
140 |
_head = from_list->_head; |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
141 |
_tail = from_list->_tail; |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
142 |
} else { |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
143 |
HeapRegion* curr_to = _head; |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
144 |
HeapRegion* curr_from = from_list->_head; |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
145 |
|
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
146 |
while (curr_from != NULL) { |
26316
93f6b40c038b
8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents:
26160
diff
changeset
|
147 |
while (curr_to != NULL && curr_to->hrm_index() < curr_from->hrm_index()) { |
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
148 |
curr_to = curr_to->next(); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
149 |
} |
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
150 |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
151 |
if (curr_to == NULL) { |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
152 |
// The rest of the from list should be added as tail |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
153 |
_tail->set_next(curr_from); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
154 |
curr_from->set_prev(_tail); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
155 |
curr_from = NULL; |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
156 |
} else { |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
157 |
HeapRegion* next_from = curr_from->next(); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
158 |
|
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
159 |
curr_from->set_next(curr_to); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
160 |
curr_from->set_prev(curr_to->prev()); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
161 |
if (curr_to->prev() == NULL) { |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
162 |
_head = curr_from; |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
163 |
} else { |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
164 |
curr_to->prev()->set_next(curr_from); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
165 |
} |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
166 |
curr_to->set_prev(curr_from); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
167 |
|
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
168 |
curr_from = next_from; |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
169 |
} |
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
170 |
} |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
171 |
|
26316
93f6b40c038b
8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents:
26160
diff
changeset
|
172 |
if (_tail->hrm_index() < from_list->_tail->hrm_index()) { |
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
173 |
_tail = from_list->_tail; |
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
174 |
} |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
175 |
} |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
176 |
|
35065
b4ff0249c092
8144996: Replace the HeapRegionSetCount class with an uint
david
parents:
35061
diff
changeset
|
177 |
_length += from_list->length(); |
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
178 |
from_list->clear(); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
179 |
|
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
180 |
verify_optional(); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
181 |
from_list->verify_optional(); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
182 |
} |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
183 |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
184 |
void FreeRegionList::remove_starting_at(HeapRegion* first, uint num_regions) { |
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
185 |
check_mt_safety(); |
33753
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
186 |
assert_free_region_list(num_regions >= 1, "pre-condition"); |
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
187 |
assert_free_region_list(!is_empty(), "pre-condition"); |
7923 | 188 |
|
189 |
verify_optional(); |
|
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10996
diff
changeset
|
190 |
DEBUG_ONLY(uint old_length = length();) |
7923 | 191 |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
192 |
HeapRegion* curr = first; |
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10996
diff
changeset
|
193 |
uint count = 0; |
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
194 |
while (count < num_regions) { |
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
195 |
verify_region(curr); |
7923 | 196 |
HeapRegion* next = curr->next(); |
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
197 |
HeapRegion* prev = curr->prev(); |
7923 | 198 |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
199 |
assert(count < num_regions, |
33753
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
200 |
"[%s] should not come across more regions " |
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
201 |
"pending for removal than num_regions: %u", |
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
202 |
name(), num_regions); |
7923 | 203 |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
204 |
if (prev == NULL) { |
33753
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
205 |
assert_free_region_list(_head == curr, "invariant"); |
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
206 |
_head = next; |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
207 |
} else { |
33753
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
208 |
assert_free_region_list(_head != curr, "invariant"); |
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
209 |
prev->set_next(next); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
210 |
} |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
211 |
if (next == NULL) { |
33753
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
212 |
assert_free_region_list(_tail == curr, "invariant"); |
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
213 |
_tail = prev; |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
214 |
} else { |
33753
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
215 |
assert_free_region_list(_tail != curr, "invariant"); |
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
216 |
next->set_prev(prev); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
217 |
} |
33752 | 218 |
if (_last == curr) { |
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
219 |
_last = NULL; |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
220 |
} |
7923 | 221 |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
222 |
curr->set_next(NULL); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
223 |
curr->set_prev(NULL); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
224 |
remove(curr); |
7923 | 225 |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
226 |
count++; |
7923 | 227 |
curr = next; |
228 |
} |
|
229 |
||
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
230 |
assert(count == num_regions, |
33753
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
231 |
"[%s] count: %u should be == num_regions: %u", |
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
232 |
name(), count, num_regions); |
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
233 |
assert(length() + num_regions == old_length, |
33753
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
234 |
"[%s] new length should be consistent " |
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
235 |
"new length: %u old length: %u num_regions: %u", |
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
236 |
name(), length(), old_length, num_regions); |
7923 | 237 |
|
238 |
verify_optional(); |
|
239 |
} |
|
240 |
||
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
241 |
void FreeRegionList::verify() { |
7923 | 242 |
// See comment in HeapRegionSetBase::verify() about MT safety and |
243 |
// verification. |
|
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
244 |
check_mt_safety(); |
7923 | 245 |
|
246 |
// This will also do the basic verification too. |
|
247 |
verify_start(); |
|
248 |
||
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
249 |
verify_list(); |
7923 | 250 |
|
251 |
verify_end(); |
|
252 |
} |
|
253 |
||
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
254 |
void FreeRegionList::clear() { |
35065
b4ff0249c092
8144996: Replace the HeapRegionSetCount class with an uint
david
parents:
35061
diff
changeset
|
255 |
_length = 0; |
7923 | 256 |
_head = NULL; |
257 |
_tail = NULL; |
|
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
258 |
_last = NULL; |
7923 | 259 |
} |
260 |
||
23459 | 261 |
void FreeRegionList::verify_list() { |
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
262 |
HeapRegion* curr = _head; |
23459 | 263 |
HeapRegion* prev1 = NULL; |
264 |
HeapRegion* prev0 = NULL; |
|
265 |
uint count = 0; |
|
266 |
size_t capacity = 0; |
|
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
267 |
uint last_index = 0; |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
268 |
|
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
269 |
guarantee(_head == NULL || _head->prev() == NULL, "_head should not have a prev"); |
23459 | 270 |
while (curr != NULL) { |
271 |
verify_region(curr); |
|
272 |
||
273 |
count++; |
|
274 |
guarantee(count < _unrealistically_long_length, |
|
33753
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
275 |
"[%s] the calculated length: %u seems very long, is there maybe a cycle? curr: " PTR_FORMAT " prev0: " PTR_FORMAT " " "prev1: " PTR_FORMAT " length: %u", |
3add06d0880f
8137756: Remove hrs_err_msg and hrs_ext_msg from heapRegionSet
david
parents:
33752
diff
changeset
|
276 |
name(), count, p2i(curr), p2i(prev0), p2i(prev1), length()); |
23459 | 277 |
|
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
278 |
if (curr->next() != NULL) { |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
279 |
guarantee(curr->next()->prev() == curr, "Next or prev pointers messed up"); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
280 |
} |
26316
93f6b40c038b
8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents:
26160
diff
changeset
|
281 |
guarantee(curr->hrm_index() == 0 || curr->hrm_index() > last_index, "List should be sorted"); |
93f6b40c038b
8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents:
26160
diff
changeset
|
282 |
last_index = curr->hrm_index(); |
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
283 |
|
23459 | 284 |
capacity += curr->capacity(); |
285 |
||
286 |
prev1 = prev0; |
|
287 |
prev0 = curr; |
|
288 |
curr = curr->next(); |
|
289 |
} |
|
290 |
||
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
291 |
guarantee(_tail == prev0, "Expected %s to end with %u but it ended with %u.", name(), _tail->hrm_index(), prev0->hrm_index()); |
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
292 |
guarantee(_tail == NULL || _tail->next() == NULL, "_tail should not have a next"); |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
31592
diff
changeset
|
293 |
guarantee(length() == count, "%s count mismatch. Expected %u, actual %u.", name(), length(), count); |
23459 | 294 |
} |
295 |
||
296 |
// Note on the check_mt_safety() methods below: |
|
297 |
// |
|
298 |
// Verification of the "master" heap region sets / lists that are |
|
299 |
// maintained by G1CollectedHeap is always done during a STW pause and |
|
300 |
// by the VM thread at the start / end of the pause. The standard |
|
301 |
// verification methods all assert check_mt_safety(). This is |
|
302 |
// important as it ensures that verification is done without |
|
303 |
// concurrent updates taking place at the same time. It follows, that, |
|
304 |
// for the "master" heap region sets / lists, the check_mt_safety() |
|
305 |
// method should include the VM thread / STW case. |
|
306 |
||
307 |
void MasterFreeRegionListMtSafeChecker::check() { |
|
308 |
// Master Free List MT safety protocol: |
|
309 |
// (a) If we're at a safepoint, operations on the master free list |
|
310 |
// should be invoked by either the VM thread (which will serialize |
|
311 |
// them) or by the GC workers while holding the |
|
312 |
// FreeList_lock. |
|
313 |
// (b) If we're not at a safepoint, operations on the master free |
|
314 |
// list should be invoked while holding the Heap_lock. |
|
315 |
||
316 |
if (SafepointSynchronize::is_at_safepoint()) { |
|
317 |
guarantee(Thread::current()->is_VM_thread() || |
|
318 |
FreeList_lock->owned_by_self(), "master free list MT safety protocol at a safepoint"); |
|
319 |
} else { |
|
320 |
guarantee(Heap_lock->owned_by_self(), "master free list MT safety protocol outside a safepoint"); |
|
321 |
} |
|
322 |
} |
|
323 |
||
324 |
void OldRegionSetMtSafeChecker::check() { |
|
325 |
// Master Old Set MT safety protocol: |
|
326 |
// (a) If we're at a safepoint, operations on the master old set |
|
327 |
// should be invoked: |
|
328 |
// - by the VM thread (which will serialize them), or |
|
329 |
// - by the GC workers while holding the FreeList_lock, if we're |
|
330 |
// at a safepoint for an evacuation pause (this lock is taken |
|
331 |
// anyway when an GC alloc region is retired so that a new one |
|
332 |
// is allocated from the free list), or |
|
333 |
// - by the GC workers while holding the OldSets_lock, if we're at a |
|
334 |
// safepoint for a cleanup pause. |
|
335 |
// (b) If we're not at a safepoint, operations on the master old set |
|
336 |
// should be invoked while holding the Heap_lock. |
|
337 |
||
338 |
if (SafepointSynchronize::is_at_safepoint()) { |
|
339 |
guarantee(Thread::current()->is_VM_thread() |
|
340 |
|| FreeList_lock->owned_by_self() || OldSets_lock->owned_by_self(), |
|
341 |
"master old set MT safety protocol at a safepoint"); |
|
342 |
} else { |
|
343 |
guarantee(Heap_lock->owned_by_self(), "master old set MT safety protocol outside a safepoint"); |
|
344 |
} |
|
345 |
} |
|
346 |
||
347 |
void HumongousRegionSetMtSafeChecker::check() { |
|
348 |
// Humongous Set MT safety protocol: |
|
349 |
// (a) If we're at a safepoint, operations on the master humongous |
|
350 |
// set should be invoked by either the VM thread (which will |
|
351 |
// serialize them) or by the GC workers while holding the |
|
352 |
// OldSets_lock. |
|
353 |
// (b) If we're not at a safepoint, operations on the master |
|
354 |
// humongous set should be invoked while holding the Heap_lock. |
|
355 |
||
356 |
if (SafepointSynchronize::is_at_safepoint()) { |
|
357 |
guarantee(Thread::current()->is_VM_thread() || |
|
358 |
OldSets_lock->owned_by_self(), |
|
359 |
"master humongous set MT safety protocol at a safepoint"); |
|
360 |
} else { |
|
361 |
guarantee(Heap_lock->owned_by_self(), |
|
362 |
"master humongous set MT safety protocol outside a safepoint"); |
|
363 |
} |
|
364 |
} |