comparison src/cpu/sparc/vm/cppInterpreter_sparc.hpp @ 1997:505c913f22f8

Merge
author trims
date Fri, 10 Dec 2010 17:59:46 -0800
parents f95d63e2154a
children
comparison
equal deleted inserted replaced
1949:058f494c8b6d 1997:505c913f22f8
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24 24
25 #ifndef CPU_SPARC_VM_CPPINTERPRETER_SPARC_HPP
26 #define CPU_SPARC_VM_CPPINTERPRETER_SPARC_HPP
27
25 // Size of interpreter code. Increase if too small. Interpreter will 28 // Size of interpreter code. Increase if too small. Interpreter will
26 // fail with a guarantee ("not enough space for interpreter generation"); 29 // fail with a guarantee ("not enough space for interpreter generation");
27 // if too small. 30 // if too small.
28 // Run with +PrintInterpreter to get the VM to print out the size. 31 // Run with +PrintInterpreter to get the VM to print out the size.
29 // Max size with JVMTI 32 // Max size with JVMTI
35 // stack limit is unlimited, so that's why this is much bigger. 38 // stack limit is unlimited, so that's why this is much bigger.
36 const static int InterpreterCodeSize = 210 * K; 39 const static int InterpreterCodeSize = 210 * K;
37 #else 40 #else
38 const static int InterpreterCodeSize = 180 * K; 41 const static int InterpreterCodeSize = 180 * K;
39 #endif 42 #endif
43
44 #endif // CPU_SPARC_VM_CPPINTERPRETER_SPARC_HPP