summaryrefslogtreecommitdiff
path: root/Source/AIFramework/MultiLattice.cs
blob: 4c9de5f0bcce9a6a74551126cbea4f4b98340b19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
//-----------------------------------------------------------------------------
//
// Copyright (C) Microsoft Corporation.  All Rights Reserved.
//
//-----------------------------------------------------------------------------
namespace Microsoft.AbstractInterpretationFramework {
  using System.Diagnostics.Contracts;
  using System.Collections;
  using System.Collections.Generic;
  using System.Diagnostics;
  using Microsoft.AbstractInterpretationFramework.Collections;

  using Microsoft.Boogie;

  using ISet = Microsoft.Boogie.GSet<object>;
  using Set = Microsoft.Boogie.GSet<object>;


  /// <summary>
  ///  The cartesian product lattice.
  /// </summary>
  public class MultiLattice : Lattice, IEnumerable {
    internal class Elt : Element {
      public /*MaybeNull*/Element[] elementPerLattice;

      public Elt(int domainCount, bool isBottom) {
        this.elementPerLattice = (domainCount == 0 && isBottom) ? null : new Element[domainCount];
      }

      private Elt(Elt/*!*/ other) {
        Contract.Requires(other != null);
        Element[] otherEPL = other.elementPerLattice;
        if (otherEPL != null) {
          Element[] newEPL = new Element[otherEPL.Length];
          for (int i = 0; i < newEPL.Length; i++) {
            newEPL[i] = (Element)(cce.NonNull(otherEPL[i])).Clone();
          }
          this.elementPerLattice = newEPL;
        }
      }

      public override Element/*!*/ Clone() {
        Contract.Ensures(Contract.Result<Element>() != null);
        return new Elt(this);
      }

      [Pure]
      public override string/*!*/ ToString() {
        Contract.Ensures(Contract.Result<string>() != null);
        //                string s = "MultiLattice+Elt{";
        //                string sep = "";
        //                Element[] epl = this.elementPerLattice;
        //                if (epl != null)
        //                {
        //                    foreach (Element! e in epl)
        //                    {
        //                        s += sep + e.ToString();
        //                        sep = ", ";
        //                    }
        //                }
        //                return s + "}";
        if (elementPerLattice == null)
          return "";
        System.Text.StringBuilder buffer = new System.Text.StringBuilder();
        for (int i = 0; i < this.Count; i++) {
          if (i > 0)
            buffer.Append("; ");
          buffer.AppendFormat("{0}", elementPerLattice[i]);
        }
        return buffer.ToString();
      }

      public override void Dump(string/*!*/ msg) {
        //Contract.Requires(msg != null);
        System.Console.WriteLine("MultiLattice.Elt.Dump({0})", msg);
        Element[] epl = this.elementPerLattice;
        if (epl != null) {
          foreach (Element/*!*/ e in epl) {
            Contract.Assert(e != null);
            e.Dump(msg);
          }
        }
      }

      [Pure]
      public override ICollection<IVariable/*!*/>/*!*/ FreeVariables() {
        Contract.Ensures(cce.NonNullElements(Contract.Result<ICollection<IVariable>>()));
        List<IVariable/*!*/>/*!*/ list = new List<IVariable/*!*/>();
        for (int i = 0; i < this.Count; i++) {
          list.AddRange(cce.NonNull(this[i]).FreeVariables());
        }
        return cce.NonNull(list.AsReadOnly());
      }

      public static Elt/*!*/ Top(ArrayList/*<Lattice>*//*!*/ lattices) {
        Contract.Requires(lattices != null);
        Contract.Ensures(Contract.Result<Elt>() != null);
        Elt multiValue = new Elt(lattices.Count, false);
        for (int i = 0; i < lattices.Count; i++) {
          Lattice d = (Lattice/*!*/)cce.NonNull(lattices[i]);
          multiValue[d.Index] = d.Top;
        }
        Debug.Assert(multiValue.IsValid);
        return multiValue;
      }


      public static Elt/*!*/ Bottom(ArrayList/*<Lattice>*//*!*/ lattices) {
        Contract.Requires(lattices != null);
        Contract.Ensures(Contract.Result<Elt>() != null);
        Elt multiValue = new Elt(lattices.Count, true);
        for (int i = 0; i < lattices.Count; i++) {
          Lattice d = (Lattice/*!*/)cce.NonNull(lattices[i]);
          multiValue[d.Index] = d.Bottom;
        }
        Debug.Assert(multiValue.IsValid);
        return multiValue;
      }

