Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/hotspot/share/gc/shared/gcArguments.cpp
40957 views
1
/*
2
* Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
3
* Copyright (c) 2017, Red Hat, Inc. and/or its affiliates.
4
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5
*
6
* This code is free software; you can redistribute it and/or modify it
7
* under the terms of the GNU General Public License version 2 only, as
8
* published by the Free Software Foundation.
9
*
10
* This code is distributed in the hope that it will be useful, but WITHOUT
11
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13
* version 2 for more details (a copy is included in the LICENSE file that
14
* accompanied this code).
15
*
16
* You should have received a copy of the GNU General Public License version
17
* 2 along with this work; if not, write to the Free Software Foundation,
18
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19
*
20
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21
* or visit www.oracle.com if you need additional information or have any
22
* questions.
23
*
24
*/
25
26
#include "precompiled.hpp"
27
#include "gc/shared/cardTableRS.hpp"
28
#include "gc/shared/gcArguments.hpp"
29
#include "logging/log.hpp"
30
#include "runtime/arguments.hpp"
31
#include "runtime/globals.hpp"
32
#include "runtime/globals_extension.hpp"
33
#include "utilities/macros.hpp"
34
35
size_t HeapAlignment = 0;
36
size_t SpaceAlignment = 0;
37
38
void GCArguments::initialize() {
39
if (FullGCALot && FLAG_IS_DEFAULT(MarkSweepAlwaysCompactCount)) {
40
MarkSweepAlwaysCompactCount = 1; // Move objects every gc.
41
}
42
43
if (!UseParallelGC && FLAG_IS_DEFAULT(ScavengeBeforeFullGC)) {
44
FLAG_SET_DEFAULT(ScavengeBeforeFullGC, false);
45
}
46
47
if (GCTimeLimit == 100) {
48
// Turn off gc-overhead-limit-exceeded checks
49
FLAG_SET_DEFAULT(UseGCOverheadLimit, false);
50
}
51
52
if (MinHeapFreeRatio == 100) {
53
// Keeping the heap 100% free is hard ;-) so limit it to 99%.
54
FLAG_SET_ERGO(MinHeapFreeRatio, 99);
55
}
56
57
if (!ClassUnloading) {
58
// If class unloading is disabled, also disable concurrent class unloading.
59
FLAG_SET_CMDLINE(ClassUnloadingWithConcurrentMark, false);
60
}
61
}
62
63
void GCArguments::initialize_heap_sizes() {
64
initialize_alignments();
65
initialize_heap_flags_and_sizes();
66
initialize_size_info();
67
}
68
69
size_t GCArguments::compute_heap_alignment() {
70
// The card marking array and the offset arrays for old generations are
71
// committed in os pages as well. Make sure they are entirely full (to
72
// avoid partial page problems), e.g. if 512 bytes heap corresponds to 1
73
// byte entry and the os page size is 4096, the maximum heap size should
74
// be 512*4096 = 2MB aligned.
75
76
size_t alignment = CardTableRS::ct_max_alignment_constraint();
77
78
if (UseLargePages) {
79
// In presence of large pages we have to make sure that our
80
// alignment is large page aware.
81
alignment = lcm(os::large_page_size(), alignment);
82
}
83
84
return alignment;
85
}
86
87
#ifdef ASSERT
88
void GCArguments::assert_flags() {
89
assert(InitialHeapSize <= MaxHeapSize, "Ergonomics decided on incompatible initial and maximum heap sizes");
90
assert(InitialHeapSize % HeapAlignment == 0, "InitialHeapSize alignment");
91
assert(MaxHeapSize % HeapAlignment == 0, "MaxHeapSize alignment");
92
}
93
94
void GCArguments::assert_size_info() {
95
assert(MaxHeapSize >= MinHeapSize, "Ergonomics decided on incompatible minimum and maximum heap sizes");
96
assert(InitialHeapSize >= MinHeapSize, "Ergonomics decided on incompatible initial and minimum heap sizes");
97
assert(MaxHeapSize >= InitialHeapSize, "Ergonomics decided on incompatible initial and maximum heap sizes");
98
assert(MinHeapSize % HeapAlignment == 0, "MinHeapSize alignment");
99
assert(InitialHeapSize % HeapAlignment == 0, "InitialHeapSize alignment");
100
assert(MaxHeapSize % HeapAlignment == 0, "MaxHeapSize alignment");
101
}
102
#endif // ASSERT
103
104
void GCArguments::initialize_size_info() {
105
log_debug(gc, heap)("Minimum heap " SIZE_FORMAT " Initial heap " SIZE_FORMAT " Maximum heap " SIZE_FORMAT,
106
MinHeapSize, InitialHeapSize, MaxHeapSize);
107
108
DEBUG_ONLY(assert_size_info();)
109
}
110
111
void GCArguments::initialize_heap_flags_and_sizes() {
112
assert(SpaceAlignment != 0, "Space alignment not set up properly");
113
assert(HeapAlignment != 0, "Heap alignment not set up properly");
114
assert(HeapAlignment >= SpaceAlignment,
115
"HeapAlignment: " SIZE_FORMAT " less than SpaceAlignment: " SIZE_FORMAT,
116
HeapAlignment, SpaceAlignment);
117
assert(HeapAlignment % SpaceAlignment == 0,
118
"HeapAlignment: " SIZE_FORMAT " not aligned by SpaceAlignment: " SIZE_FORMAT,
119
HeapAlignment, SpaceAlignment);
120
121
if (FLAG_IS_CMDLINE(MaxHeapSize)) {
122
if (FLAG_IS_CMDLINE(InitialHeapSize) && InitialHeapSize > MaxHeapSize) {
123
vm_exit_during_initialization("Initial heap size set to a larger value than the maximum heap size");
124
}
125
if (FLAG_IS_CMDLINE(MinHeapSize) && MaxHeapSize < MinHeapSize) {
126
vm_exit_during_initialization("Incompatible minimum and maximum heap sizes specified");
127
}
128
}
129
130
// Check heap parameter properties
131
if (MaxHeapSize < 2 * M) {
132
vm_exit_during_initialization("Too small maximum heap");
133
}
134
if (InitialHeapSize < M) {
135
vm_exit_during_initialization("Too small initial heap");
136
}
137
if (MinHeapSize < M) {
138
vm_exit_during_initialization("Too small minimum heap");
139
}
140
141
// User inputs from -Xmx and -Xms must be aligned
142
// Write back to flags if the values changed
143
if (!is_aligned(MinHeapSize, HeapAlignment)) {
144
FLAG_SET_ERGO(MinHeapSize, align_up(MinHeapSize, HeapAlignment));
145
}
146
if (!is_aligned(InitialHeapSize, HeapAlignment)) {
147
FLAG_SET_ERGO(InitialHeapSize, align_up(InitialHeapSize, HeapAlignment));
148
}
149
if (!is_aligned(MaxHeapSize, HeapAlignment)) {
150
FLAG_SET_ERGO(MaxHeapSize, align_up(MaxHeapSize, HeapAlignment));
151
}
152
153
if (FLAG_IS_CMDLINE(InitialHeapSize) && FLAG_IS_CMDLINE(MinHeapSize) &&
154
InitialHeapSize < MinHeapSize) {
155
vm_exit_during_initialization("Incompatible minimum and initial heap sizes specified");
156
}
157
158
if (!FLAG_IS_DEFAULT(InitialHeapSize) && InitialHeapSize > MaxHeapSize) {
159
FLAG_SET_ERGO(MaxHeapSize, InitialHeapSize);
160
} else if (!FLAG_IS_DEFAULT(MaxHeapSize) && InitialHeapSize > MaxHeapSize) {
161
FLAG_SET_ERGO(InitialHeapSize, MaxHeapSize);
162
if (InitialHeapSize < MinHeapSize) {
163
FLAG_SET_ERGO(MinHeapSize, InitialHeapSize);
164
}
165
}
166
167
if (FLAG_IS_DEFAULT(SoftMaxHeapSize)) {
168
FLAG_SET_ERGO(SoftMaxHeapSize, MaxHeapSize);
169
}
170
171
FLAG_SET_ERGO(MinHeapDeltaBytes, align_up(MinHeapDeltaBytes, SpaceAlignment));
172
173
DEBUG_ONLY(assert_flags();)
174
}
175
176
size_t GCArguments::heap_virtual_to_physical_ratio() {
177
return 1;
178
}
179
180