/**
  * Zero a region of memory.
  *
  * @param start Start of address range (inclusive)
  * @param len Length in bytes of range to zero Returned: nothing
  */
 public final void zero(Address start, Extent len) {
   org.jikesrvm.runtime.Memory.zero(start, len);
 }