get maxStack/maxLocals from MethodGen
[org.ibex.classgen.git] / src / org / ibex / classgen / JSSA.java
1 package org.ibex.classgen;
2 import java.io.*;
3 import java.util.*;
4
5 /**
6  *  a highly streamlined SSA-form intermediate representation of a
7  *  sequence of JVM instructions; all stack manipulation is factored
8  *  out.
9  */
10 public class JSSA extends MethodGen implements CGConst {
11
12     // Constructor //////////////////////////////////////////////////////////////////////////////
13     
14     public JSSA(Type.Class c, DataInput in, ConstantPool cp) throws IOException {
15         super(c, in, cp);
16         local = new Expr[maxLocals];
17         stack = new Expr[maxStack];
18         for(int i=0; i<this.method.getNumArgs(); i++)
19             local[i] = new Argument("arg"+i, this.method.getArgType(i));
20         for(int i=0; i<size(); i++) {
21             int    op  = get(i);
22             Object arg = getArg(i);
23             Object o = addOp(op, arg);
24             if (o != null) {
25                 ops[numOps] = o;
26                 ofs[numOps++] = i;
27             }
28         }
29     }
30
31     public void debugBodyToString(StringBuffer sb) {
32         StringBuffer sb0 = new StringBuffer();
33         super.debugBodyToString(sb0);
34         StringTokenizer st = new StringTokenizer(sb0.toString(), "\n");
35         String[] lines = new String[st.countTokens()];
36         for(int i=0; i<lines.length; i++) lines[i] = st.nextToken();
37         for(int j=0; j<ofs[0]; j++) {
38             String s = "    /* " + lines[j].trim();
39             while(s.length() < 50) s += " ";
40             s += " */";
41             sb.append(s);
42             sb.append("\n");
43         }
44         for(int i=0; i<numOps; i++) {
45             String s = "    /* " + lines[ofs[i]].trim();
46             while(s.length() < 50) s += " ";
47             s += " */  ";
48             s += ops[i].toString();
49             sb.append(s);
50             sb.append(";\n");
51             for(int j=ofs[i]+1; j<(i==numOps-1?size():ofs[i+1]); j++) {
52                 s = "    /* " + lines[j].trim();
53                 while(s.length() < 50) s += " ";
54                 s += " */";
55                 sb.append(s);
56                 sb.append("\n");
57             }
58         }
59     }
60     
61     private Object[] ops = new Object[65535];
62     private int[] ofs = new int[65535];
63     private int numOps = 0;
64
65     // Instance Data; used ONLY during constructor; then thrown away /////////////////////////////////////////////////
66
67     /** this models the JVM locals; it is only used for unwinding stack-ops into an SSA-tree, then thrown away */
68     private final Expr[] local;
69     
70     /** this models the JVM stack; it is only used for unwinding stack-ops into an SSA-tree, then thrown away */
71     private final Expr[] stack;
72
73     /** JVM stack pointer */
74     private int sp = 0;
75     
76     private Expr push(Expr e) { return stack[sp++] = e; }
77     private Expr pop()        { return stack[--sp]; }
78
79
80     // SSA-node classes /////////////////////////////////////////////////////////////////////////////////////////
81
82     /** an purely imperative operation which does not generate data */
83     public abstract class Op {
84         //public abstract Op[] predecessors();  // not implemented yet
85         //public abstract Op[] successors();    // not implemented yet
86         public String toString() { return name(); }
87         String name() {
88             String name = this.getClass().getName();
89             if (name.indexOf('$') != -1) name = name.substring(name.lastIndexOf('$')+1);
90             if (name.indexOf('.') != -1) name = name.substring(name.lastIndexOf('.')+1);
91             return name;
92         }
93     }
94
95     /** an operation which generates data */
96     public abstract class Expr extends Op {
97         //public abstract Expr[] contributors();  // not implemented yet
98         //public abstract Expr[] dependents();    // not implemented yet
99
100         /** every JSSA.Expr either remembers its type _OR_ knows how to figure it out (the latter is preferred to eliminate
101          *  redundant information that could possibly "disagree" with itself -- this happened a LOT in Soot) */
102         public abstract Type getType();
103     }
104
105     /**
106      *  A "nondeterministic merge" -- for example when the first instruction in a loop reads from a local which could have been
107      *  written to either by some instruction at the end of the previous iteration of the loop or by some instruction before
108      *  the loop (on the first iteration).
109      */
110     public class Phi extends Expr {
111         private final Expr[] inputs;
112         public Phi(Expr[] inputs) {
113             this.inputs = new Expr[inputs.length];
114             System.arraycopy(inputs, 0, this.inputs, 0, inputs.length);
115         }
116         public Type getType() {
117             // sanity check
118             Type t = inputs[0].getType();
119
120             // FIXME: actually this should check type-unifiability... fe, the "type of null" unifies with any Type.Ref
121             for(int i=1; i<inputs.length; i++)
122                 if (inputs[i].getType() != t)
123                     throw new Error("Phi node with disagreeing types!  Crisis!");
124             return t;
125         }
126     }
127
128     public class Argument extends Expr {
129         public final String name;
130         public final Type t;
131         public Argument(String name, Type t) { this.name = name; this.t = t; }
132         public String toString() { return name; }
133         public Type getType() { return t; }
134     }
135
136     // Binary Operations //////////////////////////////////////////////////////////////////////////////
137
138     public abstract class BinExpr extends Expr {
139         public final Expr e1;
140         public final Expr e2;
141         public BinExpr(Expr e1, Expr e2) { this.e1 = e1; this.e2 = e2; }
142         public String toString() {
143             return name() + "("+e1+", "+e2+")";
144         }
145     }
146
147     public class Comparison extends BinExpr {
148         public Comparison(Expr e1, Expr e2) { super(e1, e2); }
149         public Type getType() { return Type.BOOLEAN; }
150     }
151     public class Gt extends Comparison { public Gt(Expr e1, Expr e2) { super(e1, e2); } }
152     public class Lt extends Comparison { public Lt(Expr e1, Expr e2) { super(e1, e2); } }
153     public class Eq extends Comparison { public Eq(Expr e1, Expr e2) { super(e1, e2); } }
154     public class Not extends Expr {
155         public final Expr e;
156         public Not(Expr e) { this.e = e; }
157         public Type getType() { return Type.BOOLEAN; }
158     }
159
160     // Math Operations //////////////////////////////////////////////////////////////////////////////
161
162     public class Math extends BinExpr {
163         private final String show;
164         public Math(Expr e1, Expr e2, String show) { super(e2, e1); this.show = show; }
165         public String toString() { return e1+" "+show+" "+e2; }
166         public Type getType() {
167             Type t = e1.getType();
168             if (t != e2.getType()) throw new Error("types disagree");
169             return t;
170         }
171     }
172     public class Add  extends Math { public  Add(Expr e, Expr e2) { super(e, e2, "+"); } }
173     public class Sub  extends Math { public  Sub(Expr e, Expr e2) { super(e, e2, "-"); } }
174     public class Mul  extends Math { public  Mul(Expr e, Expr e2) { super(e, e2, "*"); } }
175     public class Rem  extends Math { public  Rem(Expr e, Expr e2) { super(e, e2, "%"); } }
176     //public class Neg  extends Math { public  Neg(Expr e) { super(e, "-"); } }
177     public class Div  extends Math { public  Div(Expr e, Expr e2) { super(e, e2, "/"); } }
178     public class Shl  extends Math { public  Shl(Expr e, Expr e2) { super(e, e2, "<<"); } }
179     public class Shr  extends Math { public  Shr(Expr e, Expr e2) { super(e, e2, ">>"); } }
180     public class Ushr extends Math { public Ushr(Expr e, Expr e2) { super(e, e2, ">>>"); } }
181     public class And  extends Math { public  And(Expr e, Expr e2) { super(e, e2, "&"); } }
182     public class Or   extends Math { public   Or(Expr e, Expr e2) { super(e, e2, "|"); } }
183     public class Xor  extends Math { public  Xor(Expr e, Expr e2) { super(e, e2, "^"); } }
184
185     // Other operations //////////////////////////////////////////////////////////////////////////////
186
187     public class Cast extends Expr {
188         final Expr e;
189         final Type t;
190         public Cast(Expr e, Type t) { this.e = e; this.t = t; }
191         public Type getType() { return t; }
192     }
193
194     public class InstanceOf extends Expr {
195         final Expr e;
196         final Type t;
197         public InstanceOf(Expr e, Type t) { this.e = e; this.t = t; }
198         public Type getType() { return Type.BOOLEAN; }
199     }
200
201     public class Throw extends Op {
202         public final Expr e;
203         public Throw(Expr e) { this.e = e; }
204     }
205
206     public class Branch extends Op {
207         public Branch(Expr condition, Object destination) { }
208         public Branch(Label destination) { }
209         public Branch(MethodGen.Switch s) { }
210         public Branch() { }
211     }
212     public class Goto extends Branch { }
213     public class RET extends Branch { }
214     public class JSR extends Branch { public JSR(Label l) { super(l); } }
215     public class If extends Branch { }
216
217     /** represents a "returnaddr" pushed onto the stack */
218     public class Label extends Expr {
219         public final Op op;
220         public Type getType() { throw new Error("attempted to call getType() on a Label"); }
221         public Label(Op op) { this.op = op; }
222         public Label(int i) { this.op = null; /* FIXME */ }
223     }
224
225     public class New extends Expr {
226         public final Type.Class t;
227         public Type getType() { return t; }
228         public New(Type.Class t) { this.t = t; }
229     }
230     
231     public class NewArray extends Expr {
232         public final Type.Array t;
233         public final Expr[] dims;
234         public NewArray(Type.Array t, Expr[] dims) { this.t = t; this.dims = dims; }
235         public NewArray(Type.Array t, Expr dim) { this(t,new Expr[]{dim}); }
236         public Type getType() { return t; }
237     }
238     
239     // FEATURE: Array stuff
240
241     public class Return extends Op {
242         final Expr e;
243         public Return() { this(null); }
244         public Return(Expr e) { this.e = e; }
245         public String toString() { return e==null?"return":("return "+e.toString()); }
246     }
247
248     /** GETFIELD and GETSTATIC */
249     public class Get extends Expr {
250         final Type.Class.Field f;
251         final Expr e;
252         public Type getType() { return f.getType(); }
253         public Get(Type.Class.Field f) { this(f, null); }
254         public Get(Type.Class.Field f, Expr e) { this.f = f; this.e = e; }
255         public String toString() {
256             return
257                 (e!=null
258                  ? e+"."+f.name
259                  : f.getDeclaringClass() == JSSA.this.method.getDeclaringClass()
260                  ? f.name
261                  : f.toString());
262         }
263     }
264
265     /** PUTFIELD and PUTSTATIC */
266     public class Put extends Op {
267         final Type.Class.Field f;
268         final Expr v;
269         final Expr e;
270         public Put(Type.Class.Field f, Expr v) { this(f, v, null); }
271         public Put(Type.Class.Field f, Expr v, Expr e) { this.f = f; this.v = v; this.e = e; }
272         public String toString() {
273             return
274                 (e!=null
275                  ? e+"."+f.name
276                  : f.getDeclaringClass() == JSSA.this.method.getDeclaringClass()
277                  ? f.name
278                  : f.toString()) + " = " + v;
279         }
280     }
281
282     public class ArrayPut extends Op {
283         final Expr e, i, v;
284         public ArrayPut(Expr e, Expr i, Expr v) { this.e = e; this.i = i; this.v = v; }
285     }
286
287     public class ArrayGet extends Expr {
288         final Expr e, i;
289         public ArrayGet(Expr e, Expr i) { this.e = e; this.i = i; }
290         public Type getType() { return e.getType().asArray().getElementType(); }
291     }
292
293     public class ArrayLength extends Expr {
294         final Expr e;
295         public ArrayLength(Expr e) { this.e = e; }
296         public Type getType() { return Type.INT; }
297     }
298
299     public abstract class Invoke extends Expr {
300         public final Expr[] arguments;
301         public final Type.Class.Method method;
302         protected Invoke(Type.Class.Method m, Expr[] a) { this.arguments = a; this.method = m; } 
303
304         public Type getType() { return method.getReturnType(); }
305         protected void args(StringBuffer sb) {
306             sb.append("(");
307             for(int i=0; i<arguments.length; i++) {
308                 if (i>0) sb.append(", ");
309                 sb.append(arguments[i]+"");
310             }
311             sb.append(")");
312         }
313
314         public String toString() {
315             StringBuffer sb = new StringBuffer();
316             sb.append(method.getDeclaringClass() == JSSA.this.method.getDeclaringClass()
317                       ? method.name
318                       : (method.getDeclaringClass() + "." + method.name));
319             args(sb);
320             return sb.toString();
321         }
322     }
323     public class InvokeStatic    extends Invoke  { public InvokeStatic(Type.Class.Method m, Expr[] a) { super(m,a); } }
324     public class InvokeSpecial   extends InvokeVirtual {
325         public InvokeSpecial(Type.Class.Method m, Expr[] a, Expr e) { super(m,a,e); }
326         public String toString() {
327             StringBuffer sb = new StringBuffer();
328             sb.append(method.name.equals("<init>") ? "super" : method.name);
329             args(sb);
330             return sb.toString();
331         }
332     }
333     public class InvokeInterface extends InvokeVirtual{public InvokeInterface(Type.Class.Method m, Expr[] a, Expr e){super(m,a,e);}}
334     public class InvokeVirtual   extends Invoke  {
335         public final Expr instance;
336         public InvokeVirtual(Type.Class.Method m, Expr[] a, Expr e) { super(m, a); instance = e; }
337         public String toString() {
338             StringBuffer sb = new StringBuffer();
339             sb.append(method.name);
340             args(sb);
341             return sb.toString();
342         }
343     }
344
345     public class Constant extends Expr {
346         private final Object o;
347         public Constant(int i) { this(new Integer(i)); }
348         public Constant(Object o) { this.o = o; }
349         public String toString() { return o.toString(); }
350         public Type getType() {
351             if (o instanceof Byte) return Type.BYTE;
352             if (o instanceof Short) return Type.SHORT;
353             if (o instanceof Character) return Type.CHAR;
354             if (o instanceof Boolean) return Type.BOOLEAN;
355             if (o instanceof Long) return Type.LONG;
356             if (o instanceof Double) return Type.DOUBLE;
357             if (o instanceof Float) return Type.FLOAT;
358             if (o instanceof ConstantPool.Ent) throw new Error("unimplemented");
359             throw new Error("this should not happen");
360         }
361     }
362
363
364     // Implementation //////////////////////////////////////////////////////////////////////////////
365
366     private Object addOp(int op, Object arg) {
367         int i1 = 0;
368         int i2 = 0;
369         if (op==WIDE) {
370             MethodGen.Wide w = (MethodGen.Wide)arg;
371             op = w.op;
372             arg = null;
373             i1 = w.varNum;
374             i2 = w.n;
375         }
376         if (op==IINC) {
377             MethodGen.Pair p = (MethodGen.Pair)arg;
378             arg = null;
379             i1 = p.i1;
380             i2 = p.i2;
381         }
382         switch(op) {
383
384             case NOP: return null;
385
386                 // Stack manipulations //////////////////////////////////////////////////////////////////////////////
387
388             case ACONST_NULL:                                                      return stack[sp++] = new Constant(null);
389             case ICONST_M1:                                                        return stack[sp++] = new Constant(-1);
390             case ICONST_0: case LCONST_0: case FCONST_0: case DCONST_0:            push(new Constant(0)); return null;
391             case ICONST_1: case LCONST_1: case FCONST_1: case DCONST_1:            push(new Constant(1)); return null;
392             case ICONST_2: case FCONST_2:                                          push(new Constant(2)); return null;
393             case ICONST_3:                                                         push(new Constant(3)); return null;
394             case ICONST_4:                                                         push(new Constant(4)); return null;
395             case ICONST_5:                                                         push(new Constant(5)); return null;
396             case ILOAD:    case LLOAD:    case FLOAD:    case DLOAD:    case ALOAD:    return push(local[i1]);
397             case ILOAD_0:  case LLOAD_0:  case FLOAD_0:  case DLOAD_0:  case ALOAD_0:  return push(local[0]);
398             case ILOAD_1:  case LLOAD_1:  case FLOAD_1:  case DLOAD_1:  case ALOAD_1:  return push(local[1]);
399             case ALOAD_2:  case DLOAD_2:  case FLOAD_2:  case LLOAD_2:  case ILOAD_2:  return push(local[2]);
400             case ILOAD_3:  case LLOAD_3:  case FLOAD_3:  case DLOAD_3:  case ALOAD_3:  return push(local[3]);
401             case ISTORE:   case LSTORE:   case FSTORE:   case DSTORE:   case ASTORE:   local[i1] = pop(); return null;
402             case ISTORE_0: case LSTORE_0: case FSTORE_0: case DSTORE_0: case ASTORE_0: local[0]  = pop(); return null;
403             case ISTORE_1: case LSTORE_1: case FSTORE_1: case DSTORE_1: case ASTORE_1: local[1]  = pop(); return null;
404             case ASTORE_2: case DSTORE_2: case FSTORE_2: case LSTORE_2: case ISTORE_2: local[2]  = pop(); return null;
405             case ISTORE_3: case LSTORE_3: case FSTORE_3: case DSTORE_3: case ASTORE_3: local[3]  = pop(); return null;
406             case POP:      stack[--sp] = null;                    
407             case POP2:     stack[--sp] = null; stack[--sp] = null;   /** fixme: pops a WORD, not an item */
408             case DUP:      stack[sp] = stack[sp-1]; sp++;
409             case DUP2:     stack[sp] = stack[sp-2]; stack[sp+1] = stack[sp-1]; sp+=2;
410
411                 // Conversions //////////////////////////////////////////////////////////////////////////////
412
413                 // coercions are added as-needed when converting from JSSA back to bytecode, so we can
414                 // simply discard them here (assuming the bytecode we're reading in was valid in the first place)
415
416             case I2L: case F2L: case D2L:               push(new Cast(pop(), Type.LONG)); return null;
417             case I2F: case L2F: case D2F:               push(new Cast(pop(), Type.FLOAT)); return null;
418             case I2D: case L2D: case F2D:               push(new Cast(pop(), Type.DOUBLE)); return null;
419             case L2I: case F2I: case D2I:               push(new Cast(pop(), Type.INT)); return null;
420             case I2B:                                   push(new Cast(pop(), Type.BYTE)); return null;
421             case I2C:                                   push(new Cast(pop(), Type.CHAR)); return null;
422             case I2S:                                   push(new Cast(pop(), Type.SHORT)); return null;
423             case SWAP:                                  { Expr e1 = pop(), e2 = pop(); push(e2);  push(e1); return null; }
424
425                 // Math //////////////////////////////////////////////////////////////////////////////
426                    
427             case IADD: case LADD: case FADD: case DADD: push(new Add(pop(), pop())); return null;
428             case ISUB: case LSUB: case FSUB: case DSUB: push(new Sub(pop(), pop())); return null;
429             case IMUL: case LMUL: case FMUL: case DMUL: push(new Mul(pop(), pop())); return null;
430             case IREM: case LREM: case FREM: case DREM: push(new Rem(pop(), pop())); return null;
431                 //case INEG: case LNEG: case FNEG: case DNEG: push(new Neg(pop())); return null;
432             case IDIV: case LDIV: case FDIV: case DDIV: push(new Div(pop(), pop())); return null;
433             case ISHL: case LSHL:                       push(new Shl(pop(), pop())); return null;
434             case ISHR: case LSHR:                       push(new Shr(pop(), pop())); return null;
435             case IUSHR: case LUSHR:                     push(new Ushr(pop(), pop())); return null;
436             case IAND: case LAND:                       push(new And(pop(), pop())); return null;
437             case IOR:  case LOR:                        push(new Or(pop(), pop())); return null;
438             case IXOR: case LXOR:                       push(new Xor(pop(), pop())); return null;
439             case IINC:                                  return local[i1] = new Add(local[i1], new Constant(i2));
440
441                 // Control and branching //////////////////////////////////////////////////////////////////////////////
442
443             case IFNULL:                                return new Branch(new Eq(pop(), new Constant(null)), new Label(i1));
444             case IFNONNULL:                             return new Branch(new Not(new Eq(pop(),new Constant(null))),new Label(i1));
445             case IFEQ:                                  return new Branch(    new Eq(new Constant(0), pop()),  arg);
446             case IFNE:                                  return new Branch(new Not(new Eq(new Constant(0), pop())), arg);
447             case IFLT:                                  return new Branch(    new Lt(new Constant(0), pop()),  arg);
448             case IFGE:                                  return new Branch(new Not(new Lt(new Constant(0), pop())), arg);
449             case IFGT:                                  return new Branch(    new Gt(new Constant(0), pop()),  arg);
450             case IFLE:                                  return new Branch(new Not(new Gt(new Constant(0), pop())), arg);
451             case IF_ICMPEQ:                             return new Branch(    new Eq(pop(), pop()),  arg);
452             case IF_ICMPNE:                             return new Branch(new Not(new Eq(pop(), pop())), arg);
453             case IF_ICMPLT:                             return new Branch(    new Lt(pop(), pop()),  arg);
454             case IF_ICMPGE:                             return new Branch(new Not(new Lt(pop(), pop())), arg);
455             case IF_ICMPGT:                             return new Branch(    new Gt(pop(), pop()),  arg);
456             case IF_ICMPLE:                             return new Branch(new Not(new Gt(pop(), pop())), arg);
457             case IF_ACMPEQ:                             return new Branch(    new Eq(pop(), pop()),  arg);
458             case IF_ACMPNE:                             return new Branch(new Not(new Eq(pop(), pop())), arg);
459             case ATHROW:                                return new Throw(pop());
460             case GOTO:                                  return new Branch(new Label(i1));
461             case JSR:                                   return new JSR(new Label(i1));
462             case RET:                                   return new RET();
463             case RETURN:                                return new Return();
464             case IRETURN: case LRETURN: case FRETURN: case DRETURN: case ARETURN:
465                 return new Return(pop());
466
467                 // Array manipulations //////////////////////////////////////////////////////////////////////////////
468
469             case IALOAD:  case LALOAD:  case FALOAD:  case DALOAD:  case AALOAD:
470             case BALOAD:  case CALOAD:  case SALOAD:                                  push(new ArrayGet(pop(), pop())); return null;
471             case IASTORE: case LASTORE: case FASTORE: case DASTORE: case AASTORE:
472             case BASTORE: case CASTORE: case SASTORE:                                 return new ArrayPut(pop(), pop(), pop());
473
474                 // Invocation //////////////////////////////////////////////////////////////////////////////
475
476             case INVOKEVIRTUAL: case INVOKESPECIAL: case INVOKESTATIC: case INVOKEINTERFACE: {
477                 Type.Class.Method method = (Type.Class.Method)arg;
478                 Expr args[] = new Expr[method.getNumArgs()];
479                 for(int i=0; i<args.length; i++) args[args.length-i-1] = pop();
480                 switch(op) {
481                     case INVOKEVIRTUAL:   return push(new InvokeVirtual(method, args, pop()));
482                     case INVOKEINTERFACE: return push(new InvokeInterface(method, args, pop()));
483                     case INVOKESPECIAL:   return push(new InvokeSpecial(method, args, pop()));
484                     case INVOKESTATIC:    return push(new InvokeStatic(method, args));
485                 }
486             }
487
488                 // Field Access //////////////////////////////////////////////////////////////////////////////
489
490             case GETSTATIC:         push(new Get((Type.Class.Field)arg, null)); return null;
491             case PUTSTATIC:         return new Put((Type.Class.Field)arg, pop(), null);
492             case GETFIELD:          push(new Get((Type.Class.Field)arg, pop())); return null;
493             case PUTFIELD:          return new Put((Type.Class.Field)arg, pop(), pop());
494
495                 // Allocation //////////////////////////////////////////////////////////////////////////////
496
497             case NEW:               push(new New((Type.Class)arg)); return null;
498             case NEWARRAY: {
499                 Type base;
500                 switch(((Integer)arg).intValue()) {
501                     case 4: base = Type.BOOLEAN; break;
502                     case 5: base = Type.CHAR; break;
503                     case 6: base = Type.FLOAT; break;
504                     case 7: base = Type.DOUBLE; break;
505                     case 8: base = Type.BYTE; break;
506                     case 9: base = Type.SHORT; break;
507                     case 10: base = Type.INT; break;
508                     case 11: base = Type.LONG; break;
509                     default: throw new IllegalStateException("invalid array type");
510                 }
511                 push(new NewArray(base.makeArray(),pop()));
512                 return null;
513             }
514             case ANEWARRAY:         push(new NewArray(((Type.Ref)arg).makeArray(), pop())); return null;
515             case MULTIANEWARRAY: {
516                 MethodGen.MultiANewArray mana = (MethodGen.MultiANewArray) arg;
517                 Expr[] dims = new Expr[mana.dims];
518                 for(int i=0;i<dims.length;i++) dims[i] = pop();
519                 push(new NewArray(mana.type, dims));
520                 return null;
521             }
522             case ARRAYLENGTH:       push(new ArrayLength(pop())); return null;
523
524                 // Runtime Type information //////////////////////////////////////////////////////////////////////////////
525
526             case CHECKCAST:         push(new Cast(pop(), (Type)arg)); return null;
527             case INSTANCEOF:        push(new InstanceOf(pop(), (Type)arg)); return null;
528
529             case LDC: case LDC_W: case LDC2_W: push(new Constant(arg)); return null;
530
531             case BIPUSH:    push(new Constant(i1));  // FIXME return null;
532             case SIPUSH:    push(new Constant(i1));  // FIXME return null;
533
534             case TABLESWITCH:    new Branch((MethodGen.Switch)arg);
535             case LOOKUPSWITCH:   new Branch((MethodGen.Switch)arg);
536
537                 /*
538             case MONITORENTER:   Op.monitorEnter(pop());
539             case MONITOREXIT:    Op.monitorExit(pop());
540                 */
541
542             case DUP_X1:         throw new Error("unimplemented");
543             case DUP_X2:         throw new Error("unimplemented");
544             case DUP2_X1:         throw new Error("unimplemented");
545             case DUP2_X2:         throw new Error("unimplemented");
546             case LCMP:         throw new Error("unimplemented");
547             case FCMPL:         throw new Error("unimplemented");
548             case FCMPG:         throw new Error("unimplemented");
549             case DCMPL:         throw new Error("unimplemented");
550             case DCMPG:         throw new Error("unimplemented");
551             case GOTO_W:         throw new Error("unimplemented");
552             case JSR_W:         throw new Error("unimplemented");
553             default:          throw new Error("unhandled");
554         }
555     }
556
557     public static void main(String[] args) throws Exception {
558         InputStream is = Class.forName(args[0]).getClassLoader().getResourceAsStream(args[0].replace('.', '/')+".class");
559         System.out.println(new ClassFile(new DataInputStream(is), true).toString());
560     }
561 }