X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=Repair%2FRepairCompiler%2FMCC%2FIR%2FRepairGenerator.java;h=5d64040d50073b70b3df9c25d92beefb511a3ed7;hb=fcb08dbb9564da3732dd8b0cbf0088d0f9826541;hp=ab4d0262f594381e9485342117243dde01942e5e;hpb=5206adad89e8c25fe06bf649840920337f1c2ad1;p=repair.git diff --git a/Repair/RepairCompiler/MCC/IR/RepairGenerator.java b/Repair/RepairCompiler/MCC/IR/RepairGenerator.java index ab4d026..5d64040 100755 --- a/Repair/RepairCompiler/MCC/IR/RepairGenerator.java +++ b/Repair/RepairCompiler/MCC/IR/RepairGenerator.java @@ -25,7 +25,6 @@ public class RepairGenerator { HashSet togenerate; static boolean DEBUG=false; Cost cost; - Sources sources; ModelRuleDependence mrd; public RepairGenerator(State state, Termination t) { @@ -40,7 +39,6 @@ public class RepairGenerator { togenerate.removeAll(removed); GraphNode.computeclosure(togenerate,removed); cost=new Cost(); - sources=new Sources(state); mrd=ModelRuleDependence.doAnalysis(state); Repair.repairgenerator=this; } @@ -88,12 +86,20 @@ public class RepairGenerator { generate_call(); generate_start(); generate_rules(); + if (!Compiler.REPAIR||Compiler.GENERATEDEBUGPRINT) { + generate_print(); + } generate_checks(); generate_teardown(); CodeWriter crhead = new StandardCodeWriter(this.outputhead); CodeWriter craux = new StandardCodeWriter(this.outputaux); crhead.outputline("};"); craux.outputline("}"); + + if (Compiler.GENERATEDEBUGHOOKS) { + crhead.outputline("void debughook();"); + craux.outputline("void debughook() {}"); + } generatetypechecks(false); generate_computesizes(); generatetypechecks(true); @@ -116,6 +122,8 @@ public class RepairGenerator { int count=0; CodeWriter crhead = new StandardCodeWriter(outputhead); CodeWriter craux = new StandardCodeWriter(outputaux); + RelationDescriptor.prefix = "model->"; + SetDescriptor.prefix = "model->"; /* Rewrite globals */ @@ -145,6 +153,9 @@ public class RepairGenerator { } craux.startblock(); craux.outputline("int maybe=0;"); + if (Compiler.GENERATEINSTRUMENT) + craux.outputline("updatecount++;"); + final SymbolTable st = un.getRule().getSymbolTable(); CodeWriter cr = new StandardCodeWriter(outputaux) { public SymbolTable getSymbolTable() { return st; } @@ -176,6 +187,8 @@ public class RepairGenerator { craux.outputline(methodcall); craux.startblock(); craux.outputline("int maybe=0;"); + if (Compiler.GENERATEINSTRUMENT) + craux.outputline("updatecount++;"); final SymbolTable st2 = un.getRule().getSymbolTable(); CodeWriter cr2 = new StandardCodeWriter(outputaux) { public SymbolTable getSymbolTable() { return st2; } @@ -203,12 +216,14 @@ public class RepairGenerator { methodcall+=", int "+fq.getVar().getSafeSymbol(); } } - methodcall+=", "+stleft+", "+stright+", "+stnew; + methodcall+=", int "+stleft+", int "+stright+", int "+stnew; methodcall+=")"; crhead.outputline(methodcall+";"); craux.outputline(methodcall); craux.startblock(); craux.outputline("int maybe=0;"); + if (Compiler.GENERATEINSTRUMENT) + craux.outputline("updatecount++;"); final SymbolTable st2 = un.getRule().getSymbolTable(); CodeWriter cr2 = new StandardCodeWriter(outputaux) { public SymbolTable getSymbolTable() { return st2; } @@ -288,6 +303,7 @@ public class RepairGenerator { }; cr.outputline("void "+name+"_state::computesizes(int *sizearray,int **numele) {"); + cr.outputline("int maybe=0;"); for(int i=0;i0) { + FieldDescriptor fd=((StructureTypeDescriptor)td).get(0); + if (fd.getSymbol().startsWith("_vptr_")) { + String vtable="_ZTV"; + vtable+=td.getSymbol().length(); + vtable+=td.getSymbol(); + craux.outputline("extern void * "+vtable+";"); + } + } + } + } + } craux.outputline(name+"::"+name+"() {"); craux.outputline("// creating hashtables "); @@ -453,9 +487,26 @@ public class RepairGenerator { worklist=VarDescriptor.makeNew("worklist"); goodflag=VarDescriptor.makeNew("goodflag"); repairtable=VarDescriptor.makeNew("repairtable"); + + if (Compiler.GENERATEINSTRUMENT) { + craux.outputline("int updatecount;"); + craux.outputline("int rebuildcount;"); + craux.outputline("int abstractcount;"); + } + crhead.outputline("void doanalysis();"); craux.outputline("void "+name +"_state::doanalysis()"); craux.startblock(); + if (Compiler.TIME) { + craux.outputline("struct timeval _begin_time,_end_time;"); + craux.outputline("gettimeofday(&_begin_time,NULL);"); + } + + if (Compiler.GENERATEINSTRUMENT) { + craux.outputline("updatecount=0;"); + craux.outputline("rebuildcount=0;"); + craux.outputline("abstractcount=0;"); + } craux.outputline("int highmark;"); craux.outputline("initializestack(&highmark);"); craux.outputline("typeobject *typeobject1=gettypeobject();"); @@ -467,11 +518,71 @@ public class RepairGenerator { craux.outputline("while (1)"); craux.startblock(); craux.outputline(name+ " * "+newmodel.getSafeSymbol()+"=new "+name+"();"); + craux.outputline(worklist.getSafeSymbol()+"->reset();"); + if (Compiler.GENERATEINSTRUMENT) + craux.outputline("rebuildcount++;"); } private void generate_teardown() { CodeWriter cr = new StandardCodeWriter(outputaux); cr.endblock(); + if (Compiler.TIME) { + cr.outputline("gettimeofday(&_end_time,NULL);"); + cr.outputline("printf(\"time=%ld uS\\n\",(_end_time.tv_sec-_begin_time.tv_sec)*1000000+_end_time.tv_usec-_begin_time.tv_usec)"); + } + + if (Compiler.GENERATEINSTRUMENT) { + cr.outputline("printf(\"updatecount=%d\\n\",updatecount);"); + cr.outputline("printf(\"rebuildcount=%d\\n\",rebuildcount);"); + cr.outputline("printf(\"abstractcount=%d\\n\",abstractcount);"); + } + + } + + private void generate_print() { + + final SymbolTable st = new SymbolTable(); + + CodeWriter cr = new StandardCodeWriter(outputaux) { + public SymbolTable getSymbolTable() { return st; } + }; + + cr.outputline("// printing sets!"); + cr.outputline("printf(\"\\n\\nPRINTING SETS AND RELATIONS\\n\");"); + + Iterator setiterator = state.stSets.descriptors(); + while (setiterator.hasNext()) { + SetDescriptor sd = (SetDescriptor) setiterator.next(); + if (sd.getSymbol().equals("int") || sd.getSymbol().equals("token")) { + continue; + } + + String setname = sd.getSafeSymbol(); + + cr.startblock(); + cr.outputline("// printing set " + setname); + cr.outputline("printf(\"\\nPrinting set " + sd.getSymbol() + " - %d elements \\n\", " + setname + "_hash->count());"); + cr.outputline("SimpleIterator __setiterator;"); + cr.outputline("" + setname + "_hash->iterator(__setiterator);"); + cr.outputline("while (__setiterator.hasNext())"); + cr.startblock(); + cr.outputline("int __setval = (int) __setiterator.next();"); + + TypeDescriptor td = sd.getType(); + if (td instanceof StructureTypeDescriptor) { + StructureTypeDescriptor std = (StructureTypeDescriptor) td; + VarDescriptor vd = new VarDescriptor ("__setval", "__setval", td, false); + std.generate_printout(cr, vd); + } else { // Missing type descriptor or reserved type, just print int + cr.outputline("printf(\"<%d> \", __setval);"); + } + + + cr.endblock(); + cr.endblock(); + } + + cr.outputline("printf(\"\\n\\n------------------- END PRINTING\\n\");"); } Set ruleset=null; @@ -488,15 +599,54 @@ public class RepairGenerator { Iterator iterator_rs = ruleset.iterator(); while (iterator_rs.hasNext()) { Rule rule = (Rule) iterator_rs.next(); + if (rule.getnogenerate()) + continue; { final SymbolTable st = rule.getSymbolTable(); CodeWriter cr = new StandardCodeWriter(outputaux) { public SymbolTable getSymbolTable() { return st; } }; + InvariantValue ivalue=new InvariantValue(); + cr.setInvariantValue(ivalue); + cr.outputline("// build " +escape(rule.toString())); cr.startblock(); cr.outputline("int maybe=0;"); - ListIterator quantifiers = rule.quantifiers(); + + Expr ruleexpr=rule.getGuardExpr(); + HashSet invariantvars=new HashSet(); + Set invariants=ruleexpr.findInvariants(invariantvars); + + if ((ruleexpr instanceof BooleanLiteralExpr)&& + ((BooleanLiteralExpr)ruleexpr).getValue()) { + if (rule.getInclusion() instanceof SetInclusion) { + invariants.addAll(((SetInclusion)rule.getInclusion()).getExpr().findInvariants(invariantvars)); + } else if (rule.getInclusion() instanceof RelationInclusion) { + invariants.addAll(((RelationInclusion)rule.getInclusion()).getLeftExpr().findInvariants(invariantvars)); + invariants.addAll(((RelationInclusion)rule.getInclusion()).getRightExpr().findInvariants(invariantvars)); + } + } + ListIterator quantifiers = rule.quantifiers(); + while (quantifiers.hasNext()) { + Quantifier quantifier = (Quantifier) quantifiers.next(); + if (quantifier instanceof ForQuantifier) { + ForQuantifier fq=(ForQuantifier)quantifier; + invariants.addAll(fq.lower.findInvariants(invariantvars)); + invariants.addAll(fq.upper.findInvariants(invariantvars)); + } + } + + for(Iterator invit=invariants.iterator();invit.hasNext();) { + Expr invexpr=(Expr)invit.next(); + VarDescriptor tmpvd=VarDescriptor.makeNew("tmpvar"); + VarDescriptor maybevd=VarDescriptor.makeNew("maybevar"); + invexpr.generate(cr,tmpvd); + cr.outputline("int "+maybevd.getSafeSymbol()+"=maybe;"); + cr.outputline("maybe=0;"); + ivalue.assignPair(invexpr,tmpvd,maybevd); + } + + quantifiers = rule.quantifiers(); while (quantifiers.hasNext()) { Quantifier quantifier = (Quantifier) quantifiers.next(); quantifier.generate_open(cr); @@ -628,18 +778,24 @@ public class RepairGenerator { } private void generate_checks() { - /* do constraint checks */ - Vector constraints = state.vConstraints; - - for (int i = 0; i < constraints.size(); i++) { - Constraint constraint = (Constraint) constraints.elementAt(i); + Iterator i; + if (Compiler.REPAIR) + i=termination.constraintdependence.computeOrdering().iterator(); + else + i=state.vConstraints.iterator(); + for (; i.hasNext();) { + Constraint constraint; + if (Compiler.REPAIR) + constraint= (Constraint) ((GraphNode)i.next()).getOwner(); + else + constraint=(Constraint)i.next(); { final SymbolTable st = constraint.getSymbolTable(); - CodeWriter cr = new StandardCodeWriter(outputaux) { - public SymbolTable getSymbolTable() { return st; } - }; + CodeWriter cr = new StandardCodeWriter(outputaux); + cr.pushSymbolTable(constraint.getSymbolTable()); + cr.outputline("// checking " + escape(constraint.toString())); cr.startblock(); @@ -660,25 +816,29 @@ public class RepairGenerator { cr.outputline("if (maybe)"); cr.startblock(); cr.outputline("printf(\"maybe fail " + escape(constraint.toString()) + ". \\n\");"); - cr.outputline("exit(1);"); + //cr.outputline("exit(1);"); cr.endblock(); cr.outputline("else if (!" + constraintboolean.getSafeSymbol() + ")"); cr.startblock(); - if (!Compiler.REPAIR) + if (!Compiler.REPAIR||Compiler.GENERATEDEBUGHOOKS) cr.outputline("printf(\"fail " + escape(constraint.toString()) + ". \\n\");"); - else { + + if (Compiler.REPAIR) { /* Do repairs */ /* Build new repair table */ cr.outputline("if ("+repairtable.getSafeSymbol()+")"); cr.outputline("delete "+repairtable.getSafeSymbol()+";"); cr.outputline(repairtable.getSafeSymbol()+"=new RepairHash();"); - + if (Compiler.GENERATEDEBUGHOOKS) + cr.outputline("debughook();"); /* Compute cost of each repair */ VarDescriptor mincost=VarDescriptor.makeNew("mincost"); VarDescriptor mincostindex=VarDescriptor.makeNew("mincostindex"); - DNFConstraint dnfconst=constraint.dnfconstraint; + Vector dnfconst=new Vector(); + dnfconst.addAll((Set)termination.conjunctionmap.get(constraint)); + if (dnfconst.size()<=1) { cr.outputline("int "+mincostindex.getSafeSymbol()+"=0;"); } @@ -686,8 +846,8 @@ public class RepairGenerator { cr.outputline("int "+mincostindex.getSafeSymbol()+";"); boolean first=true; for(int j=0;jget("+leftside.getSafeSymbol()+","+rightside.getSafeSymbol()+");"); } else { - expr.getLeftExpr().generate(cr,rightside); + ((RelationExpr)expr.getLeftExpr()).getExpr().generate(cr,rightside); expr.getRightExpr().generate(cr,newvalue); cr.outputline(rd.getDomain().getType().getGenerateType().getSafeSymbol()+" "+leftside.getSafeSymbol()+";"); - cr.outputline(rd.getSafeSymbol()+"_hashinv->get("+leftside.getSafeSymbol()+","+leftside.getSafeSymbol()+");"); + cr.outputline(rd.getSafeSymbol()+"_hashinv->get("+rightside.getSafeSymbol()+","+leftside.getSafeSymbol()+");"); } - if (negated) - if (opcode==Opcode.GT) { - opcode=Opcode.LE; - } else if (opcode==Opcode.GE) { - opcode=Opcode.LT; - } else if (opcode==Opcode.LT) { - opcode=Opcode.GE; - } else if (opcode==Opcode.LE) { - opcode=Opcode.GT; - } else if (opcode==Opcode.EQ) { - opcode=Opcode.NE; - } else if (opcode==Opcode.NE) { - opcode=Opcode.EQ; - } else { - throw new Error("Unrecognized Opcode"); - } + + opcode=Opcode.translateOpcode(negated,opcode); if (opcode==Opcode.GT) { cr.outputline(newvalue.getSafeSymbol()+"++;"); @@ -878,6 +1076,35 @@ public class RepairGenerator { /* Do abstract repairs */ if (usageimage) { cr.outputline(rd.getSafeSymbol()+"_hash->remove("+leftside.getSafeSymbol()+","+rightside.getSafeSymbol()+");"); + } + if (usageinvimage) { + cr.outputline(rd.getSafeSymbol()+"_hashinv->remove("+rightside.getSafeSymbol()+","+leftside.getSafeSymbol()+");"); + } + + if (needremoveloop) { + if (!inverted) { + cr.outputline("if ("+rd.getSafeSymbol()+"_hash->contains("+leftside.getSafeSymbol()+")) {"); + } else { + cr.outputline("if ("+rd.getSafeSymbol()+"_hashinv->contains("+rightside.getSafeSymbol()+")) {"); + } + for(int i=0;iaddrelation("+rd.getNum()+","+r.getNum()+","+leftside.getSafeSymbol()+","+rightside.getSafeSymbol()+",(int) &"+name+");"); + } + } + } + } + cr.outputline("continue;"); + cr.outputline("}"); + } + + if (usageimage) { if (!inverted) { cr.outputline(rd.getSafeSymbol()+"_hash->add("+leftside.getSafeSymbol()+","+newvalue.getSafeSymbol()+");"); } else { @@ -885,7 +1112,6 @@ public class RepairGenerator { } } if (usageinvimage) { - cr.outputline(rd.getSafeSymbol()+"_hashinv->remove("+rightside.getSafeSymbol()+","+leftside.getSafeSymbol()+");"); if (!inverted) { cr.outputline(rd.getSafeSymbol()+"_hashinv->add("+newvalue.getSafeSymbol()+","+leftside.getSafeSymbol()+");"); } else { @@ -893,7 +1119,7 @@ public class RepairGenerator { } } /* Do concrete repairs */ - if (munmodify!=null) { + if (munmodify!=null&&(!ar.mayNeedFunctionEnforcement(state))||(munadd==null)||(ar.needsRemoves(state)&&(munremove==null))) { for(int i=0;iaddrelation("+rd.getNum()+","+r.getNum()+","+leftside.getSafeSymbol()+","+rightside.getSafeSymbol()+",(int) &"+name+");"); + if (ar.needsRemoves(state)) + for(int i=0;iaddrelation("+rd.getNum()+","+r.getNum()+","+leftside.getSafeSymbol()+","+rightside.getSafeSymbol()+",(int) &"+name+");"); + } } } } - } /* Now do addition */ UpdateNode un=munadd.getUpdate(0); String name=(String)updatenames.get(un); @@ -932,31 +1158,18 @@ public class RepairGenerator { cr.outputline(name+"(this,"+newmodel.getSafeSymbol()+","+repairtable.getSafeSymbol()+","+newvalue.getSafeSymbol()+","+rightside.getSafeSymbol()+");"); } } + if (needremoveloop) { + cr.outputline("break;"); + cr.outputline("}"); + } } public void generatesizerepair(Conjunction conj, DNFPredicate dpred, CodeWriter cr) { ExprPredicate ep=(ExprPredicate)dpred.getPredicate(); OpExpr expr=(OpExpr)ep.expr; Opcode opcode=expr.getOpcode(); - { - boolean negated=dpred.isNegated(); - if (negated) - if (opcode==Opcode.GT) { - opcode=Opcode.LE; - } else if (opcode==Opcode.GE) { - opcode=Opcode.LT; - } else if (opcode==Opcode.LT) { - opcode=Opcode.GE; - } else if (opcode==Opcode.LE) { - opcode=Opcode.GT; - } else if (opcode==Opcode.EQ) { - opcode=Opcode.NE; - } else if (opcode==Opcode.NE) { - opcode=Opcode.EQ; - } else { - throw new Error("Unrecognized Opcode"); - } - } + opcode=Opcode.translateOpcode(dpred.isNegated(),opcode); + MultUpdateNode munremove; MultUpdateNode munadd; @@ -1004,6 +1217,12 @@ public class RepairGenerator { } else { throw new Error("Unrecognized Opcode"); } + +// In some cases the analysis has determined that generating removes +// is unnecessary + if (generateremove&&munremove==null) + generateremove=false; + Descriptor d=ep.getDescriptor(); if (generateremove) { cr.outputline("for(;"+change.getSafeSymbol()+"<0;"+change.getSafeSymbol()+"++)"); @@ -1013,11 +1232,11 @@ public class RepairGenerator { VarDescriptor rightvar=VarDescriptor.makeNew("rightvar"); if (d instanceof RelationDescriptor) { if (ep.inverted()) { - rightvar=((ImageSetExpr)((SizeofExpr)((OpExpr)expr).left).setexpr).getVar(); + ((ImageSetExpr)((SizeofExpr)expr.left).setexpr).generate_leftside(cr,rightvar); cr.outputline("int "+leftvar.getSafeSymbol()+";"); cr.outputline(d.getSafeSymbol()+"_hashinv->get((int)"+rightvar.getSafeSymbol()+","+leftvar.getSafeSymbol()+");"); } else { - leftvar=((ImageSetExpr)((SizeofExpr)((OpExpr)expr).left).setexpr).getVar(); + ((ImageSetExpr)((SizeofExpr)expr.left).setexpr).generate_leftside(cr,leftvar); cr.outputline("int "+rightvar.getSafeSymbol()+"=0;"); cr.outputline(d.getSafeSymbol()+"_hash->get((int)"+leftvar.getSafeSymbol()+","+rightvar.getSafeSymbol()+");"); } @@ -1056,32 +1275,41 @@ public class RepairGenerator { } cr.endblock(); } + +// In some cases the analysis has determined that generating removes +// is unnecessary + if (generateadd&&munadd==null) + generateadd=false; + if (generateadd) { cr.outputline("for(;"+change.getSafeSymbol()+">0;"+change.getSafeSymbol()+"--)"); cr.startblock(); VarDescriptor newobject=VarDescriptor.makeNew("newobject"); if (d instanceof RelationDescriptor) { - VarDescriptor otherside=((ImageSetExpr)((SizeofExpr)((OpExpr)ep.expr).left).setexpr).vd; + VarDescriptor otherside=VarDescriptor.makeNew("otherside"); + ((ImageSetExpr)((SizeofExpr)expr.left).setexpr).generate_leftside(cr,otherside); + RelationDescriptor rd=(RelationDescriptor)d; - if (sources.relsetSource(rd,!ep.inverted())) { + if (termination.sources.relsetSource(rd,!ep.inverted())) { /* Set Source */ - SetDescriptor sd=sources.relgetSourceSet(rd,!ep.inverted()); + SetDescriptor sd=termination.sources.relgetSourceSet(rd,!ep.inverted()); VarDescriptor iterator=VarDescriptor.makeNew("iterator"); cr.outputline(sd.getType().getGenerateType().getSafeSymbol() +" "+newobject.getSafeSymbol()+";"); - cr.outputline("for("+iterator.getSafeSymbol()+"="+sd.getSafeSymbol()+"_hash->iterator();"+iterator.getSafeSymbol()+".hasNext();)"); + cr.outputline("SimpleIterator "+iterator.getSafeSymbol()+";"); + cr.outputline("for("+sd.getSafeSymbol()+"_hash->iterator("+ iterator.getSafeSymbol() +");"+iterator.getSafeSymbol()+".hasNext();)"); cr.startblock(); if (ep.inverted()) { - cr.outputline("if !"+rd.getSafeSymbol()+"_hashinv->contains("+iterator.getSafeSymbol()+"->key(),"+otherside.getSafeSymbol()+")"); + cr.outputline("if (!"+rd.getSafeSymbol()+"_hashinv->contains("+iterator.getSafeSymbol()+".key(),"+otherside.getSafeSymbol()+"))"); } else { - cr.outputline("if !"+rd.getSafeSymbol()+"_hash->contains("+otherside.getSafeSymbol()+","+iterator.getSafeSymbol()+"->key())"); + cr.outputline("if (!"+rd.getSafeSymbol()+"_hash->contains("+otherside.getSafeSymbol()+","+iterator.getSafeSymbol()+".key()))"); } cr.outputline(newobject.getSafeSymbol()+"="+iterator.getSafeSymbol()+".key();"); - cr.outputline(iterator.getSafeSymbol()+"->next();"); + cr.outputline(iterator.getSafeSymbol()+".next();"); cr.endblock(); - } else if (sources.relallocSource(rd,!ep.inverted())) { + } else if (termination.sources.relallocSource(rd,!ep.inverted())) { /* Allocation Source*/ - sources.relgenerateSourceAlloc(cr,newobject,rd,!ep.inverted()); + termination.sources.relgenerateSourceAlloc(cr,newobject,rd,!ep.inverted()); } else throw new Error("No source for adding to Relation"); if (ep.inverted()) { boolean usageimage=rd.testUsage(RelationDescriptor.IMAGE); @@ -1107,21 +1335,22 @@ public class RepairGenerator { } } else { SetDescriptor sd=(SetDescriptor)d; - if (sources.setSource(sd)) { + if (termination.sources.setSource(sd)) { /* Set Source */ /* Set Source */ - SetDescriptor sourcesd=sources.getSourceSet(sd); + SetDescriptor sourcesd=termination.sources.getSourceSet(sd); VarDescriptor iterator=VarDescriptor.makeNew("iterator"); cr.outputline(sourcesd.getType().getGenerateType().getSafeSymbol() +" "+newobject.getSafeSymbol()+";"); - cr.outputline("for("+iterator.getSafeSymbol()+"="+sourcesd.getSafeSymbol()+"_hash->iterator();"+iterator.getSafeSymbol()+".hasNext();)"); + cr.outputline("SimpleIterator "+iterator.getSafeSymbol()+";"); + cr.outputline("for("+sourcesd.getSafeSymbol()+"_hash->iterator("+iterator.getSafeSymbol()+");"+iterator.getSafeSymbol()+".hasNext();)"); cr.startblock(); - cr.outputline("if !"+sd.getSafeSymbol()+"_hash->contains("+iterator.getSafeSymbol()+"->key())"); + cr.outputline("if (!"+sd.getSafeSymbol()+"_hash->contains("+iterator.getSafeSymbol()+".key()))"); cr.outputline(newobject.getSafeSymbol()+"="+iterator.getSafeSymbol()+".key();"); - cr.outputline(iterator.getSafeSymbol()+"->next();"); + cr.outputline(iterator.getSafeSymbol()+".next();"); cr.endblock(); - } else if (sources.allocSource(sd)) { + } else if (termination.sources.allocSource(sd)) { /* Allocation Source*/ - sources.generateSourceAlloc(cr,newobject,sd); + termination.sources.generateSourceAlloc(cr,newobject,sd); } else throw new Error("No source for adding to Set"); cr.outputline(sd.getSafeSymbol()+"_hash->add("+newobject.getSafeSymbol()+","+newobject.getSafeSymbol()+");"); UpdateNode un=munadd.getUpdate(0); @@ -1162,7 +1391,7 @@ public class RepairGenerator { Rule r=(Rule)state.vRules.get(i); if (r.getInclusion().getTargetDescriptors().contains(rd)) { for(int j=0;j"+rd.getJustSafeSymbol()+"_hash->contains("+leftvar+","+rightvar+"))"); - else - cr.outputline("!"+oldmodel.getSafeSymbol() +"->"+rd.getJustSafeSymbol()+"_hashinv->contains("+rightvar+","+leftvar+"))"); - cr.startblock(); { - /* Adding new item */ - /* Perform safety checks */ - cr.outputline("if ("+repairtable.getSafeSymbol()+"&&"); - cr.outputline(repairtable.getSafeSymbol()+"->containsrelation("+rd.getNum()+","+currentrule.getNum()+","+leftvar+","+rightvar+"))"); + if (Compiler.REPAIR) { + cr.outputline("if ("+oldmodel.getSafeSymbol()+"&&"); + if (usageimage) + cr.outputline("!"+oldmodel.getSafeSymbol() +"->"+rd.getJustSafeSymbol()+"_hash->contains("+leftvar+","+rightvar+"))"); + else + cr.outputline("!"+oldmodel.getSafeSymbol() +"->"+rd.getJustSafeSymbol()+"_hashinv->contains("+rightvar+","+leftvar+"))"); + cr.startblock(); { - /* Have update to call into */ - VarDescriptor mdfyptr=VarDescriptor.makeNew("modifyptr"); - cr.outputline("int "+mdfyptr.getSafeSymbol()+"="+repairtable.getSafeSymbol()+"->getrelation2("+rd.getNum()+","+currentrule.getNum()+","+leftvar+","+rightvar+");"); - - String parttype=""; - for(int i=0;icontainsrelation("+rd.getNum()+","+currentrule.getNum()+","+leftvar+","+rightvar+"))"); + cr.startblock(); { + /* Have update to call into */ + VarDescriptor mdfyptr=VarDescriptor.makeNew("modifyptr"); + VarDescriptor ismdfyptr=VarDescriptor.makeNew("ismodifyptr"); + cr.outputline("int "+ismdfyptr.getSafeSymbol()+"="+repairtable.getSafeSymbol()+"->ismodify("+rd.getNum()+","+currentrule.getNum()+","+leftvar+","+rightvar+");"); - - cr.outputline("void *"+tmpptr.getSafeSymbol()+"="); - cr.outputline("(void *) "+repairtable.getSafeSymbol()+"->getrelation("+rd.getNum()+","+currentrule.getNum()+","+leftvar+","+rightvar+");"); - cr.outputline("if ("+mdfyptr.getSafeSymbol()+")"); - { - cr.startblock(); - cr.outputline("void (*"+funptr.getSafeSymbol()+") ("+name+"_state *,"+name+"*,RepairHash *"+parttype+"int,int,int)="+"(void (*) ("+name+"_state *,"+name+"*,RepairHash *"+parttype+"int,int,int)) "+tmpptr.getSafeSymbol()); - cr.outputline(methodcall+leftvar+", "+rightvar+", "+mdfyptr.getSafeSymbol() +");"); - cr.endblock(); - } - cr.outputline("else "); - { - cr.startblock(); - cr.outputline("void (*"+funptr.getSafeSymbol()+") ("+name+"_state *,"+name+"*,RepairHash *"+parttype+")="+"(void (*) ("+name+"_state *,"+name+"*,RepairHash *"+parttype+")) "+tmpptr.getSafeSymbol()); - cr.outputline(methodcall+");"); - cr.endblock(); + + + String parttype=""; + for(int i=0;igetrelation("+rd.getNum()+","+currentrule.getNum()+","+leftvar+","+rightvar+");"); + cr.outputline("if ("+ismdfyptr.getSafeSymbol()+")"); + { + cr.startblock(); + cr.outputline("int "+mdfyptr.getSafeSymbol()+"="+repairtable.getSafeSymbol()+"->getrelation2("+rd.getNum()+","+currentrule.getNum()+","+leftvar+","+rightvar+");"); + cr.outputline("void (*"+funptr.getSafeSymbol()+") ("+name+"_state *,"+name+"*,RepairHash *"+parttype+",int,int,int)="+"(void (*) ("+name+"_state *,"+name+"*,RepairHash *"+parttype+",int,int,int)) "+tmpptr.getSafeSymbol()+";"); + cr.outputline(methodcall+","+leftvar+", "+rightvar+", "+mdfyptr.getSafeSymbol() +");"); + cr.endblock(); + } + cr.outputline("else "); + { + cr.startblock(); + cr.outputline("void (*"+funptr.getSafeSymbol()+") ("+name+"_state *,"+name+"*,RepairHash *"+parttype+")="+"(void (*) ("+name+"_state *,"+name+"*,RepairHash *"+parttype+")) "+tmpptr.getSafeSymbol()+";"); + cr.outputline(methodcall+");"); + cr.endblock(); + } + cr.outputline("delete "+newmodel.getSafeSymbol()+";"); + cr.outputline("goto rebuild;"); } - cr.outputline("goto rebuild;"); - } - cr.endblock(); - /* Build standard compensation actions */ - if (need_compensation(currentrule)) { - UpdateNode un=find_compensation(currentrule); - String name=(String)updatenames.get(un); - usedupdates.add(un); /* Mark as used */ - String methodcall=name+"(this,"+oldmodel.getSafeSymbol()+","+repairtable.getSafeSymbol(); - for(int i=0;iadd((int)" + leftvar + ", (int)" + rightvar+ ");"); } if (rd.testUsage(RelationDescriptor.INVIMAGE)) { + cr.outputline(ifstring); cr.outputline(addeditem + " = " + rd.getSafeSymbol() + "_hashinv->add((int)" + rightvar + ", (int)" + leftvar + ");"); } - cr.outputline("if (" + addeditem + ")"); - cr.startblock(); Vector dispatchrules = getrulelist(rd); @@ -1406,12 +1666,12 @@ public class RepairGenerator { dispatchrules.removeAll(toremove); if (dispatchrules.size() == 0) { cr.outputline("// nothing to dispatch"); - cr.endblock(); return; } - - cr.outputline("if ("+addeditem+")"); + + cr.outputline("if (" + addeditem + ")"); cr.startblock(); + for(int i = 0; i < dispatchrules.size(); i++) { Rule rule = (Rule) dispatchrules.elementAt(i); if (rule.getGuardExpr().getRequiredDescriptors().contains(rd)) { @@ -1427,86 +1687,108 @@ public class RepairGenerator { } } } - cr.endblock(); + cr.endblock(); } public void generate_dispatch(CodeWriter cr, SetDescriptor sd, String setvar) { - - cr.outputline("// SET DISPATCH "); - - cr.outputline("if ("+oldmodel.getSafeSymbol()+"&&"); - cr.outputline("!"+oldmodel.getSafeSymbol() +"->"+sd.getJustSafeSymbol()+"_hash->contains("+setvar+"))"); - cr.startblock(); { - /* Adding new item */ - /* Perform safety checks */ - cr.outputline("if ("+repairtable.getSafeSymbol()+"&&"); - cr.outputline(repairtable.getSafeSymbol()+"->containsset("+sd.getNum()+","+currentrule.getNum()+","+setvar+"))"); + cr.outputline("// SET DISPATCH "); + if (Compiler.REPAIR) { + cr.outputline("if ("+oldmodel.getSafeSymbol()+"&&"); + cr.outputline("!"+oldmodel.getSafeSymbol() +"->"+sd.getJustSafeSymbol()+"_hash->contains("+setvar+"))"); cr.startblock(); { - /* Have update to call into */ - VarDescriptor funptr=VarDescriptor.makeNew("updateptr"); - String parttype=""; - for(int i=0;igetset("+sd.getNum()+","+currentrule.getNum()+","+setvar+");"); - String methodcall="("+funptr.getSafeSymbol()+") (this,"+oldmodel.getSafeSymbol()+","+ - repairtable.getSafeSymbol(); - for(int i=0;icontainsset("+sd.getNum()+","+currentrule.getNum()+","+setvar+"))"); + cr.startblock(); { + /* Have update to call into */ + VarDescriptor funptr=VarDescriptor.makeNew("updateptr"); + String parttype=""; + for(int i=0;igetset("+sd.getNum()+","+currentrule.getNum()+","+setvar+");"); + String methodcall="("+funptr.getSafeSymbol()+") (this,"+oldmodel.getSafeSymbol()+","+ + repairtable.getSafeSymbol(); + for(int i=0;i"+sdrule.getJustSafeSymbol()+"_hash->contains("+setvar+"))"); + cr.startblock(); + } + cr.outputline(methodcall); + cr.outputline("delete "+newmodel.getSafeSymbol()+";"); + cr.outputline("goto rebuild;"); + cr.endblock(); } + if (currentrule==itrule) + cr.endblock(); } - methodcall+=");"; - cr.outputline(methodcall); - cr.outputline("goto rebuild;"); } } - cr.endblock(); String addeditem = (VarDescriptor.makeNew("addeditem")).getSafeSymbol(); - cr.outputline("int " + addeditem + " = 1;"); + cr.outputline("int " + addeditem + " = 0;"); + if (sd.getType() instanceof StructureTypeDescriptor) { + cr.outputline("if (!maybe&&"+setvar+")"); + } else + cr.outputline("if (!maybe)"); cr.outputline(addeditem + " = " + sd.getSafeSymbol() + "_hash->add((int)" + setvar + ", (int)" + setvar + ");"); cr.startblock(); Vector dispatchrules = getrulelist(sd); @@ -1524,6 +1806,7 @@ public class RepairGenerator { cr.endblock(); return; } + /* Add item to worklist if new */ cr.outputline("if ("+addeditem+")"); cr.startblock(); for(int i = 0; i < dispatchrules.size(); i++) { @@ -1541,7 +1824,6 @@ public class RepairGenerator { } } } - cr.endblock(); cr.endblock(); }