We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 972f510 + f0eeca9 commit 973d077Copy full SHA for 973d077
src/hotspot/share/runtime/arguments.cpp
@@ -3213,6 +3213,11 @@ jint Arguments::finalize_vm_init_args(bool patch_mod_javabase) {
3213
set_mode_flags(_int);
3214
}
3215
3216
+#ifdef ZERO
3217
+ // Zero always runs in interpreted mode
3218
+ set_mode_flags(_int);
3219
+#endif
3220
+
3221
// eventually fix up InitialTenuringThreshold if only MaxTenuringThreshold is set
3222
if (FLAG_IS_DEFAULT(InitialTenuringThreshold) && (InitialTenuringThreshold > MaxTenuringThreshold)) {
3223
FLAG_SET_ERGO(InitialTenuringThreshold, MaxTenuringThreshold);
0 commit comments