comparison src/cpu/x86/vm/cppInterpreter_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
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_CPPINTERPRETER_X86_HPP
26 #define CPU_X86_VM_CPPINTERPRETER_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");
30 // if too small. 33 // if too small.
31 // Run with +PrintInterpreter to get the VM to print out the size. 34 // Run with +PrintInterpreter to get the VM to print out the size.
32 // Max size with JVMTI 35 // Max size with JVMTI
33 const static int InterpreterCodeSize = 168 * 1024; 36 const static int InterpreterCodeSize = 168 * 1024;
37
38 #endif // CPU_X86_VM_CPPINTERPRETER_X86_HPP