X-Git-Url: http://git.megacz.com/?p=org.ibex.classgen.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fclassgen%2FMethodGen.java;h=96193daf9f3006382fbd2769c970ab143ad1d5cb;hp=4dd05479711754e2a26aa5c5b001a0b9246a3086;hb=0f4dbf22cb4e40d2f9cdedfb40b6e31647781b75;hpb=d4d0c4d937a3c18d559e335a84aed3eb4e406723 diff --git a/src/org/ibex/classgen/MethodGen.java b/src/org/ibex/classgen/MethodGen.java index 4dd0547..96193da 100644 --- a/src/org/ibex/classgen/MethodGen.java +++ b/src/org/ibex/classgen/MethodGen.java @@ -4,21 +4,17 @@ import java.io.*; import java.util.*; /** A class representing a method in a generated classfile - @see ClassGen#addMethod */ + @see ClassFile#addMethod */ public class MethodGen implements CGConst { private final static boolean EMIT_NOPS = false; private static final int NO_CODE = -1; - private static final int FINISHED = -2; - - private final CPGen cp; - private final String name; - private final Type ret; - private final Type[] args; + + private final Type.Class.Method method; private final int flags; - private final ClassGen.AttrGen attrs; - private final ClassGen.AttrGen codeAttrs; - private final Hashtable exnTable = new Hashtable(); + private final ClassFile.AttrGen attrs; + private final ClassFile.AttrGen codeAttrs; + private final Vector exnTable = new Vector(); private final Hashtable thrownExceptions = new Hashtable(); private int maxStack = 16; @@ -28,79 +24,321 @@ public class MethodGen implements CGConst { private int capacity; private byte[] op; private Object[] arg; - - public String toString() { StringBuffer sb = new StringBuffer(); toString(sb, ""); return sb.toString(); } - public void toString(StringBuffer sb, String constructorName) { - sb.append(ClassGen.flagsToString(flags)); - sb.append(ret.humanReadable()); - sb.append(" "); - - if (name.equals("")) sb.append("static "); - else { - if (name.equals("")) sb.append(constructorName); - else sb.append(name); - sb.append("("); - for(int i=0; i 0) { + sb.append("throws"); + for(Enumeration e = thrownExceptions.keys();e.hasMoreElements();) + sb.append(" ").append(((Type.Class)e.nextElement()).debugToString()).append(","); + sb.setLength(sb.length()-1); + sb.append(" "); + } + if((flags & (NATIVE|ABSTRACT))==0) { + sb.append("{\n"); + for(int i=0;i 0) + exnTable.addElement(new ExnTableEnt(ci,cp,bytecodeMap)); + codeAttrs = new ClassFile.AttrGen(ci,cp); + // FEATURE: Support these + // NOTE: Until we can support them properly we HAVE to delete them, + // they'll be incorrect after we rewrite the constant pool, etc + codeAttrs.remove("LineNumberTable"); + codeAttrs.remove("LocalVariableTable"); + + } else { + codeAttrs = new ClassFile.AttrGen(); + } + + if(attrs.contains("Exceptions")) { + DataInputStream ei = new DataInputStream(new ByteArrayInputStream((byte[]) attrs.get("Exceptions"))); + int exnCount = ei.readUnsignedShort(); + while(exnCount-- > 0) { + Type.Class t = (Type.Class) cp.getKeyByIndex(ei.readUnsignedShort()); + thrownExceptions.put(t,t); + } + } + } + + final int[] parseCode(DataInputStream in, int codeLen, ConstantPool cp) throws IOException { + int[] map = new int[codeLen]; + int pc; + for(pc=0;pc= max || bytecodeMap[startPC] < 0) throw new ClassFile.ClassReadExn("invalid startPC"); + if(endPC >= max || bytecodeMap[endPC] < 0) throw new ClassFile.ClassReadExn("invalid startPC"); + if(handlerPC >= max || bytecodeMap[handlerPC] < 0) throw new ClassFile.ClassReadExn("invalid startPC"); + this.start = bytecodeMap[startPC]; + this.end = bytecodeMap[endPC]; + this.handler = bytecodeMap[handlerPC]; + } + ExnTableEnt(int start, int end, int handler, Type.Class type) { this.start = start; this.end = end; this.handler = handler; - this.typeEnt = typeEnt; + this.type = type; } - public void dump(DataOutput o, int[] pc, int endPC) throws IOException { + void finish(ConstantPool cp) { if(type != null) cp.add(type); } + void dump(DataOutput o, int[] pc, int endPC, ConstantPool cp) throws IOException { o.writeShort(pc[start]); o.writeShort(end==pc.length ? endPC : pc[end]); o.writeShort(pc[handler]); - o.writeShort(cp.getIndex(typeEnt)); + o.writeShort(type == null ? 0 : cp.getIndex(type)); } } @@ -110,22 +348,19 @@ public class MethodGen implements CGConst { @param handler The instruction of the excepton handler @param type The type of exception that is to be handled (MUST inherit from Throwable) */ - public final void addExceptionHandler(int start, int end, int handler, Type.Object type) { - exnTable.put(type, new ExnTableEnt(start, end, handler, cp.add(type))); + public final void addExceptionHandler(int start, int end, int handler, Type.Class type) { + exnTable.addElement(new ExnTableEnt(start, end, handler, type)); } /** Adds a exception type that can be thrown from this method NOTE: This isn't enforced by the JVM. This is for reference only. A method can throw exceptions not declared to be thrown @param type The type of exception that can be thrown */ - public final void addThrow(Type.Object type) { - thrownExceptions.put(type, cp.add(type)); - } + public final void addThrow(Type.Class type) { thrownExceptions.put(type, type); } private final void grow() { if(size == capacity) grow(size+1); } private final void grow(int newCap) { if(capacity == NO_CODE) throw new IllegalStateException("method can't have code"); - if(capacity == FINISHED) throw new IllegalStateException("method has been finished"); if(newCap <= capacity) return; newCap = Math.max(newCap, capacity == 0 ? 256 : capacity*2); @@ -220,7 +455,7 @@ public class MethodGen implements CGConst { } if(n >= -128 && n <= 127) { op = BIPUSH; arg = N(n); } else if(n >= -32768 && n <= 32767) { op = SIPUSH; arg = N(n); } - else { arg = cp.add(N(n)); } + else { arg = N(n); } break; case ILOAD: case ISTORE: case LLOAD: case LSTORE: case FLOAD: case FSTORE: case DLOAD: case DSTORE: case ALOAD: case ASTORE: @@ -269,21 +504,18 @@ public class MethodGen implements CGConst { if(arg instanceof Long) { long l = ((Long)arg).longValue(); - if(l == 0L) { this.op[pos] = LCONST_0; return; } - if(l == 1L) { this.op[pos] = LCONST_1; return; } + if(l == 0L || l == 1L) { + this.op[pos] = l == 0L ? LCONST_0 : LCONST_1; + this.arg[pos] = null; + return; + } + op = LDC2_W; + } else if(arg instanceof Double) { + op = LDC2_W; } - - if(arg instanceof Long || arg instanceof Double) op = LDC2_W; - break; - case INVOKEINTERFACE: - if(arg instanceof MethodRef) arg = new MethodRef.I((MethodRef)arg); break; } - int opdata = OP_DATA[op&0xff]; - if((opdata&OP_CPENT_FLAG) != 0 && !(arg instanceof CPGen.Ent)) - arg = cp.add(arg); - else if((opdata&OP_VALID_FLAG) == 0) - throw new IllegalArgumentException("unknown bytecode"); + if((OP_DATA[op&0xff]&OP_VALID_FLAG) == 0) throw new IllegalArgumentException("unknown bytecode"); this.op[pos] = op; this.arg[pos] = arg; } @@ -343,6 +575,12 @@ public class MethodGen implements CGConst { public Pair(int i1, int i2) { this.i1 = i1; this.i2 = i2; } } + public static class MultiANewArray { + public Type.Class type; + public int dims; + public MultiANewArray(Type.Class type, int dims) { this.type = type; this.dims = dims; } + } + public static class Wide { public final byte op; public final int varNum; @@ -361,11 +599,50 @@ public class MethodGen implements CGConst { @exception IllegalStateException if the data for a method is in an inconsistent state (required arguments missing, etc) @exception Exn if the byteocode could not be generated for any other reason (constant pool full, etc) */ - public void finish() { - try { - _finish(); - } catch(IOException e) { - throw new Error("should never happen"); + void finish(ConstantPool cp) { + cp.addUtf8(method.name); + cp.addUtf8(method.getDescriptor()); + + for(Enumeration e = thrownExceptions.keys();e.hasMoreElements();) + cp.add(e.nextElement()); + + if(size == NO_CODE) return; + for(int i=0;i 0) attrs.put("Exceptions",""); + attrs.finish(cp); + codeAttrs.finish(cp); + + cparg = new ConstantPool.Ent[size]; + + for(int i=0, p=0;i= size) - throw new IllegalStateException("invalid target address"); + throw new IllegalStateException("invalid target address " + target + "/" + size); return arg; } - private void _finish() throws IOException { - if(size == FINISHED) return; - - cp.stable(); - + private void generateCode(ConstantPool cp) { + try { + _generateCode(cp); + } catch(IOException e) { + throw new Error("should never happen"); + } + } + + private void _generateCode(ConstantPool cp) throws IOException { ByteArrayOutputStream baos = new ByteArrayOutputStream(); DataOutput o = new DataOutputStream(baos); @@ -438,6 +719,9 @@ public class MethodGen implements CGConst { } continue; } + case WIDE: + p += ((Wide)arg[i]).op == IINC ? 5 : 3; + continue; // May need widening case ILOAD: case ISTORE: case LLOAD: case LSTORE: case FLOAD: case FSTORE: case DLOAD: case DSTORE: case ALOAD: case ASTORE: @@ -446,6 +730,8 @@ public class MethodGen implements CGConst { if(arg > 255) { this.op[i] = WIDE; this.arg[i] = new Wide(op, arg); + p += 4; + continue; } break; } @@ -454,16 +740,22 @@ public class MethodGen implements CGConst { if(pair.i1 > 255 || pair.i2 < -128 || pair.i2 > 127) { this.op[i] = WIDE; this.arg[i] = new Wide(IINC, pair.i1, pair.i2); + p += 6; + continue; } break; } case LDC: - j = cp.getIndex((CPGen.Ent)arg[i]); - if(j >= 256) this.op[i] = op = LDC_W; + j = cp.getIndex(cparg[i]); + if(j >= 256) { + this.op[i] = op = LDC_W; + p += 3; + continue; + } break; default: } - if((j = (opdata&OP_ARG_LENGTH_MASK)) == 7) throw new Error("shouldn't be here"); + if((j = (opdata&OP_ARG_LENGTH_MASK)) == 7) throw new Error("shouldn't be here " + Integer.toString(op&0xff,16)); p += 1 + j; } @@ -511,7 +803,7 @@ public class MethodGen implements CGConst { } int codeSize = p; - if(codeSize >= 65536) throw new ClassGen.Exn("method too large in size"); + if(codeSize >= 65536) throw new ClassFile.Exn("method too large in size"); o.writeShort(maxStack); o.writeShort(maxLocals); @@ -533,7 +825,7 @@ public class MethodGen implements CGConst { switch(op) { case IINC: { Pair pair = (Pair) arg; - if(pair.i1 > 255 || pair.i2 < -128 || pair.i2 > 127) throw new ClassGen.Exn("overflow of iinc arg"); + if(pair.i1 > 255 || pair.i2 < -128 || pair.i2 > 127) throw new ClassFile.Exn("overflow of iinc arg"); o.writeByte(pair.i1); o.writeByte(pair.i2); break; @@ -566,12 +858,23 @@ public class MethodGen implements CGConst { if(wide.op == IINC) o.writeShort(wide.n); break; } - + case MULTIANEWARRAY: { + o.writeShort(cp.getIndex(cparg[i])); + int v = ((MultiANewArray) arg).dims; + if(v >= 256) throw new ClassFile.Exn("overflow of dimensions in multianewarray"); + o.writeByte(v); + break; + } + case INVOKEINTERFACE: + o.writeShort(cp.getIndex(cparg[i])); + o.writeByte(((Type.Class.Method)arg).argTypes.length + 1); + o.writeByte(0); + break; default: if((opdata & OP_BRANCH_FLAG) != 0) { int v = pc[((Integer)arg).intValue()] - pc[i]; if(argLength == 2) { - if(v < -32768 || v > 32767) throw new ClassGen.Exn("overflow of s2 offset"); + if(v < -32768 || v > 32767) throw new ClassFile.Exn("overflow of s2 offset"); o.writeShort(v); } else if(argLength == 4) { o.writeInt(v); @@ -579,7 +882,7 @@ public class MethodGen implements CGConst { throw new Error("should never happen"); } } else if((opdata & OP_CPENT_FLAG) != 0) { - int v = cp.getIndex((CPGen.Ent)arg); + int v = cp.getIndex(cparg[i]); if(argLength == 1) o.writeByte(v); else if(argLength == 2) o.writeShort(v); else throw new Error("should never happen"); @@ -588,10 +891,10 @@ public class MethodGen implements CGConst { } else { int iarg = ((Integer)arg).intValue(); if(argLength == 1) { - if(iarg < -128 || iarg >= 256) throw new ClassGen.Exn("overflow of s/u1 option"); + if((opdata & OP_UNSIGNED_FLAG) != 0 ? iarg >= 256 : (iarg < -128 || iarg >= 128)) throw new ClassFile.Exn("overflow of s/u1 option"); o.writeByte(iarg); } else if(argLength == 2) { - if(iarg < -32768 || iarg >= 65536) throw new ClassGen.Exn("overflow of s/u2 option"); + if((opdata & OP_UNSIGNED_FLAG) != 0 ? iarg >= 65536 : (iarg < -32768 || iarg >= 32768)) throw new ClassFile.Exn("overflow of s/u2 option"); o.writeShort(iarg); } else { throw new Error("should never happen"); @@ -604,32 +907,36 @@ public class MethodGen implements CGConst { //if(baos.size() - 8 != codeSize) throw new Error("we didn't output what we were supposed to"); o.writeShort(exnTable.size()); - for(Enumeration e = exnTable.keys();e.hasMoreElements();) - ((ExnTableEnt)exnTable.get(e.nextElement())).dump(o, pc, codeSize); - - o.writeShort(codeAttrs.size()); - codeAttrs.dump(o); + for(i=0;i 0) { + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + DataOutputStream o = new DataOutputStream(baos); + o.writeShort(thrownExceptions.size()); + for(Enumeration e = thrownExceptions.keys();e.hasMoreElements();) + o.writeShort(cp.getIndex(thrownExceptions.get(e.nextElement()))); + baos.close(); + attrs.put("Exceptions", baos.toByteArray()); + } } + + void dump(DataOutput o, ConstantPool cp) throws IOException { + if((flags & (NATIVE|ABSTRACT))==0) generateCode(cp); + generateExceptions(cp); - void dump(DataOutput o) throws IOException { o.writeShort(flags); - o.writeShort(cp.getUtf8Index(name)); - o.writeShort(cp.getUtf8Index(getDescriptor())); - o.writeShort(attrs.size()); - attrs.dump(o); + o.writeShort(cp.getUtf8Index(method.name)); + o.writeShort(cp.getUtf8Index(method.getDescriptor())); + attrs.dump(o,cp); } /** Negates the IF* instruction, op (IF_ICMPGT -> IF_ICMPLE, IFNE -> IFEQ, etc) @@ -672,30 +979,32 @@ public class MethodGen implements CGConst { private static final int OP_BRANCH_FLAG = 1<<3; private static final int OP_CPENT_FLAG = 1<<4; - private static final int OP_VALID_FLAG = 1<<5; + private static final int OP_UNSIGNED_FLAG = 1<<5; + private static final int OP_VALID_FLAG = 1<<6; private static final int OP_ARG_LENGTH_MASK = 7; private static final boolean OP_VALID(byte op) { return (OP_DATA[op&0xff] & OP_VALID_FLAG) != 0; } private static final int OP_ARG_LENGTH(byte op) { return (OP_DATA[op&0xff]&OP_ARG_LENGTH_MASK); } private static final boolean OP_CPENT(byte op) { return (OP_DATA[op&0xff]&OP_CPENT_FLAG) != 0; } private static final boolean OP_BRANCH(byte op) { return (OP_DATA[op&0xff]&OP_BRANCH_FLAG ) != 0; } + private static final boolean OP_UNSIGNED(byte op) { return (OP_DATA[op&0xff]&OP_UNSIGNED_FLAG ) != 0; } // Run perl -x src/org/ibex/classgen/CGConst.java to generate this private static final byte[] OP_DATA = { - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, - 0x21, 0x22, 0x31, 0x32, 0x32, 0x21, 0x21, 0x21, 0x21, 0x21, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x21, 0x21, 0x21, 0x21, 0x21, 0x20, 0x20, 0x20, 0x20, 0x20, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, - 0x20, 0x20, 0x20, 0x20, 0x22, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, - 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x21, 0x27, 0x27, 0x20, 0x20, 0x20, 0x20, - 0x20, 0x20, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x01, 0x32, 0x21, 0x32, 0x20, 0x20, - 0x32, 0x32, 0x20, 0x20, 0x27, 0x23, 0x2a, 0x2a, 0x2c, 0x2c, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, - 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, - 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, - 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01 + 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, + 0x41, 0x42, 0x51, 0x52, 0x52, 0x61, 0x61, 0x61, 0x61, 0x61, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, + 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, + 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x61, 0x61, 0x61, 0x61, 0x61, 0x40, 0x40, 0x40, 0x40, 0x40, + 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, + 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, + 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, + 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, + 0x40, 0x40, 0x40, 0x40, 0x42, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, + 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, + 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x4a, 0x41, 0x47, 0x47, 0x40, 0x40, 0x40, 0x40, + 0x40, 0x40, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x52, 0x54, 0x01, 0x52, 0x41, 0x52, 0x40, 0x40, + 0x52, 0x52, 0x40, 0x40, 0x47, 0x53, 0x4a, 0x4a, 0x4c, 0x4c, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01 }; }