author | tschatzl |
Wed, 18 Apr 2018 11:36:48 +0200 | |
changeset 49806 | 2d62570a615c |
parent 47216 | 71c04702a3d5 |
child 51332 | c25572739e7c |
permissions | -rw-r--r-- |
26160 | 1 |
/* |
46745
f7b9bb98bb72
8176571: Fine bitmaps should be allocated as belonging to mtGC, not mtInternal
kbarrett
parents:
46625
diff
changeset
|
2 |
* Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved. |
26160 | 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/g1BiasedArray.hpp" |
27 |
#include "gc/g1/g1RegionToSpaceMapper.hpp" |
|
26163
89f44df5b438
8055635: Missing include in g1RegionToSpaceMapper.hpp results in unresolved symbol of fastdebug build without precompiled headers
tschatzl
parents:
26160
diff
changeset
|
28 |
#include "memory/allocation.inline.hpp" |
30291
54cdc5c1a9cb
8068352: Move virtualspace.* out of src/share/vm/runtime to memory directory
coleenp
parents:
30158
diff
changeset
|
29 |
#include "memory/virtualspace.hpp" |
26160 | 30 |
#include "services/memTracker.hpp" |
46625 | 31 |
#include "utilities/align.hpp" |
26160 | 32 |
#include "utilities/bitMap.inline.hpp" |
33 |
||
34 |
G1RegionToSpaceMapper::G1RegionToSpaceMapper(ReservedSpace rs, |
|
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
35 |
size_t used_size, |
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
36 |
size_t page_size, |
26160 | 37 |
size_t region_granularity, |
38177 | 38 |
size_t commit_factor, |
26160 | 39 |
MemoryType type) : |
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
40 |
_storage(rs, used_size, page_size), |
26160 | 41 |
_region_granularity(region_granularity), |
42 |
_listener(NULL), |
|
46745
f7b9bb98bb72
8176571: Fine bitmaps should be allocated as belonging to mtGC, not mtInternal
kbarrett
parents:
46625
diff
changeset
|
43 |
_commit_map(rs.size() * commit_factor / region_granularity, mtGC) { |
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
44 |
guarantee(is_power_of_2(page_size), "must be"); |
26160 | 45 |
guarantee(is_power_of_2(region_granularity), "must be"); |
46 |
||
47 |
MemTracker::record_virtual_memory_type((address)rs.base(), type); |
|
48 |
} |
|
49 |
||
50 |
// G1RegionToSpaceMapper implementation where the region granularity is larger than |
|
51 |
// or the same as the commit granularity. |
|
52 |
// Basically, the space corresponding to one region region spans several OS pages. |
|
53 |
class G1RegionsLargerThanCommitSizeMapper : public G1RegionToSpaceMapper { |
|
54 |
private: |
|
55 |
size_t _pages_per_region; |
|
56 |
||
57 |
public: |
|
58 |
G1RegionsLargerThanCommitSizeMapper(ReservedSpace rs, |
|
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
59 |
size_t actual_size, |
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
60 |
size_t page_size, |
26160 | 61 |
size_t alloc_granularity, |
62 |
size_t commit_factor, |
|
63 |
MemoryType type) : |
|
38177 | 64 |
G1RegionToSpaceMapper(rs, actual_size, page_size, alloc_granularity, commit_factor, type), |
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
65 |
_pages_per_region(alloc_granularity / (page_size * commit_factor)) { |
26160 | 66 |
|
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
67 |
guarantee(alloc_granularity >= page_size, "allocation granularity smaller than commit granularity"); |
26160 | 68 |
} |
69 |
||
41178 | 70 |
virtual void commit_regions(uint start_idx, size_t num_regions, WorkGang* pretouch_gang) { |
71 |
size_t const start_page = (size_t)start_idx * _pages_per_region; |
|
72 |
bool zero_filled = _storage.commit(start_page, num_regions * _pages_per_region); |
|
73 |
if (AlwaysPreTouch) { |
|
74 |
_storage.pretouch(start_page, num_regions * _pages_per_region, pretouch_gang); |
|
75 |
} |
|
26160 | 76 |
_commit_map.set_range(start_idx, start_idx + num_regions); |
28482
e1a8d03c342f
8062063: Usage of UseHugeTLBFS, UseLargePagesInMetaspace and huge SurvivorAlignmentInBytes cause crashes in CMBitMapClosure::do_bit
sjohanss
parents:
27149
diff
changeset
|
77 |
fire_on_commit(start_idx, num_regions, zero_filled); |
26160 | 78 |
} |
79 |
||
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
80 |
virtual void uncommit_regions(uint start_idx, size_t num_regions) { |
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
81 |
_storage.uncommit((size_t)start_idx * _pages_per_region, num_regions * _pages_per_region); |
26160 | 82 |
_commit_map.clear_range(start_idx, start_idx + num_regions); |
83 |
} |
|
84 |
}; |
|
85 |
||
86 |
// G1RegionToSpaceMapper implementation where the region granularity is smaller |
|
87 |
// than the commit granularity. |
|
88 |
// Basically, the contents of one OS page span several regions. |
|
89 |
class G1RegionsSmallerThanCommitSizeMapper : public G1RegionToSpaceMapper { |
|
90 |
private: |
|
91 |
class CommitRefcountArray : public G1BiasedMappedArray<uint> { |
|
92 |
protected: |
|
93 |
virtual uint default_value() const { return 0; } |
|
94 |
}; |
|
95 |
||
96 |
size_t _regions_per_page; |
|
97 |
||
98 |
CommitRefcountArray _refcounts; |
|
99 |
||
100 |
uintptr_t region_idx_to_page_idx(uint region) const { |
|
101 |
return region / _regions_per_page; |
|
102 |
} |
|
103 |
||
104 |
public: |
|
105 |
G1RegionsSmallerThanCommitSizeMapper(ReservedSpace rs, |
|
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
106 |
size_t actual_size, |
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
107 |
size_t page_size, |
26160 | 108 |
size_t alloc_granularity, |
109 |
size_t commit_factor, |
|
110 |
MemoryType type) : |
|
38177 | 111 |
G1RegionToSpaceMapper(rs, actual_size, page_size, alloc_granularity, commit_factor, type), |
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
112 |
_regions_per_page((page_size * commit_factor) / alloc_granularity), _refcounts() { |
26160 | 113 |
|
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
114 |
guarantee((page_size * commit_factor) >= alloc_granularity, "allocation granularity smaller than commit granularity"); |
46619
a3919f5e8d2b
8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents:
41178
diff
changeset
|
115 |
_refcounts.initialize((HeapWord*)rs.base(), (HeapWord*)(rs.base() + align_up(rs.size(), page_size)), page_size); |
26160 | 116 |
} |
117 |
||
41178 | 118 |
virtual void commit_regions(uint start_idx, size_t num_regions, WorkGang* pretouch_gang) { |
119 |
size_t const NoPage = ~(size_t)0; |
|
120 |
||
121 |
size_t first_committed = NoPage; |
|
122 |
size_t num_committed = 0; |
|
123 |
||
124 |
bool all_zero_filled = true; |
|
125 |
||
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
126 |
for (uint i = start_idx; i < start_idx + num_regions; i++) { |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30764
diff
changeset
|
127 |
assert(!_commit_map.at(i), "Trying to commit storage at region %u that is already committed", i); |
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
128 |
size_t idx = region_idx_to_page_idx(i); |
26160 | 129 |
uint old_refcount = _refcounts.get_by_index(idx); |
41178 | 130 |
|
27149 | 131 |
bool zero_filled = false; |
26160 | 132 |
if (old_refcount == 0) { |
41178 | 133 |
if (first_committed == NoPage) { |
134 |
first_committed = idx; |
|
135 |
num_committed = 1; |
|
136 |
} else { |
|
137 |
num_committed++; |
|
138 |
} |
|
28482
e1a8d03c342f
8062063: Usage of UseHugeTLBFS, UseLargePagesInMetaspace and huge SurvivorAlignmentInBytes cause crashes in CMBitMapClosure::do_bit
sjohanss
parents:
27149
diff
changeset
|
139 |
zero_filled = _storage.commit(idx, 1); |
26160 | 140 |
} |
41178 | 141 |
all_zero_filled &= zero_filled; |
142 |
||
26160 | 143 |
_refcounts.set_by_index(idx, old_refcount + 1); |
144 |
_commit_map.set_bit(i); |
|
145 |
} |
|
41178 | 146 |
if (AlwaysPreTouch && num_committed > 0) { |
147 |
_storage.pretouch(first_committed, num_committed, pretouch_gang); |
|
148 |
} |
|
149 |
fire_on_commit(start_idx, num_regions, all_zero_filled); |
|
26160 | 150 |
} |
151 |
||
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
152 |
virtual void uncommit_regions(uint start_idx, size_t num_regions) { |
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
153 |
for (uint i = start_idx; i < start_idx + num_regions; i++) { |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
30764
diff
changeset
|
154 |
assert(_commit_map.at(i), "Trying to uncommit storage at region %u that is not committed", i); |
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
155 |
size_t idx = region_idx_to_page_idx(i); |
26160 | 156 |
uint old_refcount = _refcounts.get_by_index(idx); |
157 |
assert(old_refcount > 0, "must be"); |
|
158 |
if (old_refcount == 1) { |
|
159 |
_storage.uncommit(idx, 1); |
|
160 |
} |
|
161 |
_refcounts.set_by_index(idx, old_refcount - 1); |
|
162 |
_commit_map.clear_bit(i); |
|
163 |
} |
|
164 |
} |
|
165 |
}; |
|
166 |
||
27149 | 167 |
void G1RegionToSpaceMapper::fire_on_commit(uint start_idx, size_t num_regions, bool zero_filled) { |
26160 | 168 |
if (_listener != NULL) { |
27149 | 169 |
_listener->on_commit(start_idx, num_regions, zero_filled); |
26160 | 170 |
} |
171 |
} |
|
172 |
||
173 |
G1RegionToSpaceMapper* G1RegionToSpaceMapper::create_mapper(ReservedSpace rs, |
|
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
174 |
size_t actual_size, |
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
175 |
size_t page_size, |
26160 | 176 |
size_t region_granularity, |
177 |
size_t commit_factor, |
|
178 |
MemoryType type) { |
|
179 |
||
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
180 |
if (region_granularity >= (page_size * commit_factor)) { |
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
181 |
return new G1RegionsLargerThanCommitSizeMapper(rs, actual_size, page_size, region_granularity, commit_factor, type); |
26160 | 182 |
} else { |
30158
bd6094906ef8
8058354: SPECjvm2008-Derby -2.7% performance regression on Solaris-X64 starting with 9-b29
tschatzl
parents:
28482
diff
changeset
|
183 |
return new G1RegionsSmallerThanCommitSizeMapper(rs, actual_size, page_size, region_granularity, commit_factor, type); |
26160 | 184 |
} |
185 |
} |