// ino.module.LocalOrFieldVar.8637.package package de.dhbwstuttgart.syntaxtree.statement; // ino.end // ino.module.LocalOrFieldVar.8637.import import java.util.Enumeration; import java.util.Hashtable; import java.util.Vector; import org.apache.log4j.Logger; import de.dhbwstuttgart.bytecode.ClassFile; import de.dhbwstuttgart.bytecode.CodeAttribute; import de.dhbwstuttgart.bytecode.JVMCode; import de.dhbwstuttgart.myexception.CTypeReconstructionException; import de.dhbwstuttgart.myexception.JVMCodeException; import de.dhbwstuttgart.myexception.SCExcept; import de.dhbwstuttgart.myexception.SCStatementException; import de.dhbwstuttgart.syntaxtree.Class; import de.dhbwstuttgart.syntaxtree.SyntaxTreeNode; import de.dhbwstuttgart.syntaxtree.misc.UsedId; import de.dhbwstuttgart.syntaxtree.type.GenericTypeVar; import de.dhbwstuttgart.syntaxtree.type.RefType; import de.dhbwstuttgart.syntaxtree.type.Type; import de.dhbwstuttgart.syntaxtree.type.TypePlaceholder; import de.dhbwstuttgart.typeinference.ConstraintsSet; import de.dhbwstuttgart.typeinference.FreshTypeVariable; import de.dhbwstuttgart.typeinference.JavaCodeResult; import de.dhbwstuttgart.typeinference.ResultSet; import de.dhbwstuttgart.typeinference.SingleConstraint; import de.dhbwstuttgart.typeinference.assumptions.TypeAssumptions; import de.dhbwstuttgart.typeinference.exceptions.TypeinferenceException; import de.dhbwstuttgart.typeinference.unify.CSubstitutionSet; import sun.reflect.generics.reflectiveObjects.NotImplementedException; // ino.class.LocalOrFieldVar.25503.declaration public class LocalOrFieldVar extends Expr // ino.end // ino.class.LocalOrFieldVar.25503.body { // ino.attribute.parserlog.25507.declaration protected static Logger parserlog = Logger.getLogger("parser"); // ino.end // ino.method.LocalOrFieldVar.25510.definition public LocalOrFieldVar(int offset, int variableLength) // ino.end // ino.method.LocalOrFieldVar.25510.body { super(offset,variableLength); } // ino.end // ino.method.LocalOrFieldVar.25513.definition public LocalOrFieldVar(String n, int offset) // ino.end // ino.method.LocalOrFieldVar.25513.body { super(offset,n.length()); usedid = new UsedId(offset); usedid.set_Name(n); } // ino.end // ino.method.set_UsedId.25519.definition public void set_UsedId(UsedId u) // ino.end // ino.method.set_UsedId.25519.body { this.usedid=u; } // ino.end // ino.method.get_Name.25522.definition public String get_Name() // ino.end // ino.method.get_Name.25522.body { return usedid.get_Name_1Element(); } // ino.end // ino.method.codegen.25525.definition public void codegen(ClassFile classfile, CodeAttribute code, Vector paralist) throws JVMCodeException // ino.end // ino.method.codegen.25525.body { Vector name_vector = get_Name_Vector(); Vector type_vector = get_Type_Vector(); String local_name = null; String class_name = null; String type = null; for(int i=0; i < name_vector.size(); i++) { local_name = (String)name_vector.elementAt(i); try {// TEST SCJU. ArrayIndexoutofBounds umgehen! type = JVMCode.get_codegen_Type((String)type_vector.elementAt(i), paralist); } catch (Throwable e) {type = null; } int index = code.get_indexOf_Var(local_name); if(index != -1) { // LocalVar try { String local_type = code.get_TypeOf_Var(local_name).getName().toString(); code.add_code(JVMCode.nload_n(local_type, index)); } catch(JVMCodeException e) { // out of nstore_n String local_type = code.get_TypeOf_Var(local_name).getName().toString(); code.add_code(JVMCode.nload(local_type)); code.add_code_byte((byte)index); } } else { // FieldVar code.add_code(JVMCode.aload_0); code.add_code(JVMCode.getfield); code.add_code_short(classfile.add_field_ref(local_name, class_name, type)); } try { // TEST SCJU. ArrayIndexoutofBounds umgehen! class_name = (String)type_vector.elementAt(i); } catch (Throwable e) { } } // Falls noetig, Unboxing auf primitiven Typ! if (this.getType() instanceof RefType) { RefType rt = (RefType) this.getType(); if (! rt.getPrimitiveFlag()) return; if (rt.getName().toString().equalsIgnoreCase("java.lang.Integer")) { // Int Unboxen code.add_code(JVMCode.invokevirtual); code.add_code_short(classfile.add_method_ref("java/lang/Integer", "intValue", "()I")); } } } // ino.end // ino.method.toString.25534.defdescription type=javadoc /** *
Author: Martin Pl�micke * @return */ // ino.end // ino.method.toString.25534.definition public String toString() // ino.end // ino.method.toString.25534.body { if(getType()==null)return usedid.toString(); return usedid.toString() + ": " + getType().toString(); } // ino.end // ino.method.wandleRefTypeAttributes2GenericAttributes.25537.definition public void wandleRefTypeAttributes2GenericAttributes(Vector paralist, Vector genericMethodParameters) // ino.end // ino.method.wandleRefTypeAttributes2GenericAttributes.25537.body { } // ino.end @Override public ConstraintsSet TYPEExpr(TypeAssumptions assumptions) { ConstraintsSet ret = new ConstraintsSet(); //gibt es eine Assumption für den die LocalOrFieldVar-Variablen, dann folgendes ausführen: Type thisTypeAssumption = assumptions.getVarType(this.get_Name(), this.getParentClass()); if(thisTypeAssumption == null)throw new TypeinferenceException("Eine Variable "+this.get_Name()+" ist in den Assumptions nicht vorhanden",this); this.setType(thisTypeAssumption); //ret.add(new Constraint(thisTypeAssumption, this.getTypeVariable())); return ret; } public String getTypeInformation(){ return this.getType()+" "+this.get_Name(); } @Override public JavaCodeResult printJavaCode(ResultSet resultSet) { return new JavaCodeResult(this.get_Name()); } @Override public Vector getChildren() { Vector ret = new Vector(); return ret; } } // ino.end