8165457: [JVMCI] increase InterpreterCodeSize for JVMCI
authordnsimon
Mon, 19 Sep 2016 13:26:37 -0700
changeset 41328 2bea535779f6
parent 41327 6cfeb3278721
child 41329 f79b4f079360
8165457: [JVMCI] increase InterpreterCodeSize for JVMCI Reviewed-by: twisti
hotspot/src/cpu/x86/vm/templateInterpreterGenerator_x86.cpp
--- a/hotspot/src/cpu/x86/vm/templateInterpreterGenerator_x86.cpp	Fri Sep 16 21:10:56 2016 -0700
+++ b/hotspot/src/cpu/x86/vm/templateInterpreterGenerator_x86.cpp	Mon Sep 19 13:26:37 2016 -0700
@@ -55,7 +55,7 @@
 // Run with +PrintInterpreter to get the VM to print out the size.
 // Max size with JVMTI
 #ifdef AMD64
-int TemplateInterpreter::InterpreterCodeSize = 256 * 1024;
+int TemplateInterpreter::InterpreterCodeSize = JVMCI_ONLY(268) NOT_JVMCI(256) * 1024;
 #else
 int TemplateInterpreter::InterpreterCodeSize = 224 * 1024;
 #endif // AMD64