// Sets the default values for platform dependent flags used by the // runtime system (see globals.hpp).
define_pd_global(bool, DontYieldALot, false);
define_pd_global(intx, ThreadStackSize, 1024); // 0 => Use system default.
define_pd_global(intx, VMThreadStackSize, 1024); // Some jck tests in lang/fp/fpl038 run out of compile thread stack. // Observed in pure dbg build, running with -Xcomp -Xbatch on z990. // We also increase the stack size for opt builds to be on the safe side. #ifdef ASSERT
define_pd_global(intx, CompilerThreadStackSize, 4096); #else
define_pd_global(intx, CompilerThreadStackSize, 2048); #endif
// Allow extra space in DEBUG builds for asserts.
define_pd_global(size_t, JVMInvokeMethodSlack, 8192);
// Only used on 64 bit platforms.
define_pd_global(size_t, HeapBaseMinAddress, 2*G);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.