annotate src/share/vm/jvmci/jvmci_globals.cpp @ 23779:16b5e00d9196

renamed JVMCIPrintFlags to JVMCIPrintSystemProperties
author Doug Simon <doug.simon@oracle.com>
date Wed, 05 Oct 2016 13:58:15 +0200
parents 6c8eaf47db9a
children 1523f2f7832f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7125
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1 /*
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
2 * Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
4 *
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
7 * published by the Free Software Foundation.
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
8 *
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
13 * accompanied this code).
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
14 *
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
18 *
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
21 * questions.
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
22 *
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
23 */
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
24
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
25 #include "precompiled.hpp"
22495
740feb10d15a rename jvmciGlobals to be consistent with c1_globals and c2_globals
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 21559
diff changeset
26 #include "jvmci/jvmci_globals.hpp"
23760
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
27 #include "utilities/defaultStream.hpp"
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
28 #include "runtime/globals_extension.hpp"
7125
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
29
21559
be896a1983c0 recast all Graal native code as JVMCI code (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 7125
diff changeset
30 JVMCI_FLAGS(MATERIALIZE_DEVELOPER_FLAG, MATERIALIZE_PD_DEVELOPER_FLAG, MATERIALIZE_PRODUCT_FLAG, MATERIALIZE_PD_PRODUCT_FLAG, MATERIALIZE_NOTPRODUCT_FLAG)
23760
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
31
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
32 bool JVMCIGlobals::check_jvmci_flags_are_consistent() {
23775
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
33 #ifndef PRODUCT
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
34 #define APPLY_JVMCI_FLAGS(params3, params4) \
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
35 JVMCI_FLAGS(params4, params3, params4, params3, params4)
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
36 #define JVMCI_DECLARE_CHECK4(type, name, value, doc) bool name##checked = false;
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
37 #define JVMCI_DECLARE_CHECK3(type, name, doc) bool name##checked = false;
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
38 #define JVMCI_FLAG_CHECKED(name) name##checked = true;
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
39 APPLY_JVMCI_FLAGS(JVMCI_DECLARE_CHECK3, JVMCI_DECLARE_CHECK4)
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
40 #else
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
41 #define JVMCI_FLAG_CHECKED(name)
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
42 #endif
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
43
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
44 // Checks that a given flag is not set if a given guard flag is false.
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
45 #define CHECK_NOT_SET(FLAG, GUARD) \
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
46 JVMCI_FLAG_CHECKED(FLAG) \
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
47 if (!GUARD && !FLAG_IS_DEFAULT(FLAG)) { \
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
48 jio_fprintf(defaultStream::error_stream(), \
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
49 "Improperly specified VM option '%s': '%s' must be enabled\n", #FLAG, #GUARD); \
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
50 return false; \
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
51 }
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
52
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
53 JVMCI_FLAG_CHECKED(UseJVMCICompiler)
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
54 JVMCI_FLAG_CHECKED(EnableJVMCI)
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
55
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
56 CHECK_NOT_SET(BootstrapJVMCI, UseJVMCICompiler)
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
57 CHECK_NOT_SET(PrintBootstrap, UseJVMCICompiler)
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
58 CHECK_NOT_SET(JVMCIThreads, UseJVMCICompiler)
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
59 CHECK_NOT_SET(JVMCIHostThreads, UseJVMCICompiler)
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
60
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
61 if (UseJVMCICompiler) {
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
62 if (!FLAG_IS_DEFAULT(EnableJVMCI) && !EnableJVMCI) {
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
63 jio_fprintf(defaultStream::error_stream(),
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
64 "Improperly specified VM option UseJVMCICompiler: EnableJVMCI cannot be disabled\n");
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
65 return false;
23760
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
66 }
23775
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
67 FLAG_SET_DEFAULT(EnableJVMCI, true);
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
68 }
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
69 CHECK_NOT_SET(UseJVMCIClassLoader, EnableJVMCI)
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
70 CHECK_NOT_SET(CodeInstallSafepointChecks, EnableJVMCI)
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
71 CHECK_NOT_SET(JVMCITraceLevel, EnableJVMCI)
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
72 CHECK_NOT_SET(JVMCICounterSize, EnableJVMCI)
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
73 CHECK_NOT_SET(JVMCICountersExcludeCompiler, EnableJVMCI)
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
74 CHECK_NOT_SET(JVMCIUseFastLocking, EnableJVMCI)
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
75 CHECK_NOT_SET(JVMCINMethodSizeLimit, EnableJVMCI)
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
76 CHECK_NOT_SET(MethodProfileWidth, EnableJVMCI)
23779
16b5e00d9196 renamed JVMCIPrintFlags to JVMCIPrintSystemProperties
Doug Simon <doug.simon@oracle.com>
parents: 23777
diff changeset
77 CHECK_NOT_SET(JVMCIPrintSystemProperties, EnableJVMCI)
23775
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
78 CHECK_NOT_SET(TraceUncollectedSpeculations, EnableJVMCI)
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
79
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
80 #ifndef PRODUCT
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
81 #define JVMCI_CHECK4(type, name, value, doc) assert(name##checked, #name " flag not checked");
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
82 #define JVMCI_CHECK3(type, name, doc) assert(name##checked, #name " flag not checked");
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
83 // Ensures that all JVMCI flags are checked by this method.
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
84 APPLY_JVMCI_FLAGS(JVMCI_CHECK3, JVMCI_CHECK4)
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
85 #undef APPLY_JVMCI_FLAGS
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
86 #undef JVMCI_DECLARE_CHECK3
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
87 #undef JVMCI_DECLARE_CHECK4
23760
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
88 #undef JVMCI_CHECK3
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
89 #undef JVMCI_CHECK4
23775
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
90 #undef JVMCI_FLAG_CHECKED
23760
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
91 #endif
23775
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
92 #undef CHECK_NOT_SET
23760
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
93 if (UseJVMCICompiler) {
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
94 if(JVMCIThreads < 1) {
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
95 // Check the minimum number of JVMCI compiler threads
23761
1fece5f8307c jvmci_globals: add missing argument
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 23760
diff changeset
96 jio_fprintf(defaultStream::error_stream(), "JVMCIThreads of " INTX_FORMAT " is invalid; must be at least 1\n", JVMCIThreads);
23775
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
97 return false;
23760
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
98 }
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
99 }
23775
d66c74920c43 move MethodProfileWidth to jvmci_globals.hpp (JDK-8163864)
Doug Simon <doug.simon@oracle.com>
parents: 23763
diff changeset
100 return true;
23760
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
101 }
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
102
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
103 void JVMCIGlobals::set_jvmci_specific_flags() {
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
104 if (UseJVMCICompiler) {
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
105 if (FLAG_IS_DEFAULT(TypeProfileWidth)) {
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
106 FLAG_SET_DEFAULT(TypeProfileWidth, 8);
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
107 }
23763
bf2d00fc162b jvmci_globals: comment flag
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 23761
diff changeset
108 // Adjust the on stack replacement percentage to avoid early
bf2d00fc162b jvmci_globals: comment flag
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 23761
diff changeset
109 // OSR compilations while JVMCI itself is warming up
23760
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
110 if (FLAG_IS_DEFAULT(OnStackReplacePercentage)) {
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
111 FLAG_SET_DEFAULT(OnStackReplacePercentage, 933);
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
112 }
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
113 if (FLAG_IS_DEFAULT(ReservedCodeCacheSize)) {
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
114 FLAG_SET_DEFAULT(ReservedCodeCacheSize, 64*M);
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
115 }
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
116 if (FLAG_IS_DEFAULT(InitialCodeCacheSize)) {
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
117 FLAG_SET_DEFAULT(InitialCodeCacheSize, 16*M);
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
118 }
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
119 if (FLAG_IS_DEFAULT(MetaspaceSize)) {
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
120 FLAG_SET_DEFAULT(MetaspaceSize, 12*M);
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
121 }
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
122 if (FLAG_IS_DEFAULT(NewSizeThreadIncrease)) {
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
123 FLAG_SET_DEFAULT(NewSizeThreadIncrease, 4*K);
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
124 }
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
125 }
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
126 if (!ScavengeRootsInCode) {
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
127 warning("forcing ScavengeRootsInCode non-zero because JVMCI is enabled");
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
128 ScavengeRootsInCode = 1;
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
129 }
655fd63024d0 move jvmci flag handling to JVMCIGlobals
David Leopoldseder <david.d.leopoldseder@oracle.com>
parents: 22495
diff changeset
130 }