comparison src/cpu/sparc/vm/cppInterpreter_sparc.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents c18cbe5936b8
children
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
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