< prev index next >

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/spi/LoweringProvider.java

Print this page
rev 56282 : [mq]: graal

@@ -51,9 +51,10 @@
      * Indicates the smallest width for comparing an integer value on the target platform.
      */
     Integer smallestCompareWidth();
 
     /**
-     * Indicates whether the target platform supports bulk zeroing instruction.
+     * Returns the granularity in terms of bytes that this target platform's bulk zeroing supports.
+     * Returns 0 to indicate that this target platform does not support bulk zeroing instruction.
      */
-    boolean supportBulkZeroing();
+    int bulkZeroingStride();
 }
< prev index next >