1 package org.simantics.scl.compiler.internal.elaboration.subsumption;
\r
3 import java.util.ArrayDeque;
\r
4 import java.util.ArrayList;
\r
6 import org.simantics.scl.compiler.errors.ErrorLog;
\r
7 import org.simantics.scl.compiler.errors.Locations;
\r
8 import org.simantics.scl.compiler.internal.types.effects.EffectIdMap;
\r
9 import org.simantics.scl.compiler.types.TMetaVar;
\r
10 import org.simantics.scl.compiler.types.TUnion;
\r
11 import org.simantics.scl.compiler.types.Type;
\r
12 import org.simantics.scl.compiler.types.Types;
\r
13 import org.simantics.scl.compiler.types.util.Polarity;
\r
14 import org.simantics.scl.compiler.types.util.TypeUnparsingContext;
\r
16 import gnu.trove.map.hash.THashMap;
\r
17 import gnu.trove.set.hash.THashSet;
\r
19 public class SubSolver {
\r
21 public static final boolean DEBUG = false;
\r
25 ArrayList<Subsumption> subsumptions;
\r
26 ArrayList<Type> potentialSingletonEffects;
\r
27 EffectIdMap effectIds = new EffectIdMap();
\r
28 THashMap<TMetaVar,Var> vars = new THashMap<TMetaVar,Var>();
\r
29 ArrayDeque<Var> dirtyQueue = new ArrayDeque<Var>();
\r
31 TypeUnparsingContext tuc = new TypeUnparsingContext();
\r
33 public SubSolver(ErrorLog errorLog, ArrayList<Subsumption> subsumptions,
\r
34 ArrayList<Type> potentialSingletonEffects,
\r
36 this.errorLog = errorLog;
\r
37 this.subsumptions = subsumptions;
\r
38 this.potentialSingletonEffects = potentialSingletonEffects;
\r
39 this.globalLoc = globalLoc;
\r
41 //for(Subsumption sub : subsumptions)
\r
42 // System.out.println("[" + sub.a.toString(tuc) + " < " + sub.b.toString(tuc) + "]");
\r
45 public void solve() {
\r
46 //printSubsumptions();
\r
50 propagateUpperBounds();
\r
52 errorFromUnsolvedEquations();
\r
53 //System.out.println("--");
\r
57 private void markAllDirty() {
\r
58 for(Var v : vars.values())
\r
62 private Var getOrCreateVar(TMetaVar mv) {
\r
63 Var var = vars.get(mv);
\r
65 var = new Var(mv, mv.toString(tuc).substring(1), this);
\r
71 private void addVar(Type t) {
\r
72 t = Types.canonical(t);
\r
73 if(t instanceof TMetaVar)
\r
74 getOrCreateVar((TMetaVar)t);
\r
75 else if(t instanceof TUnion)
\r
76 for(Type c : ((TUnion)t).effects)
\r
80 ArrayList<TMetaVar> aVars = new ArrayList<TMetaVar>();
\r
82 private void addSubsumption(long loc, Type a, Type b) {
\r
83 int aCons = effectIds.toId(a, aVars);
\r
84 if(!aVars.isEmpty()) {
\r
85 for(TMetaVar var : aVars)
\r
86 getOrCreateVar((TMetaVar)var).addUpperBound(toVUnion(b));
\r
90 VUnion u = toVUnion(b);
\r
91 if(u.vars.isEmpty()) {
\r
92 testSubsumption(loc, aCons, u.con);
\r
95 u.makeLowerBound(aCons);
\r
99 ArrayList<TMetaVar> bVars = new ArrayList<TMetaVar>();
\r
101 private VUnion toVUnion(Type a) {
\r
102 int cons = effectIds.toId(a, bVars);
\r
103 ArrayList<Var> vars = new ArrayList<Var>(bVars.size());
\r
104 for(TMetaVar v : bVars)
\r
105 vars.add(getOrCreateVar(v));
\r
107 return new VUnion(cons, vars);
\r
110 private void createVar() {
\r
111 for(Subsumption sub : subsumptions)
\r
112 addSubsumption(sub.loc, sub.a, sub.b);
\r
113 for(Type t : potentialSingletonEffects)
\r
117 private void reduceChains() {
\r
120 Var v = dirtyQueue.poll();
\r
129 private void reduceChains(Var v) {
\r
130 if(v.constLowerBound == v.constUpperBound) {
\r
131 v.replaceWith(v.constLowerBound);
\r
134 Polarity p = v.original.getPolarity();
\r
135 if(!p.isNegative() && v.complexLowerBounds.isEmpty()) {
\r
136 if(v.simpleLowerBounds.isEmpty()) {
\r
137 if((v.constLowerBound&v.constUpperBound) != v.constLowerBound)
\r
138 errorLog.log(globalLoc, "Subsumption failed.");
\r
139 v.replaceWith(v.constLowerBound);
\r
142 else if(v.simpleLowerBounds.size() == 1 && v.constLowerBound == 0) {
\r
143 v.replaceDownwards(v.simpleLowerBounds.get(0));
\r
147 if(p == Polarity.NEGATIVE && v.complexUpperBounds.isEmpty()) {
\r
148 if(v.simpleUpperBounds.isEmpty()) {
\r
149 if((v.constLowerBound&v.constUpperBound) != v.constLowerBound)
\r
150 errorLog.log(globalLoc, "Subsumption failed.");
\r
151 v.replaceWith(v.constUpperBound);
\r
154 else if(v.simpleUpperBounds.size() == 1 && v.constUpperBound == EffectIdMap.MAX) {
\r
155 v.replaceUpwards(v.simpleUpperBounds.get(0));
\r
161 private void propagateUpperBounds() {
\r
164 Var v = dirtyQueue.poll();
\r
168 int upperApprox = v.constUpperBound;
\r
169 for(Var u : v.simpleUpperBounds)
\r
170 upperApprox &= u.upperApprox;
\r
171 for(VUnion u : v.complexUpperBounds)
\r
172 upperApprox &= u.getUpperApprox();
\r
174 if(upperApprox != v.upperApprox) {
\r
175 v.upperApprox = upperApprox;
\r
176 for(Var u : v.simpleLowerBounds)
\r
178 for(VUnion u : v.complexLowerBounds)
\r
187 private void checkLowerBounds() {
\r
188 THashSet<VUnion> lowerBounds = new THashSet<VUnion>();
\r
189 for(Var v : vars.values()) {
\r
190 if((v.constLowerBound & v.upperApprox) != v.constLowerBound)
\r
191 testSubsumption(globalLoc, v.constLowerBound, v.upperApprox);
\r
192 for(VUnion u : v.complexLowerBounds)
\r
194 lowerBounds.add(u);
\r
196 for(VUnion u : lowerBounds)
\r
197 if(u.getUpperApprox() != EffectIdMap.MAX)
\r
198 errorLog.log(globalLoc, "Subsumption failed.");
\r
201 private void errorFromUnsolvedEquations() {
\r
202 for(Var v : vars.values()) {
\r
204 errorLog.log(globalLoc, "Couldn't simplify all effect subsumptions away. " +
\r
205 "The current compiler cannot handle this situation. Try adding more type annotations.");
\r
211 private void print() {
\r
212 for(Var v : vars.values()) {
\r
213 System.out.println(v.name +
\r
214 ", " + v.original.getPolarity() +
\r
215 (v.simpleLowerBounds.isEmpty() ? "" : ", simpleLowerRefs: " + v.simpleLowerBounds.size()) +
\r
216 (v.complexLowerBounds.isEmpty() ? "" : ", complexLowerRefs: " + v.complexLowerBounds.size()) +
\r
217 ", " + v.original.getKind());
\r
218 if(v.constLowerBound != EffectIdMap.MIN)
\r
219 System.out.println(" > " + v.constLowerBound);
\r
220 if(v.constUpperBound != EffectIdMap.MAX)
\r
221 System.out.println(" < " + v.constUpperBound);
\r
222 for(Var u : v.simpleUpperBounds)
\r
223 System.out.println(" < " + u.name);
\r
224 for(VUnion u : v.complexUpperBounds)
\r
225 System.out.println(" << " + u);
\r
229 private void printSubsumptions() {
\r
230 for(Subsumption sub : subsumptions)
\r
231 System.out.println("[" + sub.a.toString(tuc) + " < " + sub.b.toString(tuc) + " : " +
\r
232 Locations.beginOf(sub.loc) + "," + Locations.endOf(sub.loc) + "]");
\r
235 private void testSubsumption(long location, int a, int b) {
\r
236 int extraEffects = a & (~b);
\r
237 if(extraEffects != 0)
\r
238 subsumptionFailed(location, extraEffects);
\r
241 private void subsumptionFailed(long location , int effects) {
\r
242 errorLog.log(location, "Side-effect " + effectIds.toType(effects) + " is forbidden here.");
\r