# HG changeset patch # User anoll # Date 1382032024 -7200 # Node ID 74e00b98d5ddfa305763c7d12136ba99a726bc97 # Parent 90abdd727e645837236ce35bf709898b192db78c 8026708: guarantee(codelet_size > 0 && (size_t)codelet_size > 2*K) failed: not enough space for interpreter generation Summary: Increase size for the template interpreter accordingly Reviewed-by: kvn, twisti diff -r 90abdd727e64 -r 74e00b98d5dd src/cpu/x86/vm/templateInterpreter_x86.hpp --- a/src/cpu/x86/vm/templateInterpreter_x86.hpp Wed Oct 16 11:13:15 2013 -0700 +++ b/src/cpu/x86/vm/templateInterpreter_x86.hpp Thu Oct 17 19:47:04 2013 +0200 @@ -34,9 +34,9 @@ // Run with +PrintInterpreter to get the VM to print out the size. // Max size with JVMTI #ifdef AMD64 - const static int InterpreterCodeSize = 208 * 1024; + const static int InterpreterCodeSize = 256 * 1024; #else - const static int InterpreterCodeSize = 176 * 1024; + const static int InterpreterCodeSize = 224 * 1024; #endif // AMD64 #endif // CPU_X86_VM_TEMPLATEINTERPRETER_X86_HPP