/**
  * Logs the contents of an address and the surrounding memory to the error output.
  *
  * @param start the address of the memory to be dumped
  * @param beforeBytes the number of bytes before the address to be included
  * @param afterBytes the number of bytes after the address to be included
  */
 public final void dumpMemory(Address start, int beforeBytes, int afterBytes) {
   org.jikesrvm.runtime.Memory.dumpMemory(start, beforeBytes, afterBytes);
 }