src/cpu/sparc/vm/cppInterpreter_sparc.hpp

Print this page

        

*** 20,29 **** --- 20,32 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef CPU_SPARC_VM_CPPINTERPRETER_SPARC_HPP + #define CPU_SPARC_VM_CPPINTERPRETER_SPARC_HPP + // Size of interpreter code. Increase if too small. Interpreter will // fail with a guarantee ("not enough space for interpreter generation"); // if too small. // Run with +PrintInterpreter to get the VM to print out the size. // Max size with JVMTI
*** 35,39 **** --- 38,44 ---- // stack limit is unlimited, so that's why this is much bigger. const static int InterpreterCodeSize = 210 * K; #else const static int InterpreterCodeSize = 180 * K; #endif + + #endif // CPU_SPARC_VM_CPPINTERPRETER_SPARC_HPP