8024128: guarantee(codelet_size > 0 && (size_t)codelet_size > 2*K) failed: not enough space for interpreter generation

Tue, 17 Sep 2013 08:39:20 +0200

author
anoll
date
Tue, 17 Sep 2013 08:39:20 +0200
changeset 5730
6d7eba360ba4
parent 5726
69f26e8e09f9
child 5731
a4788ba67e20

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

src/cpu/x86/vm/templateInterpreter_x86.hpp file | annotate | diff | comparison | revisions
     1.1 --- a/src/cpu/x86/vm/templateInterpreter_x86.hpp	Fri Sep 13 16:55:44 2013 -0700
     1.2 +++ b/src/cpu/x86/vm/templateInterpreter_x86.hpp	Tue Sep 17 08:39:20 2013 +0200
     1.3 @@ -34,9 +34,9 @@
     1.4    // Run with +PrintInterpreter to get the VM to print out the size.
     1.5    // Max size with JVMTI
     1.6  #ifdef AMD64
     1.7 -  const static int InterpreterCodeSize = 200 * 1024;
     1.8 +  const static int InterpreterCodeSize = 208 * 1024;
     1.9  #else
    1.10 -  const static int InterpreterCodeSize = 168 * 1024;
    1.11 +  const static int InterpreterCodeSize = 176 * 1024;
    1.12  #endif // AMD64
    1.13  
    1.14  #endif // CPU_X86_VM_TEMPLATEINTERPRETER_X86_HPP

mercurial