comparison src/cpu/x86/vm/templateInterpreter_x86.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 2286bae19255 6d7eba360ba4
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_X86_VM_TEMPLATEINTERPRETER_X86_HPP
26 #define CPU_X86_VM_TEMPLATEINTERPRETER_X86_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");
33 #ifdef AMD64 36 #ifdef AMD64
34 const static int InterpreterCodeSize = 200 * 1024; 37 const static int InterpreterCodeSize = 200 * 1024;
35 #else 38 #else
36 const static int InterpreterCodeSize = 168 * 1024; 39 const static int InterpreterCodeSize = 168 * 1024;
37 #endif // AMD64 40 #endif // AMD64
41
42 #endif // CPU_X86_VM_TEMPLATEINTERPRETER_X86_HPP