Class Overview
A list of of Mips register values.
Summary
[Expand]
Inherited Methods |
From class
com.pnfsoftware.jeb.core.units.code.asm.processor.arch.AbstractRegisterData
void
|
clearAllDirty()
|
void
|
clearDirty(int regnum)
|
AbstractRegisterBank
|
getBank()
Get the layout used by this register bank.
|
int
|
getBitsize(int regnum)
Get the register size in bits.
|
Set<Integer>
|
getDirtyRegisters()
|
Endianness
|
getEndianness()
Get the byte ordering used by the registers of this bank.
|
long
|
getFlags()
This convenience method returns the value of the general purpose flag.
|
String
|
getName(int regnum)
Get the common name of a register.
|
long
|
getProgramCounter()
This convenience method returns the value of the program counter register.
|
int
|
getSize(int regnum)
|
byte[]
|
getValue(int regnum)
Get the binary value of a register.
|
Long
|
getValueAsLong(int regnum)
Get the value of a register that does not exceed 64 bits, as a long, using the bank's set
byte ordering.
|
boolean
|
isDirty(int regnum)
|
void
|
setAllDirty()
|
void
|
setDirty(int regnum)
|
boolean
|
setValue(int regnum, byte[] bytes)
Set the binary value of a register.
|
boolean
|
setValueAsLong(int regnum, long value)
Set the value of a register, if it does not exceed 64 bits.
|
int
|
size()
Retrieve the number of registers defined in the layout used by this register bank.
|
String
|
toString()
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
From interface
com.pnfsoftware.jeb.core.units.code.asm.processor.IRegisterData
abstract
IRegisterBank
|
getBank()
Get the layout used by this register bank.
|
abstract
int
|
getBitsize(int regnum)
Get the register size in bits.
|
abstract
Endianness
|
getEndianness()
Get the byte ordering used by the registers of this bank.
|
abstract
long
|
getFlags()
This convenience method returns the value of the general purpose flag.
|
abstract
String
|
getName(int regnum)
Get the common name of a register.
|
abstract
long
|
getProgramCounter()
This convenience method returns the value of the program counter register.
|
abstract
byte[]
|
getValue(int regnum)
Get the binary value of a register.
|
abstract
Long
|
getValueAsLong(int regnum)
Get the value of a register that does not exceed 64 bits, as a long, using the bank's set
byte ordering.
|
abstract
boolean
|
setValue(int regnum, byte[] bytes)
Set the binary value of a register.
|
abstract
boolean
|
setValueAsLong(int regnum, long value)
Set the value of a register, if it does not exceed 64 bits.
|
abstract
int
|
size()
Retrieve the number of registers defined in the layout used by this register bank.
|
|
Public Constructors