Package org.apache.bcel.generic
Class RET
- java.lang.Object
-
- org.apache.bcel.generic.Instruction
-
- org.apache.bcel.generic.RET
-
- All Implemented Interfaces:
java.lang.Cloneable,IndexedInstruction,TypedInstruction
public class RET extends Instruction implements IndexedInstruction, TypedInstruction
RET - Return from subroutineStack: ... -> ...
-
-
Field Summary
Fields Modifier and Type Field Description private intindexprivate booleanwide-
Fields inherited from class org.apache.bcel.generic.Instruction
EMPTY_ARRAY, length, opcode
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(Visitor v)Call corresponding visitor method(s).voiddump(java.io.DataOutputStream out)Dumps instruction as byte code to stream out.intgetIndex()Gets the index.TypegetType(ConstantPoolGen cp)Gets the type associated with this instruction.protected voidinitFromFile(ByteSequence bytes, boolean wide)Reads needed data (for example index) from file.voidsetIndex(int n)Sets index of local variable containg the return addressprivate voidsetWide()java.lang.StringtoString(boolean verbose)Long output format: <name of opcode> "["<opcode number>"]" "("<length of instruction>")"-
Methods inherited from class org.apache.bcel.generic.Instruction
consumeStack, copy, dispose, equals, getComparator, getLength, getName, getOpcode, hashCode, isValidByte, isValidShort, produceStack, readInstruction, setComparator, setLength, setOpcode, toString, toString
-
-
-
-
Method Detail
-
accept
public void accept(Visitor v)
Call corresponding visitor method(s). The order is: Call visitor methods of implemented interfaces first, then call methods according to the class hierarchy in descending order, that is, the most specific visitXXX() call comes last.- Specified by:
acceptin classInstruction- Parameters:
v- Visitor object.
-
dump
public void dump(java.io.DataOutputStream out) throws java.io.IOExceptionDumps instruction as byte code to stream out.- Overrides:
dumpin classInstruction- Parameters:
out- Output stream.- Throws:
java.io.IOException- Thrown when an I/O exception of some sort has occurred.
-
getIndex
public final int getIndex()
Description copied from interface:IndexedInstructionGets the index.- Specified by:
getIndexin interfaceIndexedInstruction- Returns:
- index of local variable containg the return address.
-
getType
public Type getType(ConstantPoolGen cp)
Description copied from interface:TypedInstructionGets the type associated with this instruction.- Specified by:
getTypein interfaceTypedInstruction- Parameters:
cp- the constant pool generator.- Returns:
- return address type.
-
initFromFile
protected void initFromFile(ByteSequence bytes, boolean wide) throws java.io.IOException
Reads needed data (for example index) from file.- Overrides:
initFromFilein classInstruction- Parameters:
bytes- byte sequence to read from.wide- "wide" instruction flag.- Throws:
java.io.IOException- may be thrown if the implementation needs to read data from the file
-
setIndex
public final void setIndex(int n)
Sets index of local variable containg the return address- Specified by:
setIndexin interfaceIndexedInstruction- Parameters:
n- the index.
-
setWide
private void setWide()
-
toString
public java.lang.String toString(boolean verbose)
Description copied from class:InstructionLong output format: <name of opcode> "["<opcode number>"]" "("<length of instruction>")"- Overrides:
toStringin classInstruction- Parameters:
verbose- long/short format switch.- Returns:
- mnemonic for instruction.
-
-