      public bool IsValid {
        get {
          if (this.elementPerLattice == null) {
            return true; /*bottom*/
          }

          Element[] epl = this.elementPerLattice;
          for (int i = 0; i < epl.Length; i++) {
            if (epl[i] == null) {
              return false;
            }
          }
          return true;
        }
      }

      public int Count {
        get {
          return this.elementPerLattice == null ? 0 : this.elementPerLattice.Length;
        }
      }

      public bool Contains(int i) {
        return 0 <= i && i < this.Count;
      }

      public Element this[int i] // just syntactic sugar
      {
        get {
          Element[] epl = this.elementPerLattice;
          return epl == null ? null : epl[i];
        }
        set {
          Element[] epl = this.elementPerLattice;
          if (epl == null)
            return;
          epl[i] = value;
        }
      }

    } // class


    [ContractInvariantMethod]
    void ObjectInvariant() {
      Contract.Invariant(lattices != null);
      Contract.Invariant(propExprFactory != null);
    }

    ArrayList/*<Lattice>*//*!*/ lattices = new ArrayList();

    private readonly IPropExprFactory/*!*/ propExprFactory;


    public MultiLattice(IPropExprFactory/*!*/ propExprFactory, IValueExprFactory/*!*/ valueExprFactory)
      : base(valueExprFactory) {
      Contract.Requires(valueExprFactory != null);
      Contract.Requires(propExprFactory != null);
      this.propExprFactory = propExprFactory;
      // base(valueExprFactory);
    }



    public void AddLattice(Lattice lattice) {
      this.lattices.Add(lattice);
    }

    private Lattice/*!*/ SubLattice(int i) {
      Contract.Ensures(Contract.Result<Lattice>() != null);
      return (Lattice/*!*/)cce.NonNull(this.lattices[i]);
    }


    public override Element/*!*/ Top {
      get {
        Contract.Ensures(Contract.Result<Element>() != null);
        return Elt.Top(this.lattices);
      }
    }

    public override Element/*!*/ Bottom {
      get {
        Contract.Ensures(Contract.Result<Element>() != null);
        return Elt.Bottom(this.lattices);
      }
    }




    public override bool IsBottom(Element/*!*/ element) {
      //Contract.Requires(element != null);
      Elt e = (Elt)element;
      // The program is errorneous/nonterminating if any subdomain knows it is.
      //
      if (e.elementPerLattice == null) {
        return true;
      }
      for (int i = 0; i < e.Count; i++) {
        if (SubLattice(i).IsBottom(cce.NonNull(e[i]))) {
          return true;
        }
      }
      return false;
    }

    public override bool IsTop(Element/*!*/ element) {
      //Contract.Requires(element != null);
      Elt e = (Elt)element;
      if (e.elementPerLattice == null) {
        return false;
      }
      // The multidomain knows nothing about the program only if no subdomain
      // knows anything about it.
      //
      for (int i = 0; i < e.Count; i++) {
        if (!SubLattice(i).IsTop(cce.NonNull(e[i]))) {
          return false;
        }
      }
      return true;
    }

    protected override bool AtMost(Element/*!*/ first, Element/*!*/ second) {
      //Contract.Requires(second != null);
      //Contract.Requires(first != null);
      Elt a = (Elt)first;
      Elt b = (Elt)second;

      for (int i = 0; i < a.Count; i++) {
        Element thisElement = cce.NonNull(a[i]);
        Element thatElement = cce.NonNull(b[i]);
        if (thisElement.GetType() != thatElement.GetType()) {
          throw new System.InvalidOperationException(
            "AtMost called on MultiDomain objects with different lattices"
            );
        }
        if (!SubLattice(i).LowerThan(thisElement, thatElement)) {
          return false;
        }
      }
      return true;
    }

    protected override bool AtMost(Element/*!*/ first, ICombineNameMap/*!*/ firstToResult, Element/*!*/ second, ICombineNameMap/*!*/ secondToResult) {
      //Contract.Requires(secondToResult != null);
      //Contract.Requires(second != null);
      //Contract.Requires(firstToResult != null);
      //Contract.Requires(first != null);
      Elt a = (Elt)first;
      Elt b = (Elt)second;

      for (int i = 0; i < a.Count; i++) {
        Element thisElement = cce.NonNull(a[i]);
        Element thatElement = cce.NonNull(b[i]);
        if (thisElement.GetType() != thatElement.GetType()) {
          throw new System.InvalidOperationException(
            "AtMost called on MultiDomain objects with different lattices"
            );
        }
        if (!SubLattice(i).LowerThan(thisElement, firstToResult, thatElement, secondToResult)) {
          return false;
        }
      }
      return true;
    }


