00001 package de.fub.bytecode.generic;
00002
00003 import java.io.*;
00004
00005
00006
00007
00008
00009
00010
00011 public class GOTO extends BranchInstruction
00012 implements VariableLengthInstruction, UnconditionalBranch {
00013
00014
00015
00016
00017 GOTO() {}
00018 public GOTO(InstructionHandle target) {
00019 super(de.fub.bytecode.Constants.GOTO, target);
00020 }
00021
00022
00023
00024
00025
00026
00027
00028
00029 public void accept(Visitor v) {
00030 v.visitVariableLengthInstruction(this);
00031 v.visitUnconditionalBranch(this);
00032 v.visitInstructionTargeter(this);
00033 v.visitBranchInstruction(this);
00034 v.visitGOTO(this);
00035 }
00036
00037
00038
00039
00040 public void dump(DataOutputStream out) throws IOException {
00041 index = getTargetOffset();
00042 if(tag == de.fub.bytecode.Constants.GOTO)
00043 super.dump(out);
00044 else {
00045 index = getTargetOffset();
00046 out.writeByte(tag);
00047 out.writeInt(index);
00048 }
00049 }
00050
00051
00052
00053 protected int updatePosition(int offset, int max_offset) {
00054 int i = getTargetOffset();
00055
00056 position += offset;
00057
00058 if(Math.abs(i) >= (32767 - max_offset)) {
00059 tag = de.fub.bytecode.Constants.GOTO_W;
00060 length = 5;
00061 return 2;
00062 }
00063
00064 return 0;
00065 }
00066 }