# HG changeset patch # User Doug Simon # Date 1381918765 -7200 # Node ID 6adc06f18b8070e3661c9ad50dec2feab9e01033 # Parent 27a67adaf4f7b138666d992235ce31f272c33940 increased AMD64 template interpreter size in GRAALVM to allow the VM to be debugged with a Java debugger diff -r 27a67adaf4f7 -r 6adc06f18b80 src/cpu/x86/vm/templateInterpreter_x86.hpp --- a/src/cpu/x86/vm/templateInterpreter_x86.hpp Tue Oct 15 23:32:19 2013 +0200 +++ b/src/cpu/x86/vm/templateInterpreter_x86.hpp Wed Oct 16 12:19:25 2013 +0200 @@ -34,7 +34,7 @@ // Run with +PrintInterpreter to get the VM to print out the size. // Max size with JVMTI #ifdef AMD64 - const static int InterpreterCodeSize = 240 * 1024; + const static int InterpreterCodeSize = GRAALVM_ONLY(244) NOT_GRAALVM(240) * 1024; #else const static int InterpreterCodeSize = 176 * 1024; #endif // AMD64