    private enum CombineOp {
      Meet,
      Join,
      Widen
    }

    private Element/*!*/ Combine(Element/*!*/ first, ICombineNameMap/*?*/ firstToResult, Element/*!*/ second, ICombineNameMap/*?*/ secondToResult, CombineOp c) {
      Contract.Requires(second != null);
      Contract.Requires(first != null);
      Contract.Ensures(Contract.Result<Element>() != null);
      Elt a = (Elt)first;
      Elt b = (Elt)second;

      int unionCount = System.Math.Max(a.Count, b.Count);
      Elt combined = new Elt(unionCount, IsBottom(a) && IsBottom(b));
      for (int i = 0; i < unionCount; i++) {
        bool thisExists = a.Contains(i);
        bool thatExists = b.Contains(i);

        if (thisExists && thatExists) {
          Lattice.Element suba = a[i];
          Lattice.Element subb = b[i];
          Contract.Assert(suba != null && subb != null);

          switch (c) {
            case CombineOp.Meet:
              combined[i] = SubLattice(i).Meet(suba, subb);
              break;
            case CombineOp.Join:
              if (firstToResult != null && secondToResult != null)
                combined[i] = SubLattice(i).Join(suba, firstToResult, subb, secondToResult);
              else
                combined[i] = SubLattice(i).Join(suba, subb);
              break;
            case CombineOp.Widen:
              if (firstToResult != null && secondToResult != null)
                combined[i] = SubLattice(i).Widen(suba, firstToResult, subb, secondToResult);
              else
                combined[i] = SubLattice(i).Widen(suba, subb);
              break;
          }
        } else if (thisExists) {
          combined[i] = a[i];
        } else {
          combined[i] = b[i];
        }
      }
      Debug.Assert(combined.IsValid);
      return combined;
    }

    public override Element/*!*/ NontrivialJoin(Element/*!*/ a, Element/*!*/ b) {
      //Contract.Requires((b != null));
      //Contract.Requires((a != null));
      Contract.Ensures(Contract.Result<Element>() != null);
      return this.Combine(a, null, b, null, CombineOp.Join);
    }

    public override Element/*!*/ NontrivialJoin(Element/*!*/ a, ICombineNameMap/*!*/ aToResult, Element/*!*/ b, ICombineNameMap/*!*/ bToResult) {
      //Contract.Requires((bToResult != null));
      //Contract.Requires((b != null));
      //Contract.Requires((aToResult != null));
      //Contract.Requires((a != null));
      Contract.Ensures(Contract.Result<Element>() != null);
      return this.Combine(a, aToResult, b, bToResult, CombineOp.Join);
    }

    public override Element/*!*/ NontrivialMeet(Element/*!*/ a, Element/*!*/ b) {
      //Contract.Requires((b != null));
      //Contract.Requires((a != null));
      Contract.Ensures(Contract.Result<Element>() != null);
      return this.Combine(a, null, b, null, CombineOp.Meet);
    }

    public override Element/*!*/ Widen(Element/*!*/ a, Element/*!*/ b) {
      //Contract.Requires((b != null));
      //Contract.Requires((a != null));
      Contract.Ensures(Contract.Result<Element>() != null);
      return this.Combine(a, null, b, null, CombineOp.Widen);
    }

    public override Element/*!*/ Widen(Element/*!*/ a, ICombineNameMap/*!*/ aToResult, Element/*!*/ b, ICombineNameMap/*!*/ bToResult) {
      //Contract.Requires((bToResult != null));
      //Contract.Requires((b != null));
      //Contract.Requires((aToResult != null));

      //Contract.Requires(a != null);
      Contract.Ensures(Contract.Result<Element>() != null);
      return this.Combine(a, aToResult, b, bToResult, CombineOp.Widen);
    }

    public override Element/*!*/ Eliminate(Element/*!*/ element, IVariable/*!*/ variable) {
      //Contract.Requires(variable != null);
      //Contract.Requires(element != null);
      Contract.Ensures(Contract.Result<Element>() != null);
      Elt e = (Elt)element;
      if (IsBottom(e)) {
        return e;
      }
      Elt newValue = new Elt(e.Count, false);
      for (int i = 0; i < this.lattices.Count; i++) {
        newValue[i] = SubLattice(i).Eliminate(cce.NonNull(e[i]), variable);
      }
      return newValue;
    }


