aboutsummaryrefslogtreecommitdiff
path: root/src/share/vm
diff options
context:
space:
mode:
authorgoetz <none@none>2013-07-08 14:15:02 -0700
committergoetz <none@none>2013-07-08 14:15:02 -0700
commitb50d838315659275aecf19b60319fc68ddb8b266 (patch)
tree9bb058a2a78f707bb27471d03edf9f29dfaaa65b /src/share/vm
parent62cc3e2bc03ffe22b11427416da66293330ae28f (diff)
8020059: The flag introduced by 8014972 is not defined if Hotspot is built without a compiler (zero, ppc64 core build).
Summary: define CodeCacheMinimumUseSpace flag for cppInterpeter build. Reviewed-by: kvn
Diffstat (limited to 'src/share/vm')
-rw-r--r--src/share/vm/runtime/globals.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/share/vm/runtime/globals.hpp b/src/share/vm/runtime/globals.hpp
index d07785d0b..f8e4ae1f7 100644
--- a/src/share/vm/runtime/globals.hpp
+++ b/src/share/vm/runtime/globals.hpp
@@ -175,6 +175,7 @@ define_pd_global(intx, InitialCodeCacheSize, 160*K);
define_pd_global(intx, ReservedCodeCacheSize, 32*M);
define_pd_global(intx, CodeCacheExpansionSize, 32*K);
define_pd_global(intx, CodeCacheMinBlockLength, 1);
+define_pd_global(intx, CodeCacheMinimumUseSpace, 200*K);
define_pd_global(uintx,MetaspaceSize, ScaleForWordSize(4*M));
define_pd_global(bool, NeverActAsServerClassMachine, true);
define_pd_global(uint64_t,MaxRAM, 1ULL*G);