com.ibm.dtfj.image
Interface ImageRegister
- public interface ImageRegister
Method Summary
Modifier and Type | Method and Description |
---|---|
|
getName()
Fetch the name of a register.
|
|
getValue()
Get the value for the register.
|
Method Detail
getName
- java.lang.String getName()
Fetch the name of a register.
On some CPUs registers may have more than one conventional name. Recommended
names for some CPUs are provided in the following table. Implementations may provide more
registers than those named here.
|
|
|
|
|
|
---|
Returns:
the conventional name of the register
getValue
- java.lang.Number getValue()
- throws CorruptDataException
Get the value for the register.
Returns:
an integral or floating point type which contains
the value for the register. The returned value may be an
instance of any subclass of Number. For instance, on x86
architectures with MMX, the XMM registers will be returned
as BigInteger instances
Throws: