< prev index next >

src/share/vm/c1/c1_globals.hpp

Print this page
@  rev 10594 : 8152440: Zero build fails after JDK-8146801
|  Summary: Materialize c1/c2 global in c1_globals.hpp
|  Reviewed-by: duke

@@ -167,10 +167,17 @@
           "Print null check elimination")                                   \
                                                                             \
   develop(bool, EliminateFieldAccess, true,                                 \
           "Optimize field loads and stores")                                \
                                                                             \
+  develop_pd(intx, InitArrayShortSize,                                      \
+          "Threshold small size (in bytes) for clearing arrays. "           \
+          "Anything this size or smaller may get converted to discrete "    \
+          "scalar stores.")                                                 \
+          range(0, max_intx)                                                \
+          constraint(InitArrayShortSizeConstraintFunc, AfterErgo)           \
+                                                                            \
   develop(bool, InlineMethodsWithExceptionHandlers, true,                   \
           "Inline methods containing exception handlers "                   \
           "(NOTE: does not work with current backend)")                     \
                                                                             \
   product(bool, InlineSynchronizedMethods, true,                            \
< prev index next >