    public override Element/*!*/ Constrain(Element/*!*/ element, IExpr/*!*/ expr) {
      //Contract.Requires(expr != null);
      //Contract.Requires(element != null);
      //Contract.Ensures(Contract.Result<Element>() != null);
      Elt e = (Elt)element;
      if (IsBottom(e)) {
        return e;
      }
      Elt newValue = new Elt(e.Count, false);
      for (int i = 0; i < this.lattices.Count; i++) {
        newValue[i] = SubLattice(i).Constrain(cce.NonNull(e[i]), expr);
      }
      return newValue;
    }


    public override Element/*!*/ Rename(Element/*!*/ element, IVariable/*!*/ oldName, IVariable/*!*/ newName) {
      //Contract.Requires(newName != null);
      //Contract.Requires(oldName != null);
      //Contract.Requires(element != null);
      Contract.Ensures(Contract.Result<Element>() != null);
      Elt e = (Elt)element;
      if (IsBottom(e)) {
        return e;
      }
      Elt newValue = new Elt(e.Count, false);
      for (int i = 0; i < this.lattices.Count; i++) {
        newValue[i] = SubLattice(i).Rename(cce.NonNull(e[i]), oldName, newName);
      }
      return newValue;
    }


    public override bool Understands(IFunctionSymbol/*!*/ f, IList/*!*/ args) {
      //Contract.Requires(args != null);
      //Contract.Requires(f != null);
      bool result = false;

      for (int i = 0; i < this.lattices.Count; i++) {
        result = (result || SubLattice(i).Understands(f, args));
      }

      return result;
    }


    public override string/*!*/ ToString(Element/*!*/ element) {
      //Contract.Requires(element != null);
      Contract.Ensures(Contract.Result<string>() != null);
      Elt e = (Elt)element;
      return e.ToString();
    }


    public override IExpr/*!*/ ToPredicate(Element/*!*/ element) {
      //Contract.Requires(element != null);
      Contract.Ensures(Contract.Result<IExpr>() != null);
      Elt e = (Elt)element;

      IExpr result = propExprFactory.True;
      for (int i = 0; i < e.Count; i++) {
        IExpr conjunct = SubLattice(i).ToPredicate(cce.NonNull(e[i]));
        Contract.Assert(conjunct != null);

        result = Prop.SimplifiedAnd(propExprFactory, conjunct, result);
      }
      return result;
    }

    /// <summary>
    ///  Return an expression that is equivalent to the given expression that does not
    ///  contain the given variable according to the lattice element and queryable.
    /// 
    ///  Simply asks each sublattice to try to generate an equivalent expression.  We
    ///  do not try to combine information to infer new equivalences here.
    /// </summary>
    /// <param name="e">The lattice element.</param>
    /// <param name="q">A queryable for asking addtional information.</param>
    /// <param name="expr">The expression to find an equivalent expression.</param>
    /// <param name="var">The variable to eliminate.</param>
    /// <returns>
    /// An equivalent expression to <paramref name="expr"/> without <paramref name="var"/>
    /// or null if not possible.
    /// </returns>
    public override IExpr/*?*/ EquivalentExpr(Element/*!*/ element, IQueryable/*!*/ q, IExpr/*!*/ expr, IVariable/*!*/ var, Set/*<IVariable!>*//*!*/ prohibitedVars) {
      //Contract.Requires(prohibitedVars != null);
      //Contract.Requires(var != null);
      //Contract.Requires(expr != null);
      //Contract.Requires(q != null);
      //Contract.Requires(element != null);
      Elt/*!*/ e = (Elt/*!*/)cce.NonNull(element);

      for (int i = 0; i < e.Count; i++) {
        IExpr equivexpr = SubLattice(i).EquivalentExpr(cce.NonNull(e[i]), q, expr, var, prohibitedVars);

        if (equivexpr != null)
          return equivexpr;
      }

      return null;
    }


    public override Answer CheckPredicate(Element/*!*/ element, IExpr/*!*/ pred) {
      //Contract.Requires(pred != null);
      //Contract.Requires(element != null);
      Elt/*!*/ e = (Elt/*!*/)cce.NonNull(element);

      for (int i = 0; i < e.Count; i++) {
        Answer ans = SubLattice(i).CheckPredicate(cce.NonNull(e[i]), pred);

        if (ans == Answer.Yes || ans == Answer.No)
          return ans;
      }

      return Answer.Maybe;
    }


