comparison src/cpu/sparc/vm/templateInterpreter_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 609c542c0410
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_TEMPLATEINTERPRETER_SPARC_HPP
26 #define CPU_SPARC_VM_TEMPLATEINTERPRETER_SPARC_HPP
27
25 28
26 protected: 29 protected:
27 30
28 // Size of interpreter code. Increase if too small. Interpreter will 31 // Size of interpreter code. Increase if too small. Interpreter will
29 // fail with a guarantee ("not enough space for interpreter generation"); 32 // fail with a guarantee ("not enough space for interpreter generation");
36 // stack limit is unlimited, so that's why this is much bigger. 39 // stack limit is unlimited, so that's why this is much bigger.
37 const static int InterpreterCodeSize = 210 * K; 40 const static int InterpreterCodeSize = 210 * K;
38 #else 41 #else
39 const static int InterpreterCodeSize = 180 * K; 42 const static int InterpreterCodeSize = 180 * K;
40 #endif 43 #endif
44
45 #endif // CPU_SPARC_VM_TEMPLATEINTERPRETER_SPARC_HPP