summaryrefslogtreecommitdiff
path: root/Source/VCExpr/VCExprAST.cs
blob: 7e5b31f110fec2dd85d503b09c8c13272658c109 (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
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
//-----------------------------------------------------------------------------
//
// Copyright (C) Microsoft Corporation.  All Rights Reserved.
//
//-----------------------------------------------------------------------------
using System;
using System.Text;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using Microsoft.Contracts;
using Microsoft.Basetypes;

// Prover-independent syntax trees for representing verification conditions
// The language can be seen as a simple polymorphically typed first-order logic,
// very similar to the expression language of Boogie

namespace Microsoft.Boogie
{
  using Microsoft.Boogie.VCExprAST;

  public class VCExpressionGenerator
  {
    public static readonly VCExpr! False = new VCExprLiteral (Type.Bool);
    public static readonly VCExpr! True  = new VCExprLiteral (Type.Bool);

    private Function ControlFlowFunction = null;
    public VCExpr! ControlFlowFunctionApplication(VCExpr! e1, VCExpr! e2)
    {
      if (ControlFlowFunction == null) {
        Formal! first = new Formal(Token.NoToken, new TypedIdent(Token.NoToken, "", Microsoft.Boogie.Type.Int), true);
        Formal! second = new Formal(Token.NoToken, new TypedIdent(Token.NoToken, "", Microsoft.Boogie.Type.Int), true);
        VariableSeq! inputs = new VariableSeq();
        inputs.Add(first);
        inputs.Add(second);
        Formal! returnVar = new Formal(Token.NoToken, new TypedIdent(Token.NoToken, "", Microsoft.Boogie.Type.Int), false);
        ControlFlowFunction = new Function(Token.NoToken, "ControlFlow", inputs, returnVar);
      }
      List<VCExpr!> args = new List<VCExpr!>();
      args.Add(e1);
      args.Add(e2);
      return Function(BoogieFunctionOp(ControlFlowFunction), args);
    }
    
    public VCExpr! Integer(BigNum x) {
      return new VCExprIntLit(x);
    }

    public VCExpr! Function(VCExprOp! op,
                            List<VCExpr!>! arguments,
                            List<Type!>! typeArguments) {
      if (typeArguments.Count > 0)
        return new VCExprMultiAry(op, arguments, typeArguments);

      switch (arguments.Count) {
      case 0: return new VCExprNullary(op);
      case 1: return new VCExprUnary(op, arguments);
      case 2: return new VCExprBinary(op, arguments);
      default: return new VCExprMultiAry(op, arguments);
      }
    }

    public VCExpr! Function(VCExprOp! op, List<VCExpr!>! arguments) {
      return Function(op, arguments, VCExprNAry.EMPTY_TYPE_LIST);
    }

    public VCExpr! Function(VCExprOp! op, params VCExpr[]! arguments)
      requires forall{int i in (0:arguments.Length); arguments[i] != null};
    {
      return Function(op,
                      HelperFuns.ToNonNullList(arguments),
                      VCExprNAry.EMPTY_TYPE_LIST);
    }

    public VCExpr! Function(VCExprOp! op, VCExpr[]! arguments, Type[]! typeArguments)
      requires forall{int i in (0:arguments.Length); arguments[i] != null};
      requires forall{int i in (0:typeArguments.Length); typeArguments[i] != null};
    {
      return Function(op,
                      HelperFuns.ToNonNullList(arguments),
                      HelperFuns.ToNonNullList(typeArguments));
    }

    public VCExpr! Function(Function! op, List<VCExpr!>! arguments) {
      return Function(BoogieFunctionOp(op), arguments, VCExprNAry.EMPTY_TYPE_LIST);
    }

    public VCExpr! Function(Function! op, params VCExpr[]! arguments)
      requires forall{int i in (0:arguments.Length); arguments[i] != null};
    {
      return Function(BoogieFunctionOp(op), arguments);
    }


    // The following method should really be called "ReduceLeft". It must
    // only be used for the binary operators "and" and "or"
    public VCExpr! NAry(VCExprOp! op, List<VCExpr!>! args) {
      return NAry(op, args.ToArray());
    }

    public VCExpr! NAry(VCExprOp! op, params VCExpr[]! args)
      requires forall{int i in (0:args.Length); args[i] != null};
      requires op == AndOp || op == OrOp; {
      bool and = (op == AndOp);

      VCExpr! e = and ? True : False;
      foreach (VCExpr a in args) {
        e = and ? AndSimp(e, (!)a) : OrSimp(e, (!)a);
      }
      return e;
    }      

    ////////////////////////////////////////////////////////////////////////////////

    public static readonly VCExprOp! NotOp     = new VCExprNAryOp (1, Type.Bool);
    public static readonly VCExprOp! EqOp      = new VCExprNAryOp (2, Type.Bool);
    public static readonly VCExprOp! NeqOp     = new VCExprNAryOp (2, Type.Bool);
    public static readonly VCExprOp! AndOp     = new VCExprNAryOp (2, Type.Bool);
    public static readonly VCExprOp! OrOp      = new VCExprNAryOp (2, Type.Bool);
    public static readonly VCExprOp! ImpliesOp = new VCExprNAryOp (2, Type.Bool);

    public VCExprDistinctOp! DistinctOp(int arity) {
      return new VCExprDistinctOp (arity);
    }

    public VCExpr! Not(List<VCExpr!>! args) 
      requires args.Count == 1;  {
      return Function(NotOp, args);
    }

    public VCExpr! Not(VCExpr! e0) {
      return Function(NotOp, e0);
    }
    public VCExpr! Eq(VCExpr! e0, VCExpr! e1) {
      return Function(EqOp, e0, e1);
    }
    public VCExpr! Neq(VCExpr! e0, VCExpr! e1) {
      return Function(NeqOp, e0, e1);
    }
    public VCExpr! And(VCExpr! e0, VCExpr! e1) {
      return Function(AndOp, e0, e1);
    }
    public VCExpr! Or(VCExpr! e0, VCExpr! e1) {
      return Function(OrOp, e0, e1);
    }
    public VCExpr! Implies(VCExpr! e0, VCExpr! e1) {
      return Function(ImpliesOp, e0, e1);
    }
    public VCExpr! Distinct(List<VCExpr!>! args) {
      if (args.Count <= 1)
        // trivial case
        return True;
      return Function(DistinctOp(args.Count), args);
    }

    ///////////////////////////////////////////////////////////////////////////
    // Versions of the propositional operators that automatically simplify in
    // certain cases (for example, if one of the operators is True or False)

    public VCExpr! NotSimp(VCExpr! e0) {
      if (e0.Equals(True))
        return False;
      if (e0.Equals(False))
        return True;
      return Not(e0);
    }
    public VCExpr! AndSimp(VCExpr! e0, VCExpr! e1) {
      if (e0.Equals(True))
        return e1;
      if (e1.Equals(True))
        return e0;
      if (e0.Equals(False) || e1.Equals(False))
        return False;
      return And(e0, e1);
    }
    public VCExpr! OrSimp(VCExpr! e0, VCExpr! e1) {
      if (e0.Equals(False))
        return e1;
      if (e1.Equals(False))
        return e0;
      if (e0.Equals(True) || e1.Equals(True))
        return True;
      return Or(e0, e1);
    }
    public VCExpr! ImpliesSimp(VCExpr! e0, VCExpr! e1) {
      if (e0.Equals(True))
        return e1;
      if (e1.Equals(False))
        return NotSimp(e0);
      if (e0.Equals(False) || e1.Equals(True))
        return True;
      // attempt to save on the depth of expressions (to reduce chances of stack overflows)
      while (e1 is VCExprBinary) {
        VCExprBinary n = (VCExprBinary)e1;
        if (n.Op == ImpliesOp) {
          if (AndSize(n[0]) <= AndSize(e0)) {
            // combine the antecedents
            e0 = And(e0, n[0]);
            e1 = n[1];
            continue;
          }
        }
        break;
      }
      return Implies(e0, e1);
    }
    
    ///<summary>
    /// Returns some measure of the number of conjuncts in e.  This could be the total number of conjuncts in all
    /// top-most layers of the expression, or it can simply be the length of the left-prong of this and-tree.  The
    /// important thing is that: AndSize(e0) >= AndSize(31) ==> AndSize(And(e0,e1)) > AndSize(e0).
    ///</summary>
    int AndSize(VCExpr! e) {
      int n = 1;
      while (true) {
        VCExprNAry nary = e as VCExprNAry;
        if (nary != null && nary.Op == AndOp && 2 <= nary.Arity) {
          e = nary[0];
          n++;
        } else {
          return n;
        }
      }
    }

    ////////////////////////////////////////////////////////////////////////////////
    // Further operators

    public static readonly VCExprOp! AddOp            = new VCExprNAryOp (2, Type.Int);
    public static readonly VCExprOp! SubOp            = new VCExprNAryOp (2, Type.Int);
    public static readonly VCExprOp! MulOp            = new VCExprNAryOp (2, Type.Int);
    public static readonly VCExprOp! DivOp            = new VCExprNAryOp (2, Type.Int);
    public static readonly VCExprOp! ModOp            = new VCExprNAryOp (2, Type.Int);
    public static readonly VCExprOp! LtOp             = new VCExprNAryOp (2, Type.Bool);
    public static readonly VCExprOp! LeOp             = new VCExprNAryOp (2, Type.Bool);
    public static readonly VCExprOp! GtOp             = new VCExprNAryOp (2, Type.Bool);
    public static readonly VCExprOp! GeOp             = new VCExprNAryOp (2, Type.Bool);
    public static readonly VCExprOp! SubtypeOp        = new VCExprNAryOp (2, Type.Bool);
    // ternary version of the subtype operator, the first argument of which gives
    // the type of the compared terms
    public static readonly VCExprOp! Subtype3Op       = new VCExprNAryOp (3, Type.Bool);
    public static readonly VCExprOp! IfThenElseOp     = new VCExprIfThenElseOp();
    
    public static readonly VCExprOp! TickleBoolOp     = new VCExprCustomOp("tickleBool", 1, Type.Bool);

    public VCExprOp! BoogieFunctionOp(Function! func) {
      return new VCExprBoogieFunctionOp(func);
    }

    // Bitvector nodes

    public VCExpr! Bitvector(BvConst! bv) {
      return Function(new VCExprBvOp(bv.Bits), Integer(bv.Value));
    }

    public VCExpr! BvExtract(VCExpr! bv, int bits, int start, int end) {
      return Function(new VCExprBvExtractOp(start, end, bits), bv);
    }

    public VCExpr! BvConcat(VCExpr! bv1, VCExpr! bv2) {
      return Function(new VCExprBvConcatOp(bv1.Type.BvBits, bv2.Type.BvBits), bv1, bv2);
    }

    public VCExpr! AtMost(VCExpr! smaller, VCExpr! greater) {
      return Function(SubtypeOp, smaller, greater);
    }


    ////////////////////////////////////////////////////////////////////////////////
    // Dispatcher for the visitor

    // the declared singleton operators
    internal enum SingletonOp { NotOp, EqOp, NeqOp, AndOp, OrOp, ImpliesOp,
                                AddOp, SubOp, MulOp,
                                DivOp, ModOp, LtOp, LeOp, GtOp, GeOp, SubtypeOp,
                                Subtype3Op, BvConcatOp };
    internal static Dictionary<VCExprOp!, SingletonOp>! SingletonOpDict;

    static VCExpressionGenerator() {
      SingletonOpDict = new Dictionary<VCExprOp!, SingletonOp> ();
      SingletonOpDict.Add(NotOp,     SingletonOp.NotOp);
      SingletonOpDict.Add(EqOp,      SingletonOp.EqOp);
      SingletonOpDict.Add(NeqOp,     SingletonOp.NeqOp);
      SingletonOpDict.Add(AndOp,     SingletonOp.AndOp);
      SingletonOpDict.Add(OrOp,      SingletonOp.OrOp);
      SingletonOpDict.Add(ImpliesOp, SingletonOp.ImpliesOp);
      SingletonOpDict.Add(AddOp,     SingletonOp.AddOp);
      SingletonOpDict.Add(SubOp,     SingletonOp.SubOp);
      SingletonOpDict.Add(MulOp,     SingletonOp.MulOp);
      SingletonOpDict.Add(DivOp,     SingletonOp.DivOp);
      SingletonOpDict.Add(ModOp,     SingletonOp.ModOp);
      SingletonOpDict.Add(LtOp,      SingletonOp.LtOp);
      SingletonOpDict.Add(LeOp,      SingletonOp.LeOp);
      SingletonOpDict.Add(GtOp,      SingletonOp.GtOp);
      SingletonOpDict.Add(GeOp,      SingletonOp.GeOp);
      SingletonOpDict.Add(SubtypeOp, SingletonOp.SubtypeOp);
      SingletonOpDict.Add(Subtype3Op,SingletonOp.Subtype3Op);
    }

    ////////////////////////////////////////////////////////////////////////////////


    // Let-bindings

    public VCExprLetBinding! LetBinding(VCExprVar! v, VCExpr! e) {
      return new VCExprLetBinding(v, e);
    }
    
    // A "real" let expression. All let-bindings happen simultaneously, i.e.,
    // at this level the order of the bindings does not matter. It is possible to
    // create expressions like   "let x = y, y = 5 in ...". All bound variables are
    // bound in all bound terms/formulas and can occur there, but the dependencies
    // have to be acyclic
    public VCExpr! Let(List<VCExprLetBinding!>! bindings, VCExpr! body) {
      if (bindings.Count == 0)
        // no empty let-bindings
        return body;
      return new VCExprLet(bindings, body);
    }

    public VCExpr! Let(VCExpr! body, params VCExprLetBinding[]! bindings)
      requires forall{int i in (0:bindings.Length); bindings[i] != null};
    {
      return Let(HelperFuns.ToNonNullList(bindings), body);
    }


    /// <summary>
    /// In contrast to the previous method, the following methods are not a general LET.
    ///  Instead, it
    /// is a boolean "LET b = P in Q", where P and Q are predicates, that is allowed to be
    /// encoded as "(b == P) ==> Q" or even as "(P ==> b) ==> Q"
    /// (or "(P ==> b) and Q" in negative positions).
    /// The method assumes that the variables in the bindings are unique in the entire formula
    /// to be produced, which allows the implementation to ignore scope issues in the event that
    /// it needs to generate an alternate expression for LET.
    /// </summary>


    // Turn let-bindings let v = E in ... into implications E ==> v
    public VCExpr! AsImplications(List<VCExprLetBinding!>! bindings) {
      VCExpr! antecedents = True;
      foreach (VCExprLetBinding b in bindings)
        // turn "LET_binding v = E" into "v <== E"
        antecedents = AndSimp(antecedents, Implies(b.E, b.V));
      return antecedents;
    }

    // Turn let-bindings let v = E in ... into equations v == E
    public VCExpr! AsEquations(List<VCExprLetBinding!>! bindings) {
      VCExpr! antecedents = True;
      foreach (VCExprLetBinding b in bindings)
        // turn "LET_binding v = E" into "v <== E"
        antecedents = AndSimp(antecedents, Eq(b.E, b.V));
      return antecedents;
    }



    // Maps

    public VCExpr! Select(params VCExpr[]! allArgs)
      requires forall{int i in (0:allArgs.Length); allArgs[i] != null};
    {
      return Function(new VCExprSelectOp(allArgs.Length - 1, 0),
                      HelperFuns.ToNonNullList(allArgs),
                      VCExprNAry.EMPTY_TYPE_LIST);
    }

    public VCExpr! Select(VCExpr[]! allArgs, Type[]! typeArgs)
      requires 1 <= allArgs.Length;
      requires forall{int i in (0:allArgs.Length); allArgs[i] != null};
      requires forall{int i in (0:typeArgs.Length); typeArgs[i] != null};
    {
      return Function(new VCExprSelectOp(allArgs.Length - 1, typeArgs.Length),
                      allArgs, typeArgs);
    }

    public VCExpr! Select(List<VCExpr!>! allArgs, List<Type!>! typeArgs)
      requires 1 <= allArgs.Count;
    {
      return Function(new VCExprSelectOp(allArgs.Count - 1, typeArgs.Count),
                      allArgs, typeArgs);
    }

    public VCExpr! Store(params VCExpr[]! allArgs)
      requires forall{int i in (0:allArgs.Length); allArgs[i] != null};
    {
      return Function(new VCExprStoreOp(allArgs.Length - 2, 0),
                      HelperFuns.ToNonNullList(allArgs),
                      VCExprNAry.EMPTY_TYPE_LIST);
    }

    public VCExpr! Store(VCExpr[]! allArgs, Type[]! typeArgs)
      requires 2 <= allArgs.Length;
      requires forall{int i in (0:allArgs.Length); allArgs[i] != null};
      requires forall{int i in (0:typeArgs.Length); typeArgs[i] != null};
    {
      return Function(new VCExprStoreOp(allArgs.Length - 2, typeArgs.Length),
                      allArgs, typeArgs);
    }

    public VCExpr! Store(List<VCExpr!>! allArgs, List<Type!>! typeArgs)
      requires 2 <= allArgs.Count;
    {
      return Function(new VCExprStoreOp(allArgs.Count - 2, typeArgs.Count),
                      allArgs, typeArgs);
    }


    // Labels

    public VCExprLabelOp! LabelOp(bool pos, string! l) {
      return new VCExprLabelOp(pos, l);
    }

    public VCExpr! LabelNeg(string! label, VCExpr! e) {
      if (e.Equals(True)) {
        return e;  // don't bother putting negative labels around True (which will expose the True to further peephole optimizations)
      }
      return Function(LabelOp(false, label), e);
    }
    public VCExpr! LabelPos(string! label, VCExpr! e) {
      return Function(LabelOp(true, label), e);
    }

    // Quantifiers

    public VCExpr! Quantify(Quantifier quan,
                            List<TypeVariable!>! typeParams, List<VCExprVar!>! vars,
                            List<VCTrigger!>! triggers, VCQuantifierInfos! infos,
                            VCExpr! body) {
      return new VCExprQuantifier(quan, typeParams, vars, triggers, infos, body);
    }

    public VCExpr! Forall(List<TypeVariable!>! typeParams, List<VCExprVar!>! vars,
                          List<VCTrigger!>! triggers, VCQuantifierInfos! infos,
                          VCExpr! body) {
      return Quantify(Quantifier.ALL, typeParams, vars, triggers, infos, body);
    }
    public VCExpr! Forall(List<VCExprVar!>! vars,
                          List<VCTrigger!>! triggers,
                          string! qid, VCExpr! body) {
      return Quantify(Quantifier.ALL, new List<TypeVariable!> (), vars,
                      triggers, new VCQuantifierInfos (qid, -1, false, null), body);
    }
    public VCExpr! Forall(List<VCExprVar!>! vars,
                          List<VCTrigger!>! triggers,
                          VCExpr! body) {
      return Quantify(Quantifier.ALL, new List<TypeVariable!> (), vars,
                      triggers, new VCQuantifierInfos (null, -1, false, null), body);
    }
    public VCExpr! Forall(VCExprVar! var, VCTrigger! trigger, VCExpr! body) {
      return Forall(HelperFuns.ToNonNullList(var), HelperFuns.ToNonNullList(trigger), body);
    }
    public VCExpr! Exists(List<TypeVariable!>! typeParams, List<VCExprVar!>! vars,
                          List<VCTrigger!>! triggers, VCQuantifierInfos! infos,
                          VCExpr! body) {
      return Quantify(Quantifier.EX, typeParams, vars, triggers, infos, body);
    }
    public VCExpr! Exists(List<VCExprVar!>! vars,
                          List<VCTrigger!>! triggers,
                          VCExpr! body) {
      return Quantify(Quantifier.EX, new List<TypeVariable!> (), vars,
                      triggers, new VCQuantifierInfos (null, -1, false, null), body);
    }
    public VCExpr! Exists(VCExprVar! var, VCTrigger! trigger, VCExpr! body) {
      return Exists(HelperFuns.ToNonNullList(var), HelperFuns.ToNonNullList(trigger), body);
    }

    public VCTrigger! Trigger(bool pos, List<VCExpr!>! exprs) {
      return new VCTrigger(pos, exprs);
    }

    public VCTrigger! Trigger(bool pos, params VCExpr[]! exprs)
      requires forall{int i in (0:exprs.Length); exprs[i] != null};
    {
      return Trigger(pos, HelperFuns.ToNonNullList(exprs));
    }

    // Reference to a bound or free variable

    public VCExprVar! Variable(string! name, Type! type) {
      return new VCExprVar(name, type);
    }
  }
}

namespace Microsoft.Boogie.VCExprAST
{

  public class HelperFuns {
    public static bool SameElements(IEnumerable! a, IEnumerable! b) {
      IEnumerator ia = a.GetEnumerator();
      IEnumerator ib = b.GetEnumerator();
      while (true) {
        if (ia.MoveNext()) {
          if (ib.MoveNext()) {
            if (!((!)ia.Current).Equals(ib.Current))
              return false;
          } else {
              return false;
          }
        } else {
          return !ib.MoveNext();
        }
      }
      return true;
    }

    public static int PolyHash(int init, int factor, IEnumerable! a) {
      int res = init;
      foreach(object x in a)
        res = res * factor + ((!)x).GetHashCode();
      return res;
    }

    public static List<T>! ToList<T>(IEnumerable<T>! l) {
      List<T>! res = new List<T> ();
      foreach (T x in l)
        res.Add(x);
      return res;
    }

    public static TypeSeq! ToTypeSeq(VCExpr[]! exprs, int startIndex)
      requires forall{int i in (0:exprs.Length); exprs[i] != null};
    {
      TypeSeq! res = new TypeSeq ();
      for (int i = startIndex; i < exprs.Length; ++i)
        res.Add(((!)exprs[i]).Type);
      return res;
    }

    public static List<T!>! ToNonNullList<T> (params T[]! args) {
      List<T!>! res = new List<T!> (args.Length);
      foreach (T t in args)
        res.Add((!)t);
      return res;
    }

    public static IDictionary<A, B>! Clone<A,B>(IDictionary<A,B>! dict) {
      IDictionary<A,B>! res = new Dictionary<A,B> (dict.Count);
      foreach (KeyValuePair<A,B> pair in dict)
        res.Add(pair);
      return res;
    }
  }

  public abstract class VCExpr {
    public abstract Type! Type { get; }

    public abstract Result Accept<Result, Arg>(IVCExprVisitor<Result, Arg>! visitor, Arg arg);

    [Pure]
    public override string! ToString() {
      StringWriter! sw = new StringWriter();
      VCExprPrinter! printer = new VCExprPrinter ();
      printer.Print(this, sw);
      return (!)sw.ToString();
    }
  }

  /////////////////////////////////////////////////////////////////////////////////
  // Literal expressions

  public class VCExprLiteral : VCExpr {
    private readonly Type! LitType;
    public override Type! Type { get { return LitType; } }
    internal VCExprLiteral(Type! type) {
      this.LitType = type;
    }
    public override Result Accept<Result, Arg>(IVCExprVisitor<Result, Arg>! visitor, Arg arg) {
      return visitor.Visit(this, arg);
    }
  }

  public class VCExprIntLit : VCExprLiteral
  {
    public readonly BigNum Val;
    internal VCExprIntLit(BigNum val) {
      base(Type.Int);
      this.Val = val;
    }    
    [Pure][Reads(ReadsAttribute.Reads.Nothing)]
    public override bool Equals(object that) {
      if (Object.ReferenceEquals(this, that))
        return true;
      if (that is VCExprIntLit)
        return Val == ((VCExprIntLit)that).Val;
      return false;
    }
    [Pure]
    public override int GetHashCode() {
      return Val.GetHashCode() * 72321;
    }
  }

  /////////////////////////////////////////////////////////////////////////////////
  // Operator expressions with fixed arity

  public abstract class VCExprNAry : VCExpr, IEnumerable<VCExpr!> {
    public readonly VCExprOp! Op;
    public int Arity { get { return Op.Arity; } }
    public int TypeParamArity { get { return Op.TypeParamArity; } }
	public int Length { get { return Arity; } }
    // the sub-expressions of the expression
    public abstract VCExpr! this[int index] { get; }

    // the type arguments
    public abstract List<Type!>! TypeArguments { get; }

    [Pure] [GlobalAccess(false)] [Escapes(true,false)]
    public IEnumerator<VCExpr!>! GetEnumerator() {
      for (int i = 0; i < Arity; ++i)
        yield return this[i];
    }
    [Pure] [GlobalAccess(false)] [Escapes(true,false)]
    IEnumerator! System.Collections.IEnumerable.GetEnumerator() {
      for (int i = 0; i < Arity; ++i)
        yield return this[i];
    }

    [Pure][Reads(ReadsAttribute.Reads.Nothing)]
    public override bool Equals(object that) {
      if (Object.ReferenceEquals(this, that))
        return true;
      if (that is VCExprNAry) {
        // we compare the subterms iteratively (not recursively)
        // to avoid stack overflows

        VCExprNAryEnumerator enum0 = new VCExprNAryEnumerator(this);
        VCExprNAryEnumerator enum1 = new VCExprNAryEnumerator((VCExprNAry)that);

        while (true) {
          bool next0 = enum0.MoveNext();
          bool next1 = enum1.MoveNext();
          if (next0 != next1)
            return false;
          if (!next0)
            return true;

          VCExprNAry nextExprNAry0 = enum0.Current as VCExprNAry;
          VCExprNAry nextExprNAry1 = enum1.Current as VCExprNAry;

          if ((nextExprNAry0 == null) != (nextExprNAry1 == null))
            return false;
          if (nextExprNAry0 != null && nextExprNAry1 != null) {
            if (!nextExprNAry0.Op.Equals(nextExprNAry1.Op))
              return false;
          } else {
            if (!((!)enum0.Current).Equals(enum1.Current))
              return false;
          }
        }
      }
      return false;
    }
    [Pure]
    public override int GetHashCode() {
      return HelperFuns.PolyHash(Op.GetHashCode() * 123 + Arity * 61521,
                                 3, this);
    }

    internal VCExprNAry(VCExprOp! op) {
      this.Op = op;
    }
    public override Result Accept<Result, Arg>(IVCExprVisitor<Result, Arg>! visitor, Arg arg) {
      return visitor.Visit(this, arg);
    }
    public Result Accept<Result, Arg>(IVCExprOpVisitor<Result, Arg>! visitor, Arg arg) {
      return Op.Accept(this, visitor, arg);
    }

    internal static readonly List<Type!>! EMPTY_TYPE_LIST = new List<Type!> ();
    internal static readonly List<VCExpr!>! EMPTY_VCEXPR_LIST = new List<VCExpr!> ();
  }

  // We give specialised implementations for nullary, unary and binary expressions

  internal class VCExprNullary : VCExprNAry {
    private readonly Type! ExprType;
    public override Type! Type { get { return ExprType; } }
    public override VCExpr! this[int index] { get {
      assert false; // no arguments
    } }

    // the type arguments
    public override List<Type!>! TypeArguments { get {
      return EMPTY_TYPE_LIST;
    } }

    internal VCExprNullary(VCExprOp! op)
      requires op.Arity == 0 && op.TypeParamArity == 0; {
      base(op);
      this.ExprType = op.InferType(EMPTY_VCEXPR_LIST, EMPTY_TYPE_LIST);
    }
  }

  internal class VCExprUnary : VCExprNAry {
    private readonly VCExpr! Argument;
    private readonly Type! ExprType;
    public override Type! Type { get { return ExprType; } }
    public override VCExpr! this[int index] { get {
      assume index == 0;
      return Argument;
    } }

    // the type arguments
    public override List<Type!>! TypeArguments { get {
      return EMPTY_TYPE_LIST;
    } }

    internal VCExprUnary(VCExprOp! op, List<VCExpr!>! arguments)
      requires op.Arity == 1 && op.TypeParamArity == 0 && arguments.Count == 1; {
      base(op);
      this.Argument = arguments[0];
      this.ExprType =
        op.InferType(arguments, EMPTY_TYPE_LIST);
    }
    
    internal VCExprUnary(VCExprOp! op, VCExpr! argument)
      requires op.Arity == 1 && op.TypeParamArity == 0; {
      base(op);
      this.Argument = argument;
      // PR: could be optimised so that the argument does
      // not have to be boxed in an array each time
      this.ExprType =
        op.InferType(HelperFuns.ToNonNullList(argument), EMPTY_TYPE_LIST);
    }
  }

  internal class VCExprBinary : VCExprNAry {
    private readonly VCExpr! Argument0;
    private readonly VCExpr! Argument1;
    private readonly Type! ExprType;
    public override Type! Type { get { return ExprType; } }
    public override VCExpr! this[int index] { get {
      switch (index) {
      case 0: return Argument0;
      case 1: return Argument1;
      default: assert false;
      }
    } }

    // the type arguments
    public override List<Type!>! TypeArguments { get {
      return EMPTY_TYPE_LIST;
    } }

    internal VCExprBinary(VCExprOp! op, List<VCExpr!>! arguments)
      requires op.Arity == 2 && op.TypeParamArity == 0 && arguments.Count == 2; {
      base(op);
      this.Argument0 = arguments[0];
      this.Argument1 = arguments[1];
      this.ExprType = op.InferType(arguments, EMPTY_TYPE_LIST);
    }

    internal VCExprBinary(VCExprOp! op, VCExpr! argument0, VCExpr! argument1)
      requires op.Arity == 2 && op.TypeParamArity == 0; {
      base(op);
      this.Argument0 = argument0;
      this.Argument1 = argument1;
      // PR: could be optimised so that the arguments do
      // not have to be boxed in an array each time
      this.ExprType =
        op.InferType(HelperFuns.ToNonNullList(argument0, argument1),
                     EMPTY_TYPE_LIST);
    }
  }

  internal class VCExprMultiAry : VCExprNAry {
    private readonly List<VCExpr!>! Arguments;
    private readonly List<Type!>! TypeArgumentsAttr;

    private readonly Type! ExprType;
    public override Type! Type { get { return ExprType; } }
    public override VCExpr! this[int index] { get {
      assume index >= 0 && index < Arity;
      return (!)Arguments[index];
    } }

    // the type arguments
    public override List<Type!>! TypeArguments { get {
      return TypeArgumentsAttr;
    } }

    internal VCExprMultiAry(VCExprOp! op, List<VCExpr!>! arguments) {
      this(op, arguments, EMPTY_TYPE_LIST);
    }
    internal VCExprMultiAry(VCExprOp! op, List<VCExpr!>! arguments, List<Type!>! typeArguments)
      requires (arguments.Count > 2 || typeArguments.Count > 0);
      requires op.Arity == arguments.Count;
      requires op.TypeParamArity == typeArguments.Count;
    {
      base(op);
      this.Arguments = arguments;
      this.TypeArgumentsAttr = typeArguments;
      this.ExprType = op.InferType(arguments, typeArguments);
    }
  }

  /////////////////////////////////////////////////////////////////////////////////
  // The various operators available

  public abstract class VCExprOp {
    // the number of value parameters
    public abstract int Arity { get; }
    // the number of type parameters
    public abstract int TypeParamArity { get; }

    public abstract Type! InferType(List<VCExpr!>! args, List<Type!>! typeArgs);

    public virtual Result Accept<Result, Arg>
           (VCExprNAry! expr, IVCExprOpVisitor<Result, Arg>! visitor, Arg arg) {
      VCExpressionGenerator.SingletonOp op;
      if (VCExpressionGenerator.SingletonOpDict.TryGetValue(this, out op)) {
        switch(op) {
        case VCExpressionGenerator.SingletonOp.NotOp:
          return visitor.VisitNotOp(expr, arg);
        case VCExpressionGenerator.SingletonOp.EqOp:
          return visitor.VisitEqOp(expr, arg);
        case VCExpressionGenerator.SingletonOp.NeqOp:
          return visitor.VisitNeqOp(expr, arg);
        case VCExpressionGenerator.SingletonOp.AndOp:
          return visitor.VisitAndOp(expr, arg);
        case VCExpressionGenerator.SingletonOp.OrOp:
          return visitor.VisitOrOp(expr, arg);
        case VCExpressionGenerator.SingletonOp.ImpliesOp:
          return visitor.VisitImpliesOp(expr, arg);
        case VCExpressionGenerator.SingletonOp.AddOp:
          return visitor.VisitAddOp(expr, arg);
        case VCExpressionGenerator.SingletonOp.SubOp:
          return visitor.VisitSubOp(expr, arg);
        case VCExpressionGenerator.SingletonOp.MulOp:
          return visitor.VisitMulOp(expr, arg);
        case VCExpressionGenerator.SingletonOp.DivOp:
          return visitor.VisitDivOp(expr, arg);
        case VCExpressionGenerator.SingletonOp.ModOp:
          return visitor.VisitModOp(expr, arg);
        case VCExpressionGenerator.SingletonOp.LtOp:
          return visitor.VisitLtOp(expr, arg);
        case VCExpressionGenerator.SingletonOp.LeOp:
          return visitor.VisitLeOp(expr, arg);
        case VCExpressionGenerator.SingletonOp.GtOp:
          return visitor.VisitGtOp(expr, arg);
        case VCExpressionGenerator.SingletonOp.GeOp:
          return visitor.VisitGeOp(expr, arg);
        case VCExpressionGenerator.SingletonOp.SubtypeOp:
          return visitor.VisitSubtypeOp(expr, arg);
        case VCExpressionGenerator.SingletonOp.Subtype3Op:
          return visitor.VisitSubtype3Op(expr, arg);
        case VCExpressionGenerator.SingletonOp.BvConcatOp:
          return visitor.VisitBvConcatOp(expr, arg);
        default:
          assert false;
        }
      } else {
        assert false;
      }
    }
  }

  public class VCExprNAryOp : VCExprOp {
    private readonly Type! OpType;
    private readonly int OpArity;

    public override int Arity { get { return OpArity; } }
    public override int TypeParamArity { get { return 0; } }
    public override Type! InferType(List<VCExpr!>! args, List<Type!>! typeArgs) {
      return OpType;
    }

    internal VCExprNAryOp(int arity, Type! type) {
      this.OpArity = arity;
      this.OpType = type;
    }
  }

  public class VCExprDistinctOp : VCExprNAryOp {
    internal VCExprDistinctOp(int arity) {
      base(arity, Type.Bool);
    }
    [Pure][Reads(ReadsAttribute.Reads.Nothing)]
    public override bool Equals(object that) {
      if (Object.ReferenceEquals(this, that))
        return true;
      if (that is VCExprDistinctOp)
        return Arity == ((VCExprDistinctOp)that).Arity;
      return false;
    }
    [Pure]
    public override int GetHashCode() {
      return Arity * 917632481;
    }
    public override Result Accept<Result, Arg>
           (VCExprNAry! expr, IVCExprOpVisitor<Result, Arg>! visitor, Arg arg) {
      return visitor.VisitDistinctOp(expr, arg);
    }
  }

  public class VCExprLabelOp : VCExprOp {
    public override int Arity { get { return 1; } }
    public override int TypeParamArity { get { return 0; } }
    public override Type! InferType(List<VCExpr!>! args, List<Type!>! typeArgs) {
      return args[0].Type;
    }
    
    public readonly bool pos;
    public readonly string! label;

    [Pure][Reads(ReadsAttribute.Reads.Nothing)]
    public override bool Equals(object that) {
      if (Object.ReferenceEquals(this, that))
        return true;
      if (that is VCExprLabelOp) {
        VCExprLabelOp! thatOp = (VCExprLabelOp)that;
        return this.pos == thatOp.pos && this.label.Equals(thatOp.label);
      }
      return false;
    }
    [Pure]
    public override int GetHashCode() {
      return (pos ? 9817231 : 7198639) + label.GetHashCode();
    }

    internal VCExprLabelOp(bool pos, string! l) {
      this.pos = pos;
      this.label = pos ? "+" + l : "@" + l;
    }
    public override Result Accept<Result, Arg>
           (VCExprNAry! expr, IVCExprOpVisitor<Result, Arg>! visitor, Arg arg) {
      return visitor.VisitLabelOp(expr, arg);
    }
  }

  public class VCExprSelectOp : VCExprOp {
    private readonly int MapArity;
    private readonly int MapTypeParamArity;
    public override int Arity { get { return MapArity + 1; } }
    public override int TypeParamArity { get { return MapTypeParamArity; } }

    public override Type! InferType(List<VCExpr!>! args, List<Type!>! typeArgs) {
      MapType! mapType = args[0].Type.AsMap;
      assert TypeParamArity == mapType.TypeParameters.Length;
      IDictionary<TypeVariable!, Type!>! subst = new Dictionary<TypeVariable!, Type!> ();
      for (int i = 0; i < TypeParamArity; ++i)
        subst.Add(mapType.TypeParameters[i], typeArgs[i]);
      return mapType.Result.Substitute(subst);
    }
    
    [Pure][Reads(ReadsAttribute.Reads.Nothing)]
    public override bool Equals(object that) {
      if (Object.ReferenceEquals(this, that))
        return true;
      if (that is VCExprSelectOp)
        return Arity == ((VCExprSelectOp)that).Arity &&
          TypeParamArity == ((VCExprSelectOp)that).TypeParamArity;
      return false;
    }
    [Pure]
    public override int GetHashCode() {
      return Arity * 1212481 + TypeParamArity * 298741;
    }

    internal VCExprSelectOp(int arity, int typeParamArity)
      requires 0 <= arity && 0 <= typeParamArity;
    {
      this.MapArity = arity;
      this.MapTypeParamArity = typeParamArity;
    }
    public override Result Accept<Result, Arg>
           (VCExprNAry! expr, IVCExprOpVisitor<Result, Arg>! visitor, Arg arg) {
      return visitor.VisitSelectOp(expr, arg);
    }
  }

  public class VCExprStoreOp : VCExprOp {
    private readonly int MapArity;
    private readonly int MapTypeParamArity;
    public override int Arity { get { return MapArity + 2; } }
    // stores never need explicit type parameters, because also the
    // rhs is a value argument
    public override int TypeParamArity { get { return MapTypeParamArity; } }

    public override Type! InferType(List<VCExpr!>! args, List<Type!>! typeArgs) {
      return args[0].Type;
    }
    
    [Pure][Reads(ReadsAttribute.Reads.Nothing)]
    public override bool Equals(object that) {
      if (Object.ReferenceEquals(this, that))
        return true;
      if (that is VCExprStoreOp)
        return Arity == ((VCExprStoreOp)that).Arity;
      return false;
    }
    [Pure]
    public override int GetHashCode() {
      return Arity * 91361821;
    }

    internal VCExprStoreOp(int arity, int typeParamArity)
      requires 0 <= arity && 0 <= typeParamArity;
    {
      this.MapArity = arity;
      this.MapTypeParamArity = typeParamArity;
    }
    public override Result Accept<Result, Arg>
           (VCExprNAry! expr, IVCExprOpVisitor<Result, Arg>! visitor, Arg arg) {
      return visitor.VisitStoreOp(expr, arg);
    }
  }

  public class VCExprIfThenElseOp : VCExprOp {
    public override int Arity { get { return 3; } }
    public override int TypeParamArity { get { return 0; } }
    public override Type! InferType(List<VCExpr!>! args, List<Type!>! typeArgs) {
      return args[1].Type;
    }

    [Pure][Reads(ReadsAttribute.Reads.Nothing)]
    public override bool Equals(object that) {
      if (Object.ReferenceEquals(this, that))
        return true;
      if (that is VCExprIfThenElseOp)
        return true;
      return false;
    }
    [Pure]
    public override int GetHashCode() {
      return 1;
    }

    internal VCExprIfThenElseOp() {
    }
    public override Result Accept<Result, Arg>
           (VCExprNAry! expr, IVCExprOpVisitor<Result, Arg>! visitor, Arg arg) {
      return visitor.VisitIfThenElseOp(expr, arg);
    }
  }
  
  public class VCExprCustomOp : VCExprOp {
    public readonly string! Name;
    int arity;
    public readonly Type! Type;
    public VCExprCustomOp(string! name, int arity, Type! type) {
      this.Name = name;
      this.arity = arity;
      this.Type = type;
    }
    [Pure][Reads(ReadsAttribute.Reads.Nothing)]
    public override bool Equals(object that) {
      if (Object.ReferenceEquals(this, that))
        return true;
      VCExprCustomOp t = that as VCExprCustomOp;
      if (t == null)
        return false;
      return this.Name == t.Name && this.arity == t.arity && this.Type == t.Type;
    }
    public override int Arity { get { return arity; } }
    public override int TypeParamArity { get { return 0; } }
    public override Type! InferType(List<VCExpr!>! args, List<Type!>! typeArgs) { return Type; }
    public override Result Accept<Result, Arg>
           (VCExprNAry! expr, IVCExprOpVisitor<Result, Arg>! visitor, Arg arg) {
      return visitor.VisitCustomOp(expr, arg);
    }
  }

  /////////////////////////////////////////////////////////////////////////////////
  // Bitvector operators

  public class VCExprBvOp : VCExprOp {
    public readonly int Bits;

    public override int Arity { get { return 1; } }
    public override int TypeParamArity { get { return 0; } }
    public override Type! InferType(List<VCExpr!>! args, List<Type!>! typeArgs) {
      return Type.GetBvType(Bits);
    }

    [Pure][Reads(ReadsAttribute.Reads.Nothing)]
    public override bool Equals(object that) {
      if (Object.ReferenceEquals(this, that))
        return true;
      if (that is VCExprBvOp)
        return this.Bits == ((VCExprBvOp)that).Bits;
      return false;
    }
    [Pure]
    public override int GetHashCode() {
      return Bits * 81748912;
    }

    internal VCExprBvOp(int bits) {
      this.Bits = bits;
    }
    public override Result Accept<Result, Arg>
           (VCExprNAry! expr, IVCExprOpVisitor<Result, Arg>! visitor, Arg arg) {
      return visitor.VisitBvOp(expr, arg);
    }
  }

  public class VCExprBvExtractOp : VCExprOp {
    public readonly int Start;
    public readonly int End;
    public readonly int Total;  // the number of bits from which the End-Start bits are extracted

    public override int Arity { get { return 1; } }
    public override int TypeParamArity { get { return 0; } }
    public override Type! InferType(List<VCExpr!>! args, List<Type!>! typeArgs) {
      return Type.GetBvType(End - Start);
    }

    [Pure][Reads(ReadsAttribute.Reads.Nothing)]
    public override bool Equals(object that) {
      if (Object.ReferenceEquals(this, that))
        return true;
      if (that is VCExprBvExtractOp) {
        VCExprBvExtractOp! thatExtract = (VCExprBvExtractOp)that;
        return this.Start == thatExtract.Start && this.End == thatExtract.End && this.Total == thatExtract.Total;
      }
      return false;
    }
    [Pure]
    public override int GetHashCode() {
      return Start * 81912 + End * 978132 + Total * 571289;
    }

    internal VCExprBvExtractOp(int start, int end, int total)
      requires 0 <= start && start <= end && end <= total;
    {
      this.Start = start;
      this.End = end;
      this.Total = total;
    }
    public override Result Accept<Result, Arg>
           (VCExprNAry! expr, IVCExprOpVisitor<Result, Arg>! visitor, Arg arg) {
      return visitor.VisitBvExtractOp(expr, arg);
    }
  }

  public class VCExprBvConcatOp : VCExprOp {
    public readonly int LeftSize;
    public readonly int RightSize;
    
    public override int Arity { get { return 2; } }
    public override int TypeParamArity { get { return 0; } }
    public override Type! InferType(List<VCExpr!>! args, List<Type!>! typeArgs) {
      return Type.GetBvType(args[0].Type.BvBits + args[1].Type.BvBits);
    }

    [Pure][Reads(ReadsAttribute.Reads.Nothing)]
    public override bool Equals(object that) {
      if (Object.ReferenceEquals(this, that))
        return true;
      if (that is VCExprBvConcatOp) {
        VCExprBvConcatOp thatConcat = (VCExprBvConcatOp)that;
        return this.LeftSize == thatConcat.LeftSize && this.RightSize == thatConcat.RightSize;
      }
      return false;
    }
    [Pure]
    public override int GetHashCode() {
      return LeftSize * 81912 + RightSize * 978132;
    }

    internal VCExprBvConcatOp(int leftSize, int rightSize)
      requires 0 <= leftSize && 0 <= rightSize;
    {
      this.LeftSize = leftSize;
      this.RightSize = rightSize;
    }
    public override Result Accept<Result, Arg>
           (VCExprNAry! expr, IVCExprOpVisitor<Result, Arg>! visitor, Arg arg) {
      return visitor.VisitBvConcatOp(expr, arg);
    }
  }

  /////////////////////////////////////////////////////////////////////////////////
  // References to user-defined Boogie functions

  public class VCExprBoogieFunctionOp : VCExprOp {
    public readonly Function! Func;

    public override int Arity { get { return Func.InParams.Length; } }
    public override int TypeParamArity { get { return Func.TypeParameters.Length; } }
    public override Type! InferType(List<VCExpr!>! args, List<Type!>! typeArgs) {
      assert TypeParamArity == Func.TypeParameters.Length;
      if (TypeParamArity == 0)
        return ((!)Func.OutParams[0]).TypedIdent.Type;
      IDictionary<TypeVariable!, Type!>! subst = new Dictionary<TypeVariable!, Type!> (TypeParamArity);
      for (int i = 0; i < TypeParamArity; ++i)
        subst.Add(Func.TypeParameters[i], typeArgs[i]);
      return ((!)Func.OutParams[0]).TypedIdent.Type.Substitute(subst);
    }

    [Pure][Reads(ReadsAttribute.Reads.Nothing)]
    public override bool Equals(object that) {
      if (Object.ReferenceEquals(this, that))
        return true;
      if (that is VCExprBoogieFunctionOp)
        return this.Func.Equals(((VCExprBoogieFunctionOp)that).Func);
      return false;
    }
    [Pure]
    public override int GetHashCode() {
      return Func.GetHashCode() + 18731;
    }

    // we require that the result type of the expression is specified, because we
    // do not want to perform full type inference at this point
    internal VCExprBoogieFunctionOp(Function! func) {
      this.Func = func;
    }
    public override Result Accept<Result, Arg>
           (VCExprNAry! expr, IVCExprOpVisitor<Result, Arg>! visitor, Arg arg) {
      return visitor.VisitBoogieFunctionOp(expr, arg);
    }
  }

  /////////////////////////////////////////////////////////////////////////////////
  // Binders (quantifiers and let-expressions). We introduce our own class for
  // term variables, but use the Boogie-AST class for type variables

  public class VCExprVar : VCExpr {
    // the name of the variable. Note that the name is not used for comparison,
    // i.e., there can be two distinct variables with the same name
    public readonly string! Name;
    private readonly Type! VarType;
    public override Type! Type { get { return VarType; } }

    internal VCExprVar(string! name, Type! type) {
      this.Name = name;
      this.VarType = type;
    }
    public override Result Accept<Result, Arg>(IVCExprVisitor<Result, Arg>! visitor, Arg arg) {
      return visitor.Visit(this, arg);
    }
  }

  public abstract class VCExprBinder : VCExpr {
    public readonly VCExpr! Body;
    public readonly List<TypeVariable!>! TypeParameters;
    public readonly List<VCExprVar!>! BoundVars;
 
    public override Type! Type { get { return Body.Type; } }

    internal VCExprBinder(List<TypeVariable!>! typeParams,
                          List<VCExprVar!>! boundVars,
                          VCExpr! body)
      requires boundVars.Count + typeParams.Count > 0; {     // only nontrivial binders ...
      this.TypeParameters = typeParams;
      this.BoundVars = boundVars;
      this.Body = body;
    }
  }

  public class VCTrigger {
    public readonly bool Pos;
    public readonly List<VCExpr!>! Exprs;

    [Pure][Reads(ReadsAttribute.Reads.Nothing)]
    public override bool Equals(object that) {
      if (Object.ReferenceEquals(this, that))
        return true;
      if (that is VCTrigger) {
        VCTrigger! thatTrigger = (VCTrigger)that;
        return this.Pos == thatTrigger.Pos &&
          HelperFuns.SameElements(this.Exprs, thatTrigger.Exprs);
      }
      return false;
    }
    [Pure]
    public override int GetHashCode() {
      return (Pos ? 913821 : 871334) +
             HelperFuns.PolyHash(123, 7, this.Exprs);
    }

    public VCTrigger(bool pos, List<VCExpr!>! exprs) {
      this.Pos = pos;
      this.Exprs = exprs;
    }
  }

  public class VCQuantifierInfos {
    public readonly string qid;
    public readonly int uniqueId;
    public readonly bool bvZ3Native;
    public QKeyValue attributes;

    public VCQuantifierInfos(string qid, int uniqueId, bool bvZ3Native, QKeyValue attributes) {
      this.qid = qid;
      this.uniqueId = uniqueId;
      this.bvZ3Native = bvZ3Native;
      this.attributes = attributes;
    }
  }

  public enum Quantifier { ALL, EX };

  public class VCExprQuantifier : VCExprBinder {
    public readonly Quantifier Quan;

    public readonly List<VCTrigger!>! Triggers;
    public readonly VCQuantifierInfos! Infos;

    // Equality is /not/ modulo bound renaming at this point
    [Pure][Reads(ReadsAttribute.Reads.Nothing)]
    public override bool Equals(object that) {
      if (Object.ReferenceEquals(this, that))
        return true;
      if (that is VCExprQuantifier) {
        VCExprQuantifier! thatQuan = (VCExprQuantifier)that;
        return this.Quan == thatQuan.Quan &&
               HelperFuns.SameElements(this.Triggers, thatQuan.Triggers) &&
               HelperFuns.SameElements(this.TypeParameters, thatQuan.TypeParameters) &&
               HelperFuns.SameElements(this.BoundVars, thatQuan.BoundVars) &&
               this.Body.Equals(thatQuan.Body);
      }
      return false;
    }
    [Pure]
    public override int GetHashCode() {
      return Quan.GetHashCode() +
        HelperFuns.PolyHash(973219, 7, TypeParameters) +
        HelperFuns.PolyHash(998431, 9, BoundVars) +
        HelperFuns.PolyHash(123, 11, Triggers);
    }

    internal VCExprQuantifier(Quantifier kind,
                              List<TypeVariable!>! typeParams,
                              List<VCExprVar!>! boundVars,
                              List<VCTrigger!>! triggers,
                              VCQuantifierInfos! infos,
                              VCExpr! body) {
      base(typeParams, boundVars, body);
      this.Quan = kind;
      this.Triggers = triggers;
      this.Infos = infos;
    }
    public override Result Accept<Result, Arg>(IVCExprVisitor<Result, Arg>! visitor, Arg arg) {
      return visitor.Visit(this, arg);
    }
  }

  /////////////////////////////////////////////////////////////////////////////////
  // Let-Bindings

  public class VCExprLetBinding {
    public readonly VCExprVar! V;
    public readonly VCExpr! E;

    [Pure][Reads(ReadsAttribute.Reads.Nothing)]
    public override bool Equals(object that) {
      if (Object.ReferenceEquals(this, that))
        return true;
      if (that is VCExprLetBinding) {
        VCExprLetBinding! thatB = (VCExprLetBinding)that;
        return this.V.Equals(thatB.V) && this.E.Equals(thatB.E);
      }
      return false;
    }
    [Pure]
    public override int GetHashCode() {
      return V.GetHashCode() * 71261 + E.GetHashCode();
    }
    
    internal VCExprLetBinding(VCExprVar! v, VCExpr! e) {
      this.V = v;
      this.E = e;
      assert v.Type.Equals(e.Type);
    }
  }

  public class VCExprLet : VCExprBinder, IEnumerable<VCExprLetBinding!> {
    private readonly List<VCExprLetBinding!>! Bindings;

    public int Length { get { return Bindings.Count; } }
    public VCExprLetBinding! this[int index] { get {
      return Bindings[index];
    } }

    [Pure][Reads(ReadsAttribute.Reads.Nothing)]
    public override bool Equals(object that) {
      if (Object.ReferenceEquals(this, that))
        return true;
      if (that is VCExprLet) {
        VCExprLet! thatLet = (VCExprLet)that;
        return this.Body.Equals(thatLet.Body) &&
               HelperFuns.SameElements(this, (VCExprLet)that);
      }
      return false;
    }
    [Pure]
    public override int GetHashCode() {
      return HelperFuns.PolyHash(Body.GetHashCode(), 9, Bindings);
    }

    [Pure] [GlobalAccess(false)] [Escapes(true,false)]
    public IEnumerator<VCExprLetBinding!>! GetEnumerator() {
      return Bindings.GetEnumerator();
    }
    [Pure] [GlobalAccess(false)] [Escapes(true,false)]
    IEnumerator! System.Collections.IEnumerable.GetEnumerator() {
      return Bindings.GetEnumerator();
    }

    private static List<VCExprVar!>! toSeq(List<VCExprLetBinding!>! bindings) {
      List<VCExprVar!>! res = new List<VCExprVar!> ();
      foreach (VCExprLetBinding! b in bindings)
        res.Add(b.V);
      return res;
    }

    internal VCExprLet(List<VCExprLetBinding!>! bindings,
                       VCExpr! body) {
      base(new List<TypeVariable!> (), toSeq(bindings), body);
      this.Bindings = bindings;
    }
    public override Result Accept<Result, Arg>(IVCExprVisitor<Result, Arg>! visitor, Arg arg) {
      return visitor.Visit(this, arg);
    }
  }
}