00001 package de.fub.bytecode.generic;
00002
00003 import java.io.*;
00004 import de.fub.bytecode.util.ByteSequence;
00005 import de.fub.bytecode.Constants;
00006 import de.fub.bytecode.classfile.*;
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 public abstract class CPInstruction extends Instruction
00020 implements TypedInstruction, IndexedInstruction
00021 {
00022 protected int index;
00023
00024
00025
00026
00027
00028 CPInstruction() {}
00029
00030
00031
00032 protected CPInstruction(short tag, int index) {
00033 super(tag, (short)3);
00034 setIndex(index);
00035 }
00036
00037
00038
00039
00040 public void dump(DataOutputStream out) throws IOException {
00041 out.writeByte(tag);
00042 out.writeShort(index);
00043 }
00044
00045
00046
00047 public final int getIndex() { return index; }
00048
00049
00050 public Type getType(ConstantPoolGen cpg) {
00051 ConstantPool cp = cpg.getConstantPool();
00052 String name = cp.getConstantString(index, de.fub.bytecode.Constants.CONSTANT_Class);
00053
00054 if(!name.startsWith("["))
00055 name = "L" + name + ";";
00056
00057 return Type.getType(name);
00058 }
00059
00060
00061
00062
00063
00064 protected void initFromFile(ByteSequence bytes, boolean wide)
00065 throws IOException
00066 {
00067 setIndex(bytes.readUnsignedShort());
00068 length = 3;
00069 }
00070
00071
00072
00073
00074 public void setIndex(int index) {
00075 if(index < 0)
00076 throw new ClassGenException("Negative index value: " + index);
00077
00078 this.index = index;
00079 }
00080
00081
00082
00083 public String toString(ConstantPool cp) {
00084 Constant c = cp.getConstant(index);
00085 String str = cp.constantToString(c);
00086
00087 if(c instanceof ConstantClass)
00088 str = str.replace('.', '/');
00089
00090 return de.fub.bytecode.Constants.OPCODE_NAMES[tag] + " " + str;
00091 }
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101 public String toString(boolean verbose) {
00102 return super.toString(verbose) + " " + index;
00103 }
00104 }