mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-23 12:34:32 +02:00
8026708: guarantee(codelet_size > 0 && (size_t)codelet_size > 2*K) failed: not enough space for interpreter generation
Increase size for the template interpreter accordingly Reviewed-by: kvn, twisti
This commit is contained in:
parent
64b6d2b5e5
commit
12fb9529af
1 changed files with 2 additions and 2 deletions
|
@ -34,9 +34,9 @@
|
||||||
// Run with +PrintInterpreter to get the VM to print out the size.
|
// Run with +PrintInterpreter to get the VM to print out the size.
|
||||||
// Max size with JVMTI
|
// Max size with JVMTI
|
||||||
#ifdef AMD64
|
#ifdef AMD64
|
||||||
const static int InterpreterCodeSize = 208 * 1024;
|
const static int InterpreterCodeSize = 256 * 1024;
|
||||||
#else
|
#else
|
||||||
const static int InterpreterCodeSize = 176 * 1024;
|
const static int InterpreterCodeSize = 224 * 1024;
|
||||||
#endif // AMD64
|
#endif // AMD64
|
||||||
|
|
||||||
#endif // CPU_X86_VM_TEMPLATEINTERPRETER_X86_HPP
|
#endif // CPU_X86_VM_TEMPLATEINTERPRETER_X86_HPP
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue