ReturnaddressTypepublic class ReturnaddressType extends Type Returnaddress, the type JSR or JSR_W instructions push upon the stack.
see vmspec2 3.3.3 |
Fields Summary |
---|
public static final ReturnaddressType | NO_TARGET | private InstructionHandle | returnTarget |
Constructors Summary |
---|
private ReturnaddressType()A Returnaddress [that doesn't know where to return to].
super(Constants.T_ADDRESS, "<return address>");
| public ReturnaddressType(InstructionHandle returnTarget)Creates a ReturnaddressType object with a target.
super(Constants.T_ADDRESS, "<return address targeting "+returnTarget+">");
this.returnTarget = returnTarget;
|
|