56
57 #define MIN_STACK_YELLOW_PAGES DEFAULT_STACK_YELLOW_PAGES
58 #define MIN_STACK_RED_PAGES DEFAULT_STACK_RED_PAGES
59 #define MIN_STACK_SHADOW_PAGES DEFAULT_STACK_SHADOW_PAGES
60 #define MIN_STACK_RESERVED_PAGES (0)
61
62 define_pd_global(intx, StackYellowPages, DEFAULT_STACK_YELLOW_PAGES);
63 define_pd_global(intx, StackRedPages, DEFAULT_STACK_RED_PAGES);
64 define_pd_global(intx, StackShadowPages, DEFAULT_STACK_SHADOW_PAGES);
65 define_pd_global(intx, StackReservedPages, DEFAULT_STACK_RESERVED_PAGES);
66
67 define_pd_global(bool, VMContinuations, false);
68
69 define_pd_global(bool, RewriteBytecodes, true);
70 define_pd_global(bool, RewriteFrequentPairs, true);
71
72 define_pd_global(uintx, TypeProfileLevel, 0);
73
74 define_pd_global(bool, PreserveFramePointer, false);
75
76 define_pd_global(bool, CompactStrings, true);
77
78 #define ARCH_FLAGS(develop, \
79 product, \
80 range, \
81 constraint) \
82 \
83 product(bool, UseFastEmptyMethods, true, \
84 "Use fast method entry code for empty methods") \
85 \
86 product(bool, UseFastAccessorMethods, true, \
87 "Use fast method entry code for accessor methods") \
88 \
89 product(bool, DecodeErrorContext, false, DIAGNOSTIC, \
90 "Try to decode the architecture-specific context for better " \
91 "diagnostics")
92
93 // end of ARCH_FLAGS
94
95 #endif // CPU_ZERO_GLOBALS_ZERO_HPP
|
56
57 #define MIN_STACK_YELLOW_PAGES DEFAULT_STACK_YELLOW_PAGES
58 #define MIN_STACK_RED_PAGES DEFAULT_STACK_RED_PAGES
59 #define MIN_STACK_SHADOW_PAGES DEFAULT_STACK_SHADOW_PAGES
60 #define MIN_STACK_RESERVED_PAGES (0)
61
62 define_pd_global(intx, StackYellowPages, DEFAULT_STACK_YELLOW_PAGES);
63 define_pd_global(intx, StackRedPages, DEFAULT_STACK_RED_PAGES);
64 define_pd_global(intx, StackShadowPages, DEFAULT_STACK_SHADOW_PAGES);
65 define_pd_global(intx, StackReservedPages, DEFAULT_STACK_RESERVED_PAGES);
66
67 define_pd_global(bool, VMContinuations, false);
68
69 define_pd_global(bool, RewriteBytecodes, true);
70 define_pd_global(bool, RewriteFrequentPairs, true);
71
72 define_pd_global(uintx, TypeProfileLevel, 0);
73
74 define_pd_global(bool, PreserveFramePointer, false);
75
76 define_pd_global(bool, InlineTypePassFieldsAsArgs, false);
77 define_pd_global(bool, InlineTypeReturnedAsFields, false);
78
79 define_pd_global(bool, CompactStrings, true);
80
81 #define ARCH_FLAGS(develop, \
82 product, \
83 range, \
84 constraint) \
85 \
86 product(bool, UseFastEmptyMethods, true, \
87 "Use fast method entry code for empty methods") \
88 \
89 product(bool, UseFastAccessorMethods, true, \
90 "Use fast method entry code for accessor methods") \
91 \
92 product(bool, DecodeErrorContext, false, DIAGNOSTIC, \
93 "Try to decode the architecture-specific context for better " \
94 "diagnostics")
95
96 // end of ARCH_FLAGS
97
98 #endif // CPU_ZERO_GLOBALS_ZERO_HPP
|