X-Git-Url: http://git.megacz.com/?p=org.ibex.classgen.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fclassgen%2FType.java;h=cff979291edb8e143f26ddbff57a7a9743f471b2;hp=ee9ebc9f3ed422b9f681c4d010c2a407b4a81366;hb=9271b834f0f1ca988f0374cad6a8cc0cce274ee0;hpb=41323af6deb26dfdadae287cfc79121837175627 diff --git a/src/org/ibex/classgen/Type.java b/src/org/ibex/classgen/Type.java index ee9ebc9..cff9792 100644 --- a/src/org/ibex/classgen/Type.java +++ b/src/org/ibex/classgen/Type.java @@ -3,96 +3,150 @@ package org.ibex.classgen; import java.util.StringTokenizer; import java.util.Hashtable; -public class Type implements CGConst { +public abstract class Type implements CGConst { private static Hashtable instances = new Hashtable(); // this has to appear at the top of the file // Public API ////////////////////////////////////////////////////////////////////////////// - public static final Type VOID = new Type("V", "void"); - public static final Type INT = new Type("I", "int"); - public static final Type LONG = new Type("J", "long"); - public static final Type BOOLEAN = new Type("Z", "boolean"); - public static final Type DOUBLE = new Type("D", "double"); - public static final Type FLOAT = new Type("F", "float"); - public static final Type BYTE = new Type("B", "byte"); - public static final Type CHAR = new Type("C", "char"); - public static final Type SHORT = new Type("S", "short"); + public static final Type VOID = new Primitive("V", "void"); + public static final Type INT = new Primitive("I", "int"); + public static final Type LONG = new Primitive("J", "long"); + public static final Type BOOLEAN = new Primitive("Z", "boolean"); + public static final Type DOUBLE = new Primitive("D", "double"); + public static final Type FLOAT = new Primitive("F", "float"); + public static final Type BYTE = new Primitive("B", "byte"); + public static final Type CHAR = new Primitive("C", "char"); + public static final Type SHORT = new Primitive("S", "short"); + public static final Type NULL = new Null(); - public static final Type.Class OBJECT = new Type.Class("java.lang.Object"); - public static final Type.Class STRING = new Type.Class("java.lang.String"); - public static final Type.Class STRINGBUFFER = new Type.Class("java.lang.StringBuffer"); - public static final Type.Class INTEGER_OBJECT = new Type.Class("java.lang.Integer"); - public static final Type.Class DOUBLE_OBJECT = new Type.Class("java.lang.Double"); - public static final Type.Class FLOAT_OBJECT = new Type.Class("java.lang.Float"); + public static final Type.Class OBJECT = Type.Class.instance("java.lang.Object"); + public static final Type.Class STRING = Type.Class.instance("java.lang.String"); + public static final Type.Class STRINGBUFFER = Type.Class.instance("java.lang.StringBuffer"); + public static final Type.Class INTEGER_OBJECT = Type.Class.instance("java.lang.Integer"); + public static final Type.Class DOUBLE_OBJECT = Type.Class.instance("java.lang.Double"); + public static final Type.Class FLOAT_OBJECT = Type.Class.instance("java.lang.Float"); /** A zero element Type[] array (can be passed as the "args" param when a method takes no arguments */ public static final Type[] NO_ARGS = new Type[0]; - /** guarantee: there will only be one instance of Type for a given descriptor ==> equals() and == are interchangeable */ - public static Type instance(String d) { + /** + * A "descriptor" is the classfile-mangled text representation of a type (see JLS section 4.3) + * guarantee: there will only be one instance of Type for a given descriptor ==> equals() and == are interchangeable + */ + public static Type fromDescriptor(String d) { Type ret = (Type)instances.get(d); if (ret != null) return ret; - if (d.startsWith("[")) return new Type.Array(instance(d.substring(1))); + if (d.startsWith("[")) return new Type.Array(Type.fromDescriptor(d.substring(1))); return new Type.Class(d); } - public String toString() { return toString; } - public String debugToString() { return toString; } public final String getDescriptor() { return descriptor; } - public int hashCode() { return descriptor.hashCode(); } - public boolean equals(java.lang.Object o) { return this==o; } - public Type.Array makeArray() { return (Type.Array)instance("["+descriptor); } + public Type.Array makeArray() { return (Type.Array)Type.fromDescriptor("["+descriptor); } public Type.Array makeArray(int i) { return i==0 ? (Type.Array)this : makeArray().makeArray(i-1); } public Type.Ref asRef() { throw new RuntimeException("attempted to use "+this+" as a Type.Ref, which it is not"); } public Type.Class asClass() { throw new RuntimeException("attempted to use "+this+" as a Type.Class, which it is not"); } public Type.Array asArray() { throw new RuntimeException("attempted to use "+this+" as a Type.Array, which it is not"); } - public boolean isPrimitive() { return !isRef(); } + public boolean isPrimitive() { return false; } public boolean isRef() { return false; } public boolean isClass() { return false; } public boolean isArray() { return false; } + public static Type unify(Type t1, Type t2) { + if(t1 == Type.NULL) return t2; + if(t2 == Type.NULL) return t1; + if((t1 == Type.INT && t2 == Type.BOOLEAN) || (t2 == Type.INT & t1 == Type.BOOLEAN)) return Type.BOOLEAN; + if(t1 == t2) return t1; + // FIXME: This needs to do a lot more (subclasses, etc) + // it probably should be in Context.java + return null; + } + + public static Type fromArraySpec(int i) { + switch(i) { + case 4: return Type.BOOLEAN; + case 5: return Type.CHAR; + case 6: return Type.FLOAT; + case 7: return Type.DOUBLE; + case 8: return Type.BYTE; + case 9: return Type.SHORT; + case 10: return Type.INT; + case 11: return Type.LONG; + default: throw new IllegalStateException("invalid array type"); + } + } + // Protected/Private ////////////////////////////////////////////////////////////////////////////// protected final String descriptor; - protected final String toString; - protected Type(String descriptor) { this(descriptor, descriptor); } - protected Type(String descriptor, String humanReadable) { - this.toString = humanReadable; - instances.put(this.descriptor = descriptor, this); + + protected Type(String descriptor) { + this.descriptor = descriptor; + instances.put(descriptor, this); + } + + public static class Null extends Type { + protected Null() { super(""); } // not really correct.... } - public static class Ref extends Type { + public static class Primitive extends Type { + private String humanReadable; + Primitive(String descriptor, String humanReadable) { + super(descriptor); + this.humanReadable = humanReadable; + } + public String toString() { return humanReadable; } + public boolean isPrimitive() { return true; } + } + + public abstract static class Ref extends Type { protected Ref(String descriptor) { super(descriptor); } - protected Ref(String descriptor, String humanReadable) { super(descriptor, humanReadable); } + public abstract String toString(); public Type.Ref asRef() { return this; } public boolean isRef() { return true; } } public static class Array extends Type.Ref { - protected Array(Type t) { super("[" + t.getDescriptor(), t.toString() + "[]"); } + public final Type base; + protected Array(Type t) { super("[" + t.getDescriptor()); base = t; } public Type.Array asArray() { return this; } public boolean isArray() { return true; } - public int dimension() { return getDescriptor().lastIndexOf('['); } - public Type getElementType() { return Type.instance(getDescriptor().substring(0, getDescriptor().length()-1)); } + public String toString() { return base.toString() + "[]"; } + public Type getElementType() { return base; } } public static class Class extends Type.Ref { - protected Class(String s) { super(_initHelper(s), _initHelper2(s)); } + protected Class(String s) { super(_initHelper(s)); } public Type.Class asClass() { return this; } public boolean isClass() { return true; } - public String getShortName() { return toString.substring(toString.lastIndexOf('.')+1); } + public static Type.Class instance(String className) { + return (Type.Class)Type.fromDescriptor("L"+className.replace('.', '/')+";"); } + public boolean extendsOrImplements(Type.Class c, Context cx) { + if (this==c) return true; + if (this==OBJECT) return false; + ClassFile cf = cx.resolve(getName()); + if (cf==null) { + System.err.println("warning: could not resolve class " + getName()); + return false; + } + if (cf.superType == c) return true; + for(int i=0; i"); } + public boolean isClassInitializer() { return getName().equals(""); } + + public String toString() { StringBuffer sb = new StringBuffer(); if (name.equals("")) sb.append("static "); else { if (name.equals("")) sb.append(Class.this.getShortName()); else - sb.append(returnType).append(" ").append(name); + sb.append(returnType.toString()).append(" ").append(name); sb.append("("); for(int i=0; i 0) { sb.append("throws"); for(java.util.Enumeration e = thrownExceptions.keys();e.hasMoreElements();) - sb.append(" ").append(((Type.Class)e.nextElement()).debugToString()).append(","); + sb.append(" ").append(((Type.Class)e.nextElement()).toString()).append(","); sb.setLength(sb.length()-1); sb.append(" "); } @@ -211,6 +304,21 @@ public class Type implements CGConst { } } } + public int hashCode() { + int h = returnType.hashCode() ^ name.hashCode() ^ getDeclaringClass().hashCode(); + for(int i=0;i