comparison src/share/vm/c1/c1_globals.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 42a10fc37986
children 06f017f7daa7 b92c45f2bc75
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 SHARE_VM_C1_C1_GLOBALS_HPP
26 #define SHARE_VM_C1_C1_GLOBALS_HPP
27
28 #include "runtime/globals.hpp"
29 #ifdef TARGET_ARCH_x86
30 # include "c1_globals_x86.hpp"
31 #endif
32 #ifdef TARGET_ARCH_sparc
33 # include "c1_globals_sparc.hpp"
34 #endif
35 #ifdef TARGET_OS_FAMILY_linux
36 # include "c1_globals_linux.hpp"
37 #endif
38 #ifdef TARGET_OS_FAMILY_solaris
39 # include "c1_globals_solaris.hpp"
40 #endif
41 #ifdef TARGET_OS_FAMILY_windows
42 # include "c1_globals_windows.hpp"
43 #endif
44
25 // 45 //
26 // Defines all global flags used by the client compiler. 46 // Defines all global flags used by the client compiler.
27 // 47 //
28 #define C1_FLAGS(develop, develop_pd, product, product_pd, notproduct) \ 48 #define C1_FLAGS(develop, develop_pd, product, product_pd, notproduct) \
29 \ 49 \
301 "print control flow graph to a separate file during compilation") \ 321 "print control flow graph to a separate file during compilation") \
302 \ 322 \
303 323
304 324
305 // Read default values for c1 globals 325 // Read default values for c1 globals
306 // #include "incls/_c1_globals_pd.hpp.incl"
307 326
308 C1_FLAGS(DECLARE_DEVELOPER_FLAG, DECLARE_PD_DEVELOPER_FLAG, DECLARE_PRODUCT_FLAG, DECLARE_PD_PRODUCT_FLAG, DECLARE_NOTPRODUCT_FLAG) 327 C1_FLAGS(DECLARE_DEVELOPER_FLAG, DECLARE_PD_DEVELOPER_FLAG, DECLARE_PRODUCT_FLAG, DECLARE_PD_PRODUCT_FLAG, DECLARE_NOTPRODUCT_FLAG)
328
329 #endif // SHARE_VM_C1_C1_GLOBALS_HPP