OpenJDK / jdk / jdk
changeset 20015:bb251284d4c0
8024128: guarantee(codelet_size > 0 && (size_t)codelet_size > 2*K) failed: not enough space for interpreter generation
Summary: Increase interpreter size for x86 template interpreter
Reviewed-by: kvn, iveresov
author | anoll |
---|---|
date | Tue, 17 Sep 2013 08:39:20 +0200 |
parents | d74937287461 |
children | 333886857cd9 |
files | hotspot/src/cpu/x86/vm/templateInterpreter_x86.hpp |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/hotspot/src/cpu/x86/vm/templateInterpreter_x86.hpp Fri Sep 13 16:55:44 2013 -0700 +++ b/hotspot/src/cpu/x86/vm/templateInterpreter_x86.hpp Tue Sep 17 08:39:20 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 = 200 * 1024; + const static int InterpreterCodeSize = 208 * 1024; #else - const static int InterpreterCodeSize = 168 * 1024; + const static int InterpreterCodeSize = 176 * 1024; #endif // AMD64 #endif // CPU_X86_VM_TEMPLATEINTERPRETER_X86_HPP