comparison src/share/vm/runtime/globals.hpp @ 7125:1baf7f1e3f23

decoupled C++ Graal runtime from C1
author Doug Simon <doug.simon@oracle.com>
date Mon, 03 Dec 2012 15:32:17 +0100
parents 263bc2349f15
children 5d0bb7d52783 7c5f7e7cf2c2
comparison
equal deleted inserted replaced
7124:ab65fa23f8e9 7125:1baf7f1e3f23
118 #endif 118 #endif
119 #ifdef TARGET_OS_FAMILY_bsd 119 #ifdef TARGET_OS_FAMILY_bsd
120 # include "c1_globals_bsd.hpp" 120 # include "c1_globals_bsd.hpp"
121 #endif 121 #endif
122 #endif 122 #endif
123 #ifdef GRAAL
124 #ifdef TARGET_ARCH_x86
125 # include "graalGlobals_x86.hpp"
126 #endif
127 #ifdef TARGET_ARCH_sparc
128 # include "graalGlobals_sparc.hpp"
129 #endif
130 #ifdef TARGET_ARCH_arm
131 # include "graalGlobals_arm.hpp"
132 #endif
133 #ifdef TARGET_ARCH_ppc
134 # include "graalGlobals_ppc.hpp"
135 #endif
136 #endif // GRAAL
123 #ifdef COMPILER2 137 #ifdef COMPILER2
124 #ifdef TARGET_ARCH_x86 138 #ifdef TARGET_ARCH_x86
125 # include "c2_globals_x86.hpp" 139 # include "c2_globals_x86.hpp"
126 #endif 140 #endif
127 #ifdef TARGET_ARCH_sparc 141 #ifdef TARGET_ARCH_sparc
147 #ifdef TARGET_ARCH_zero 161 #ifdef TARGET_ARCH_zero
148 # include "shark_globals_zero.hpp" 162 # include "shark_globals_zero.hpp"
149 #endif 163 #endif
150 #endif 164 #endif
151 165
152 #if !defined(COMPILER1) && !defined(COMPILER2) && !defined(SHARK) 166 #if !defined(COMPILER1) && !defined(COMPILER2) && !defined(SHARK) && !defined(GRAAL)
153 define_pd_global(bool, BackgroundCompilation, false); 167 define_pd_global(bool, BackgroundCompilation, false);
154 define_pd_global(bool, UseTLAB, false); 168 define_pd_global(bool, UseTLAB, false);
155 define_pd_global(bool, CICompileOSR, false); 169 define_pd_global(bool, CICompileOSR, false);
156 define_pd_global(bool, UseTypeProfile, false); 170 define_pd_global(bool, UseTypeProfile, false);
157 define_pd_global(bool, UseOnStackReplacement, false); 171 define_pd_global(bool, UseOnStackReplacement, false);