    public override Answer CheckVariableDisequality(Element/*!*/ element, IVariable/*!*/ var1, IVariable/*!*/ var2) {
      //Contract.Requires(var2 != null);
      //Contract.Requires(var1 != null);
      //Contract.Requires(element != null);
      Elt/*!*/ e = (Elt/*!*/)cce.NonNull(element);

      for (int i = 0; i < e.Count; i++) {
        Answer ans = SubLattice(i).CheckVariableDisequality(cce.NonNull(e[i]), var1, var2);

        if (ans == Answer.Yes || ans == Answer.No)
          return ans;
      }

      return Answer.Maybe;
    }



    public override void Validate() {
      base.Validate();
      foreach (Lattice/*!*/ l in lattices) {
        Contract.Assert(l != null);
        l.Validate();
      }
    }

    /// <summary>
    ///  The enumeration over a MultiLattice is its sublattices.
    /// </summary>
    /// <returns>An enumerator over the sublattices.</returns>
    [Pure]
    [GlobalAccess(false)]
    [Escapes(true, false)]
    public IEnumerator/*<Lattice!>*//*!*/ GetEnumerator() {
      Contract.Ensures(Contract.Result<IEnumerator>() != null);
      return lattices.GetEnumerator();
    }

    /// <summary>
    ///  Return an enumerable over a mapping of sublattices to the their corresponding
    ///  lattice elements given a MultiLattice element.
    /// </summary>
    /// <param name="element">The MultiLattice element.</param>
    /// <returns>
    /// An enumerable that yields an IDictionaryEnumerator over the
    /// (Lattice, Lattice.Element) pairs.
    /// </returns>
    public IEnumerable/*!*/ Subelements(Element/*!*/ element) {
      Contract.Requires(element != null);
      Contract.Ensures(Contract.Result<IEnumerable>() != null);
      return new SubelementsEnumerable(this, (Elt/*!*/)cce.NonNull(element));
    }

    /// <summary>
    ///  An enumerator over the sublattices and elements.
    /// </summary>
    private sealed class SubelementsEnumerable : IEnumerable {
      private sealed class SubelementsEnumerator : IDictionaryEnumerator {
        private readonly IEnumerator/*<Lattice!>*//*!*/ multiLatticeIter;
        private readonly IEnumerator/*<Lattice.Element!>*//*!*/ multiElementIter;
        [ContractInvariantMethod]
        void ObjectInvariant() {
          Contract.Invariant(multiElementIter != null);
          Contract.Invariant(multiLatticeIter != null);
        }


        public SubelementsEnumerator(MultiLattice/*!*/ multiLattice, Elt/*!*/ multiElement) {
          Contract.Requires(multiElement != null);
          Contract.Requires(multiLattice != null);
          Contract.Requires(multiElement.elementPerLattice != null);
          this.multiLatticeIter = multiLattice.lattices.GetEnumerator();
          this.multiElementIter = multiElement.elementPerLattice.GetEnumerator();
          // base();
        }

        public DictionaryEntry Entry {
          get {
            return new DictionaryEntry(cce.NonNull(multiLatticeIter.Current), multiElementIter.Current);
          }
        }

        public object Key {
          get {
            return multiLatticeIter.Current;
          }
        }

        public object Value {
          get {
            return multiElementIter.Current;
          }
        }

        public object Current {
          get {
            return this.Entry;
          }
        }

        public bool MoveNext() {
          return multiLatticeIter.MoveNext() && multiElementIter.MoveNext();
        }

        public void Reset() {
          multiLatticeIter.Reset();
          multiElementIter.Reset();
        }
      }

      private MultiLattice/*!*/ multiLattice;
      private Elt/*!*/ multiElement;

      public SubelementsEnumerable(MultiLattice/*!*/ multiLattice, Elt/*!*/ multiElement) {
        Contract.Requires(multiElement != null);
        Contract.Requires(multiLattice != null);
        this.multiLattice = multiLattice;
        this.multiElement = multiElement;
        // base();
      }

      [Pure]
      [GlobalAccess(false)]
      [Escapes(true, false)]
      public IEnumerator/*!*/ GetEnumerator() {
        Contract.Ensures(Contract.Result<IEnumerator>() != null);
        return new SubelementsEnumerator(multiLattice, multiElement);
      }
    }


  }
}