author | kbarrett |
Wed, 15 Apr 2015 12:16:01 -0400 | |
changeset 30182 | 1c980a880941 |
parent 30158 | bd6094906ef8 |
permissions | -rw-r--r-- |
7923 | 1 |
/* |
29580
a67a581cfe11
8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents:
27880
diff
changeset
|
2 |
* Copyright (c) 2011, 2015, 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" |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
26 |
#include "gc_implementation/g1/g1CollectedHeap.inline.hpp" |
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
27 |
#include "gc_implementation/g1/heapRegionRemSet.hpp" |
7923 | 28 |
#include "gc_implementation/g1/heapRegionSet.inline.hpp" |
29 |
||
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
30 |
uint FreeRegionList::_unrealistically_long_length = 0; |
7923 | 31 |
|
8680 | 32 |
void HeapRegionSetBase::fill_in_ext_msg(hrs_ext_msg* msg, const char* message) { |
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
33 |
msg->append("[%s] %s ln: %u cy: "SIZE_FORMAT, |
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
34 |
name(), message, length(), total_capacity_bytes()); |
7923 | 35 |
fill_in_ext_msg_extra(msg); |
36 |
} |
|
37 |
||
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
38 |
#ifndef PRODUCT |
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
39 |
void HeapRegionSetBase::verify_region(HeapRegion* hr) { |
26316
93f6b40c038b
8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents:
26160
diff
changeset
|
40 |
assert(hr->containing_set() == this, err_msg("Inconsistent containing set for %u", hr->hrm_index())); |
93f6b40c038b
8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents:
26160
diff
changeset
|
41 |
assert(!hr->is_young(), err_msg("Adding young region %u", hr->hrm_index())); // currently we don't use these sets for young regions |
26846
7d4376f8560e
8058495: G1: normalize names for isHumongous() and friends
tonyp
parents:
26696
diff
changeset
|
42 |
assert(hr->is_humongous() == regions_humongous(), err_msg("Wrong humongous state for region %u and set %s", hr->hrm_index(), name())); |
26696
623a25e6c686
8057768: Make heap region region type in G1 HeapRegion explicit
tonyp
parents:
26316
diff
changeset
|
43 |
assert(hr->is_free() == regions_free(), err_msg("Wrong free state for region %u and set %s", hr->hrm_index(), name())); |
623a25e6c686
8057768: Make heap region region type in G1 HeapRegion explicit
tonyp
parents:
26316
diff
changeset
|
44 |
assert(!hr->is_free() || hr->is_empty(), err_msg("Free region %u is not empty for set %s", hr->hrm_index(), name())); |
623a25e6c686
8057768: Make heap region region type in G1 HeapRegion explicit
tonyp
parents:
26316
diff
changeset
|
45 |
assert(!hr->is_empty() || hr->is_free(), err_msg("Empty region %u is not free for set %s", hr->hrm_index(), name())); |
26316
93f6b40c038b
8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents:
26160
diff
changeset
|
46 |
assert(hr->rem_set()->verify_ready_for_par_iteration(), err_msg("Wrong iteration state %u", hr->hrm_index())); |
7923 | 47 |
} |
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
48 |
#endif |
7923 | 49 |
|
50 |
void HeapRegionSetBase::verify() { |
|
51 |
// It's important that we also observe the MT safety protocol even |
|
52 |
// for the verification calls. If we do verification without the |
|
53 |
// appropriate locks and the set changes underneath our feet |
|
54 |
// verification might fail and send us on a wild goose chase. |
|
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
55 |
check_mt_safety(); |
7923 | 56 |
|
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
57 |
guarantee(( is_empty() && length() == 0 && total_capacity_bytes() == 0) || |
29580
a67a581cfe11
8073315: Enable gcc -Wtype-limits and fix upcoming issues.
goetz
parents:
27880
diff
changeset
|
58 |
(!is_empty() && length() > 0 && total_capacity_bytes() > 0) , |
8680 | 59 |
hrs_ext_msg(this, "invariant")); |
7923 | 60 |
} |
61 |
||
62 |
void HeapRegionSetBase::verify_start() { |
|
63 |
// See comment in verify() about MT safety and verification. |
|
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
64 |
check_mt_safety(); |
7923 | 65 |
assert(!_verify_in_progress, |
8680 | 66 |
hrs_ext_msg(this, "verification should not be in progress")); |
7923 | 67 |
|
68 |
// Do the basic verification first before we do the checks over the regions. |
|
69 |
HeapRegionSetBase::verify(); |
|
70 |
||
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
71 |
_verify_in_progress = true; |
7923 | 72 |
} |
73 |
||
74 |
void HeapRegionSetBase::verify_end() { |
|
75 |
// See comment in verify() about MT safety and verification. |
|
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
76 |
check_mt_safety(); |
7923 | 77 |
assert(_verify_in_progress, |
8680 | 78 |
hrs_ext_msg(this, "verification should be in progress")); |
7923 | 79 |
|
80 |
_verify_in_progress = false; |
|
81 |
} |
|
82 |
||
83 |
void HeapRegionSetBase::print_on(outputStream* out, bool print_contents) { |
|
84 |
out->cr(); |
|
29796
7a04e5c250d1
8076054: g1: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
29580
diff
changeset
|
85 |
out->print_cr("Set: %s ("PTR_FORMAT")", name(), p2i(this)); |
7923 | 86 |
out->print_cr(" Region Assumptions"); |
87 |
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
|
88 |
out->print_cr(" free : %s", BOOL_TO_STR(regions_free())); |
7923 | 89 |
out->print_cr(" Attributes"); |
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10996
diff
changeset
|
90 |
out->print_cr(" length : %14u", length()); |
7923 | 91 |
out->print_cr(" total capacity : "SIZE_FORMAT_W(14)" bytes", |
92 |
total_capacity_bytes()); |
|
93 |
} |
|
94 |
||
26696
623a25e6c686
8057768: Make heap region region type in G1 HeapRegion explicit
tonyp
parents:
26316
diff
changeset
|
95 |
HeapRegionSetBase::HeapRegionSetBase(const char* name, bool humongous, bool free, HRSMtSafeChecker* mt_safety_checker) |
7923 | 96 |
: _name(name), _verify_in_progress(false), |
26696
623a25e6c686
8057768: Make heap region region type in G1 HeapRegion explicit
tonyp
parents:
26316
diff
changeset
|
97 |
_is_humongous(humongous), _is_free(free), _mt_safety_checker(mt_safety_checker), |
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
98 |
_count() |
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
99 |
{ } |
7923 | 100 |
|
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
101 |
void FreeRegionList::set_unrealistically_long_length(uint len) { |
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
102 |
guarantee(_unrealistically_long_length == 0, "should only be set once"); |
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
103 |
_unrealistically_long_length = len; |
7923 | 104 |
} |
105 |
||
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
106 |
void FreeRegionList::fill_in_ext_msg_extra(hrs_ext_msg* msg) { |
29796
7a04e5c250d1
8076054: g1: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
29580
diff
changeset
|
107 |
msg->append(" hd: "PTR_FORMAT" tl: "PTR_FORMAT, p2i(_head), p2i(_tail)); |
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
108 |
} |
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
109 |
|
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
110 |
void FreeRegionList::remove_all() { |
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
111 |
check_mt_safety(); |
7923 | 112 |
verify_optional(); |
113 |
||
114 |
HeapRegion* curr = _head; |
|
115 |
while (curr != NULL) { |
|
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
116 |
verify_region(curr); |
7923 | 117 |
|
118 |
HeapRegion* next = curr->next(); |
|
119 |
curr->set_next(NULL); |
|
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
120 |
curr->set_prev(NULL); |
7923 | 121 |
curr->set_containing_set(NULL); |
122 |
curr = next; |
|
123 |
} |
|
124 |
clear(); |
|
125 |
||
126 |
verify_optional(); |
|
127 |
} |
|
128 |
||
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
129 |
void FreeRegionList::add_ordered(FreeRegionList* from_list) { |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
130 |
check_mt_safety(); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
131 |
from_list->check_mt_safety(); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
132 |
|
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
133 |
verify_optional(); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
134 |
from_list->verify_optional(); |
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 |
if (from_list->is_empty()) { |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
137 |
return; |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
138 |
} |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
139 |
|
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
140 |
#ifdef ASSERT |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
141 |
FreeRegionListIterator iter(from_list); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
142 |
while (iter.more_available()) { |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
143 |
HeapRegion* hr = iter.get_next(); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
144 |
// 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
|
145 |
// 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
|
146 |
// 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
|
147 |
hr->set_containing_set(NULL); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
148 |
hr->set_containing_set(this); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
149 |
} |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
150 |
#endif // ASSERT |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
151 |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
152 |
if (is_empty()) { |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
153 |
assert(length() == 0 && _tail == NULL, hrs_ext_msg(this, "invariant")); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
154 |
_head = from_list->_head; |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
155 |
_tail = from_list->_tail; |
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* curr_to = _head; |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
158 |
HeapRegion* curr_from = from_list->_head; |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
159 |
|
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
160 |
while (curr_from != NULL) { |
26316
93f6b40c038b
8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents:
26160
diff
changeset
|
161 |
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
|
162 |
curr_to = curr_to->next(); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
163 |
} |
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
164 |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
165 |
if (curr_to == NULL) { |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
166 |
// 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
|
167 |
_tail->set_next(curr_from); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
168 |
curr_from->set_prev(_tail); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
169 |
curr_from = NULL; |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
170 |
} else { |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
171 |
HeapRegion* next_from = curr_from->next(); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
172 |
|
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
173 |
curr_from->set_next(curr_to); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
174 |
curr_from->set_prev(curr_to->prev()); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
175 |
if (curr_to->prev() == NULL) { |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
176 |
_head = curr_from; |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
177 |
} else { |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
178 |
curr_to->prev()->set_next(curr_from); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
179 |
} |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
180 |
curr_to->set_prev(curr_from); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
181 |
|
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
182 |
curr_from = next_from; |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
183 |
} |
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
184 |
} |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
185 |
|
26316
93f6b40c038b
8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents:
26160
diff
changeset
|
186 |
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
|
187 |
_tail = from_list->_tail; |
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
188 |
} |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
189 |
} |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
190 |
|
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
191 |
_count.increment(from_list->length(), from_list->total_capacity_bytes()); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
192 |
from_list->clear(); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
193 |
|
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
194 |
verify_optional(); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
195 |
from_list->verify_optional(); |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
196 |
} |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
197 |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
198 |
void FreeRegionList::remove_starting_at(HeapRegion* first, uint num_regions) { |
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
199 |
check_mt_safety(); |
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
200 |
assert(num_regions >= 1, hrs_ext_msg(this, "pre-condition")); |
8680 | 201 |
assert(!is_empty(), hrs_ext_msg(this, "pre-condition")); |
7923 | 202 |
|
203 |
verify_optional(); |
|
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10996
diff
changeset
|
204 |
DEBUG_ONLY(uint old_length = length();) |
7923 | 205 |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
206 |
HeapRegion* curr = first; |
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
10996
diff
changeset
|
207 |
uint count = 0; |
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
208 |
while (count < num_regions) { |
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
209 |
verify_region(curr); |
7923 | 210 |
HeapRegion* next = curr->next(); |
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
211 |
HeapRegion* prev = curr->prev(); |
7923 | 212 |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
213 |
assert(count < num_regions, |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
214 |
hrs_err_msg("[%s] should not come across more regions " |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
215 |
"pending for removal than num_regions: %u", |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
216 |
name(), num_regions)); |
7923 | 217 |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
218 |
if (prev == NULL) { |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
219 |
assert(_head == curr, hrs_ext_msg(this, "invariant")); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
220 |
_head = next; |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
221 |
} else { |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
222 |
assert(_head != curr, hrs_ext_msg(this, "invariant")); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
223 |
prev->set_next(next); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
224 |
} |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
225 |
if (next == NULL) { |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
226 |
assert(_tail == curr, hrs_ext_msg(this, "invariant")); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
227 |
_tail = prev; |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
228 |
} else { |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
229 |
assert(_tail != curr, hrs_ext_msg(this, "invariant")); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
230 |
next->set_prev(prev); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
231 |
} |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
232 |
if (_last = curr) { |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
233 |
_last = NULL; |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
234 |
} |
7923 | 235 |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
236 |
curr->set_next(NULL); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
237 |
curr->set_prev(NULL); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
238 |
remove(curr); |
7923 | 239 |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
240 |
count++; |
7923 | 241 |
curr = next; |
242 |
} |
|
243 |
||
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
244 |
assert(count == num_regions, |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
245 |
hrs_err_msg("[%s] count: %u should be == num_regions: %u", |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
246 |
name(), count, num_regions)); |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
247 |
assert(length() + num_regions == old_length, |
8680 | 248 |
hrs_err_msg("[%s] new length should be consistent " |
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
249 |
"new length: %u old length: %u num_regions: %u", |
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
250 |
name(), length(), old_length, num_regions)); |
7923 | 251 |
|
252 |
verify_optional(); |
|
253 |
} |
|
254 |
||
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
255 |
void FreeRegionList::verify() { |
7923 | 256 |
// See comment in HeapRegionSetBase::verify() about MT safety and |
257 |
// verification. |
|
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
258 |
check_mt_safety(); |
7923 | 259 |
|
260 |
// This will also do the basic verification too. |
|
261 |
verify_start(); |
|
262 |
||
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
263 |
verify_list(); |
7923 | 264 |
|
265 |
verify_end(); |
|
266 |
} |
|
267 |
||
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
268 |
void FreeRegionList::clear() { |
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
269 |
_count = HeapRegionSetCount(); |
7923 | 270 |
_head = NULL; |
271 |
_tail = NULL; |
|
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
272 |
_last = NULL; |
7923 | 273 |
} |
274 |
||
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
275 |
void FreeRegionList::print_on(outputStream* out, bool print_contents) { |
7923 | 276 |
HeapRegionSetBase::print_on(out, print_contents); |
277 |
out->print_cr(" Linking"); |
|
29796
7a04e5c250d1
8076054: g1: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
29580
diff
changeset
|
278 |
out->print_cr(" head : "PTR_FORMAT, p2i(_head)); |
7a04e5c250d1
8076054: g1: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
29580
diff
changeset
|
279 |
out->print_cr(" tail : "PTR_FORMAT, p2i(_tail)); |
7923 | 280 |
|
281 |
if (print_contents) { |
|
282 |
out->print_cr(" Contents"); |
|
23450
c7c6202fc7e2
8034079: G1: Refactor the HeapRegionSet hierarchy
brutisso
parents:
13336
diff
changeset
|
283 |
FreeRegionListIterator iter(this); |
7923 | 284 |
while (iter.more_available()) { |
285 |
HeapRegion* hr = iter.get_next(); |
|
286 |
hr->print_on(out); |
|
287 |
} |
|
288 |
} |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
289 |
|
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
290 |
out->cr(); |
7923 | 291 |
} |
23459 | 292 |
|
293 |
void FreeRegionList::verify_list() { |
|
26157
70eddb655686
8054818: Refactor HeapRegionSeq to manage heap region and auxiliary data
tschatzl
parents:
24424
diff
changeset
|
294 |
HeapRegion* curr = _head; |
23459 | 295 |
HeapRegion* prev1 = NULL; |
296 |
HeapRegion* prev0 = NULL; |
|
297 |
uint count = 0; |
|
298 |
size_t capacity = 0; |
|
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
299 |
uint last_index = 0; |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
300 |
|
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
301 |
guarantee(_head == NULL || _head->prev() == NULL, "_head should not have a prev"); |
23459 | 302 |
while (curr != NULL) { |
303 |
verify_region(curr); |
|
304 |
||
305 |
count++; |
|
306 |
guarantee(count < _unrealistically_long_length, |
|
29796
7a04e5c250d1
8076054: g1: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
29580
diff
changeset
|
307 |
hrs_err_msg("[%s] the calculated length: %u seems very long, is there maybe a cycle? curr: "PTR_FORMAT" prev0: "PTR_FORMAT" " "prev1: "PTR_FORMAT" length: %u", |
7a04e5c250d1
8076054: g1: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents:
29580
diff
changeset
|
308 |
name(), count, p2i(curr), p2i(prev0), p2i(prev1), length())); |
23459 | 309 |
|
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
310 |
if (curr->next() != NULL) { |
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
311 |
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
|
312 |
} |
26316
93f6b40c038b
8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents:
26160
diff
changeset
|
313 |
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
|
314 |
last_index = curr->hrm_index(); |
23471
ec9427262f0a
8036025: Sort the freelist in order to shrink the heap
jwilhelm
parents:
23459
diff
changeset
|
315 |
|
23459 | 316 |
capacity += curr->capacity(); |
317 |
||
318 |
prev1 = prev0; |
|
319 |
prev0 = curr; |
|
320 |
curr = curr->next(); |
|
321 |
} |
|
322 |
||
26316
93f6b40c038b
8054819: Rename HeapRegionSeq to HeapRegionManager
tschatzl
parents:
26160
diff
changeset
|
323 |
guarantee(_tail == prev0, err_msg("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
|
324 |
guarantee(_tail == NULL || _tail->next() == NULL, "_tail should not have a next"); |
23459 | 325 |
guarantee(length() == count, err_msg("%s count mismatch. Expected %u, actual %u.", name(), length(), count)); |
326 |
guarantee(total_capacity_bytes() == capacity, err_msg("%s capacity mismatch. Expected " SIZE_FORMAT ", actual " SIZE_FORMAT, |
|
327 |
name(), total_capacity_bytes(), capacity)); |
|
328 |
} |
|
329 |
||
330 |
// Note on the check_mt_safety() methods below: |
|
331 |
// |
|
332 |
// Verification of the "master" heap region sets / lists that are |
|
333 |
// maintained by G1CollectedHeap is always done during a STW pause and |
|
334 |
// by the VM thread at the start / end of the pause. The standard |
|
335 |
// verification methods all assert check_mt_safety(). This is |
|
336 |
// important as it ensures that verification is done without |
|
337 |
// concurrent updates taking place at the same time. It follows, that, |
|
338 |
// for the "master" heap region sets / lists, the check_mt_safety() |
|
339 |
// method should include the VM thread / STW case. |
|
340 |
||
341 |
void MasterFreeRegionListMtSafeChecker::check() { |
|
342 |
// Master Free List MT safety protocol: |
|
343 |
// (a) If we're at a safepoint, operations on the master free list |
|
344 |
// should be invoked by either the VM thread (which will serialize |
|
345 |
// them) or by the GC workers while holding the |
|
346 |
// FreeList_lock. |
|
347 |
// (b) If we're not at a safepoint, operations on the master free |
|
348 |
// list should be invoked while holding the Heap_lock. |
|
349 |
||
350 |
if (SafepointSynchronize::is_at_safepoint()) { |
|
351 |
guarantee(Thread::current()->is_VM_thread() || |
|
352 |
FreeList_lock->owned_by_self(), "master free list MT safety protocol at a safepoint"); |
|
353 |
} else { |
|
354 |
guarantee(Heap_lock->owned_by_self(), "master free list MT safety protocol outside a safepoint"); |
|
355 |
} |
|
356 |
} |
|
357 |
||
358 |
void SecondaryFreeRegionListMtSafeChecker::check() { |
|
359 |
// Secondary Free List MT safety protocol: |
|
360 |
// Operations on the secondary free list should always be invoked |
|
361 |
// while holding the SecondaryFreeList_lock. |
|
362 |
||
363 |
guarantee(SecondaryFreeList_lock->owned_by_self(), "secondary free list MT safety protocol"); |
|
364 |
} |
|
365 |
||
366 |
void OldRegionSetMtSafeChecker::check() { |
|
367 |
// Master Old Set MT safety protocol: |
|
368 |
// (a) If we're at a safepoint, operations on the master old set |
|
369 |
// should be invoked: |
|
370 |
// - by the VM thread (which will serialize them), or |
|
371 |
// - by the GC workers while holding the FreeList_lock, if we're |
|
372 |
// at a safepoint for an evacuation pause (this lock is taken |
|
373 |
// anyway when an GC alloc region is retired so that a new one |
|
374 |
// is allocated from the free list), or |
|
375 |
// - by the GC workers while holding the OldSets_lock, if we're at a |
|
376 |
// safepoint for a cleanup pause. |
|
377 |
// (b) If we're not at a safepoint, operations on the master old set |
|
378 |
// should be invoked while holding the Heap_lock. |
|
379 |
||
380 |
if (SafepointSynchronize::is_at_safepoint()) { |
|
381 |
guarantee(Thread::current()->is_VM_thread() |
|
382 |
|| FreeList_lock->owned_by_self() || OldSets_lock->owned_by_self(), |
|
383 |
"master old set MT safety protocol at a safepoint"); |
|
384 |
} else { |
|
385 |
guarantee(Heap_lock->owned_by_self(), "master old set MT safety protocol outside a safepoint"); |
|
386 |
} |
|
387 |
} |
|
388 |
||
389 |
void HumongousRegionSetMtSafeChecker::check() { |
|
390 |
// Humongous Set MT safety protocol: |
|
391 |
// (a) If we're at a safepoint, operations on the master humongous |
|
392 |
// set should be invoked by either the VM thread (which will |
|
393 |
// serialize them) or by the GC workers while holding the |
|
394 |
// OldSets_lock. |
|
395 |
// (b) If we're not at a safepoint, operations on the master |
|
396 |
// humongous set should be invoked while holding the Heap_lock. |
|
397 |
||
398 |
if (SafepointSynchronize::is_at_safepoint()) { |
|
399 |
guarantee(Thread::current()->is_VM_thread() || |
|
400 |
OldSets_lock->owned_by_self(), |
|
401 |
"master humongous set MT safety protocol at a safepoint"); |
|
402 |
} else { |
|
403 |
guarantee(Heap_lock->owned_by_self(), |
|
404 |
"master humongous set MT safety protocol outside a safepoint"); |
|
405 |
} |
|
406 |
} |
|
26160 | 407 |
|
408 |
void FreeRegionList_test() { |
|
409 |
FreeRegionList l("test"); |
|
410 |
||
411 |
const uint num_regions_in_test = 5; |
|
412 |
// Create a fake heap. It does not need to be valid, as the HeapRegion constructor |
|
413 |
// does not access it. |
|
414 |
MemRegion heap(NULL, num_regions_in_test * HeapRegion::GrainWords); |
|
415 |
// Allocate a fake BOT because the HeapRegion constructor initializes |
|
416 |
// the BOT. |
|
417 |
size_t bot_size = G1BlockOffsetSharedArray::compute_size(heap.word_size()); |
|
418 |
HeapWord* bot_data = NEW_C_HEAP_ARRAY(HeapWord, bot_size, mtGC); |
|
419 |
ReservedSpace bot_rs(G1BlockOffsetSharedArray::compute_size(heap.word_size())); |
|
420 |
G1RegionToSpaceMapper* bot_storage = |
|
421 |
G1RegionToSpaceMapper::create_mapper(bot_rs, |
|
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
29796
diff
changeset
|
422 |
bot_rs.size(), |
26160 | 423 |
os::vm_page_size(), |
424 |
HeapRegion::GrainBytes, |
|
425 |
G1BlockOffsetSharedArray::N_bytes, |
|
426 |
mtGC); |
|
427 |
G1BlockOffsetSharedArray oa(heap, bot_storage); |
|
428 |
bot_storage->commit_regions(0, num_regions_in_test); |
|
27629
81ea316b7244
8061449: G1: FreeRegionList_test() fails with G1 after the JDK-8058534 fix to HeapRegion::orig_end()
brutisso
parents:
26846
diff
changeset
|
429 |
|
81ea316b7244
8061449: G1: FreeRegionList_test() fails with G1 after the JDK-8058534 fix to HeapRegion::orig_end()
brutisso
parents:
26846
diff
changeset
|
430 |
// Set up memory regions for the heap regions. |
81ea316b7244
8061449: G1: FreeRegionList_test() fails with G1 after the JDK-8058534 fix to HeapRegion::orig_end()
brutisso
parents:
26846
diff
changeset
|
431 |
MemRegion mr0(heap.start(), HeapRegion::GrainWords); |
81ea316b7244
8061449: G1: FreeRegionList_test() fails with G1 after the JDK-8058534 fix to HeapRegion::orig_end()
brutisso
parents:
26846
diff
changeset
|
432 |
MemRegion mr1(mr0.end(), HeapRegion::GrainWords); |
81ea316b7244
8061449: G1: FreeRegionList_test() fails with G1 after the JDK-8058534 fix to HeapRegion::orig_end()
brutisso
parents:
26846
diff
changeset
|
433 |
MemRegion mr2(mr1.end(), HeapRegion::GrainWords); |
81ea316b7244
8061449: G1: FreeRegionList_test() fails with G1 after the JDK-8058534 fix to HeapRegion::orig_end()
brutisso
parents:
26846
diff
changeset
|
434 |
MemRegion mr3(mr2.end(), HeapRegion::GrainWords); |
81ea316b7244
8061449: G1: FreeRegionList_test() fails with G1 after the JDK-8058534 fix to HeapRegion::orig_end()
brutisso
parents:
26846
diff
changeset
|
435 |
MemRegion mr4(mr3.end(), HeapRegion::GrainWords); |
81ea316b7244
8061449: G1: FreeRegionList_test() fails with G1 after the JDK-8058534 fix to HeapRegion::orig_end()
brutisso
parents:
26846
diff
changeset
|
436 |
|
81ea316b7244
8061449: G1: FreeRegionList_test() fails with G1 after the JDK-8058534 fix to HeapRegion::orig_end()
brutisso
parents:
26846
diff
changeset
|
437 |
HeapRegion hr0(0, &oa, mr0); |
81ea316b7244
8061449: G1: FreeRegionList_test() fails with G1 after the JDK-8058534 fix to HeapRegion::orig_end()
brutisso
parents:
26846
diff
changeset
|
438 |
HeapRegion hr1(1, &oa, mr1); |
81ea316b7244
8061449: G1: FreeRegionList_test() fails with G1 after the JDK-8058534 fix to HeapRegion::orig_end()
brutisso
parents:
26846
diff
changeset
|
439 |
HeapRegion hr2(2, &oa, mr2); |
81ea316b7244
8061449: G1: FreeRegionList_test() fails with G1 after the JDK-8058534 fix to HeapRegion::orig_end()
brutisso
parents:
26846
diff
changeset
|
440 |
HeapRegion hr3(3, &oa, mr3); |
81ea316b7244
8061449: G1: FreeRegionList_test() fails with G1 after the JDK-8058534 fix to HeapRegion::orig_end()
brutisso
parents:
26846
diff
changeset
|
441 |
HeapRegion hr4(4, &oa, mr4); |
26160 | 442 |
l.add_ordered(&hr1); |
443 |
l.add_ordered(&hr0); |
|
444 |
l.add_ordered(&hr3); |
|
445 |
l.add_ordered(&hr4); |
|
446 |
l.add_ordered(&hr2); |
|
447 |
assert(l.length() == num_regions_in_test, "wrong length"); |
|
448 |
l.verify_list(); |
|
449 |
||
450 |
bot_storage->uncommit_regions(0, num_regions_in_test); |
|
451 |
delete bot_storage; |
|
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
27629
diff
changeset
|
452 |
FREE_C_HEAP_ARRAY(HeapWord, bot_data); |
26160 | 453 |
} |