All Packages Class Hierarchy This Package Previous Next Index
Class espresso.classfile.classgen.GOTO
java.lang.Object
|
+----espresso.classfile.classgen.Instruction
|
+----espresso.classfile.classgen.BranchInstruction
|
+----espresso.classfile.classgen.GOTO
- public class GOTO
- extends BranchInstruction
- implements VariableLengthInstruction
GOTO - Branch always (offset, not address)
-
GOTO()
- Empty constructor needed for the Class.newInstance() statement in
Instruction.readInstruction().
-
GOTO(InstructionHandle)
-
-
dump(DataOutputStream)
- Dump instruction as byte code to stream out.
-
updatePosition(int, int)
- Called in pass 2 of InstructionList.setPositions() in order to update
the branch target, that may shift due to variable length instructions.
GOTO
GOTO()
- Empty constructor needed for the Class.newInstance() statement in
Instruction.readInstruction(). Not to be used otherwise.
GOTO
public GOTO(InstructionHandle target)
dump
public void dump(DataOutputStream out) throws IOException
- Dump instruction as byte code to stream out.
- Parameters:
- out - Output stream
- Overrides:
- dump in class BranchInstruction
updatePosition
protected int updatePosition(int offset,
int max_offset)
- Called in pass 2 of InstructionList.setPositions() in order to update
the branch target, that may shift due to variable length instructions.
- Overrides:
- updatePosition in class Instruction
All Packages Class Hierarchy This Package Previous Next Index