< prev index next >

src/hotspot/cpu/zero/globals_zero.hpp

Print this page

@@ -71,21 +71,12 @@
 define_pd_global(bool, PreserveFramePointer, false);
 
 // No performance work done here yet.
 define_pd_global(bool, CompactStrings, false);
 
-#define ARCH_FLAGS(develop, \
-                   product, \
-                   diagnostic, \
-                   experimental, \
-                   notproduct, \
-                   range, \
-                   constraint)  \
-                                                                            \
-  product(bool, UseFastEmptyMethods, true,                                  \
-          "Use fast method entry code for empty methods")                   \
-                                                                            \
-  product(bool, UseFastAccessorMethods, true,                               \
-          "Use fast method entry code for accessor methods")                \
-                                                                            \
+#include "runtime/flags/jvmFlag.hpp"
+PRODUCT_FLAG(bool,     UseFastEmptyMethods, true, JVMFlag::DEFAULT,
+                       "Use fast method entry code for empty methods");
 
+PRODUCT_FLAG(bool,     UseFastAccessorMethods, true, JVMFlag::DEFAULT,
+                       "Use fast method entry code for accessor methods");
 #endif // CPU_ZERO_GLOBALS_ZERO_HPP
< prev index next >