Module openj9.dtfj

Class RegisterSet

java.lang.Object
com.ibm.j9ddr.corereaders.tdump.zebedee.mvs.RegisterSet

public class RegisterSet extends Object
This class represents a set of registers for a failed thread.
  • Constructor Details

    • RegisterSet

      public RegisterSet()
  • Method Details

    • getRegisters

      public long[] getRegisters()
      Return an array of the register values.
    • getRegister

      public long getRegister(int index)
      Get the value of the specified register.
    • getRegisterAsAddress

      public long getRegisterAsAddress(int index)
      Get the value of the specified register for use as an address.
    • setRegister

      public void setRegister(int index, long value)
      Sets the specified register.
      Parameters:
      index - the register whose value is to be set
      value - the value to set it to
    • getPSW

      public long getPSW()
      Returns the PSW. XXX How big is the PSW on a 64-bit machine?
    • setPSW

      public void setPSW(long psw)
      Sets the PSW.
    • setWhereFound

      public void setWhereFound(String whereFound)
      Sets the whereFound string.
    • whereFound

      public String whereFound()
      Returns a string indicating where the registers were found. This is mainly for debugging purposes.