comparison src/share/vm/c1/c1_globals.hpp @ 2044:06f017f7daa7

Merge.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Fri, 07 Jan 2011 18:18:08 +0100
parents 00bc9eaf0e24 f95d63e2154a
children 0cd39a385a72
comparison
equal deleted inserted replaced
1942:00bc9eaf0e24 2044:06f017f7daa7
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
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
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
24 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) \
311 "print control flow graph to a separate file during compilation") \ 331 "print control flow graph to a separate file during compilation") \
312 \ 332 \
313 333
314 334
315 // Read default values for c1 globals 335 // Read default values for c1 globals
316 // #include "incls/_c1_globals_pd.hpp.incl"
317 336
318 C1_FLAGS(DECLARE_DEVELOPER_FLAG, DECLARE_PD_DEVELOPER_FLAG, DECLARE_PRODUCT_FLAG, DECLARE_PD_PRODUCT_FLAG, DECLARE_NOTPRODUCT_FLAG) 337 C1_FLAGS(DECLARE_DEVELOPER_FLAG, DECLARE_PD_DEVELOPER_FLAG, DECLARE_PRODUCT_FLAG, DECLARE_PD_PRODUCT_FLAG, DECLARE_NOTPRODUCT_FLAG)
338
339 #endif // SHARE_VM_C1_C1_GLOBALS_HPP