// ino.module.RelOp.8610.package package mycompiler.myoperator; // ino.end // ino.module.RelOp.8610.import import java.util.HashMap; import java.util.Hashtable; import java.util.Iterator; import java.util.Vector; import typinferenz.assumptions.TypeAssumptions; import typinferenz.exceptions.DebugException; import mycompiler.mybytecode.ClassFile; import mycompiler.mybytecode.CodeAttribute; import mycompiler.myexception.CTypeReconstructionException; import mycompiler.myexception.JVMCodeException; import mycompiler.mystatement.Binary; import mycompiler.mytype.Pair; import mycompiler.mytype.RefType; import mycompiler.mytype.Type; import mycompiler.mytypereconstruction.CSupportData; import mycompiler.mytypereconstruction.CTriple; import mycompiler.mytypereconstruction.set.CSubstitutionSet; import mycompiler.mytypereconstruction.set.CTripleSet; import mycompiler.mytypereconstruction.set.CTypeAssumptionSet; import mycompiler.mytypereconstruction.unify.Unify; // ino.end // ino.class.RelOp.24299.declaration public abstract class RelOp extends Operator // ino.end // ino.class.RelOp.24299.body { // ino.method.RelOp.24303.definition public RelOp(int offset, int variableLength) // ino.end // ino.method.RelOp.24303.body { super(offset, variableLength); } // ino.end // ino.method.if_codegen.24306.declaration public abstract void if_codegen(ClassFile classfile, CodeAttribute code, String type, boolean not) throws JVMCodeException; // ino.end protected Hashtable getOperatorTypes() { Hashtable types = new Hashtable(); types.put(new RefType("java.lang.Integer",-1), new RefType("java.lang.Boolean",-1)); types.put(new RefType("java.lang.Double",-1), new RefType("java.lang.Boolean",-1)); types.put(new RefType("java.lang.Float",-1), new RefType("java.lang.Boolean",-1)); types.put(new RefType("java.lang.Long",-1), new RefType("java.lang.Boolean",-1)); return types; } @Override public HashMap getReturnTypes(TypeAssumptions ass) { HashMap ret = new HashMap(); ret.put(ass.getTypeFor(new RefType("java.lang.Boolean",-1)), ass.getTypeFor(new RefType("java.lang.Integer",-1))); ret.put(ass.getTypeFor(new RefType("java.lang.Boolean",-1)), ass.getTypeFor(new RefType("java.lang.Double",-1))); ret.put(ass.getTypeFor(new RefType("java.lang.Boolean",-1)), ass.getTypeFor(new RefType("java.lang.Float",-1))); ret.put(ass.getTypeFor(new RefType("java.lang.Boolean",-1)), ass.getTypeFor(new RefType("java.lang.Long",-1))); return ret; } } // ino.end