Newer
Older
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
/**************************************************************************/
/* */
/* This file is part of Frama-C. */
/* */
/* Copyright (C) 2007-2018 */
/* CEA (Commissariat à l'énergie atomique et aux énergies */
/* alternatives) */
/* INRIA (Institut National de Recherche en Informatique et en */
/* Automatique) */
/* */
/* you can redistribute it and/or modify it under the terms of the GNU */
/* Lesser General Public License as published by the Free Software */
/* Foundation, version 2.1. */
/* */
/* It is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
/* GNU Lesser General Public License for more details. */
/* */
/* See the GNU Lesser General Public License version 2.1 */
/* for more details (enclosed in the file licenses/LGPLv2.1). */
/* */
/**************************************************************************/
/* Grammar for C annotations */
%{
open Cil_types
open Logic_ptree
open Logic_utils
let loc () =
Cil_datatype.Location.of_lexing_loc
(symbol_start_pos (), symbol_end_pos ())
let lexeme_start nb =
Cil_datatype.Position.of_lexing_pos (Parsing.rhs_start_pos nb)
let lexeme_end nb =
Cil_datatype.Position.of_lexing_pos (Parsing.rhs_end_pos nb)
let lexeme_loc nb = (lexeme_start nb, lexeme_end nb)
let info x = { lexpr_node = x; lexpr_loc = loc () }
let loc_info loc x = { lexpr_node = x; lexpr_loc = loc }
let loc_start x = fst x.lexpr_loc
let loc_end x = snd x.lexpr_loc
(* Normalize p1 && (p2 && p3) into (p1 && p2) && p3 *)
let rec pland p1 p2 =
match p2.lexpr_node with
| PLand (p3,p4) ->
let loc = (loc_start p1, loc_end p3) in
PLand(loc_info loc (pland p1 p3),p4)
| _ -> PLand(p1,p2)
let rec plor p1 p2 =
match p2.lexpr_node with
| PLor(p3,p4) ->
let loc = (loc_start p1, loc_end p3) in
PLor(loc_info loc (plor p1 p3),p4)
| _ -> PLor(p1,p2)
let clause_order i name1 name2 =
raise
(Not_well_formed
(lexeme_loc i,
"wrong order of clause in contract: "
^ name1 ^ " after " ^ name2 ^ "."))
let missing i token next_token =
raise
(Not_well_formed
(lexeme_loc i,
Format.asprintf "expecting '%s' before %s" token next_token))
type sense_of_relation = Unknown | Disequal | Less | Greater
let check_empty (loc,msg) l =
match l with
[] -> ()
| _ -> raise (Not_well_formed (loc,msg))
let relation_sense rel sense =
match rel, sense with
| Eq, (Unknown|Greater|Less) -> sense, true
| Neq, Unknown -> Disequal, false (* No chain of disequality for now*)
| (Gt|Ge), (Unknown|Greater) -> Greater, true
| (Lt|Le), (Unknown|Less) -> Less, true
| _ -> sense, false
let type_variables_stack = Stack.create ()
let enter_type_variables_scope l =
List.iter Logic_env.add_typename l;
Stack.push l type_variables_stack
let exit_type_variables_scope () =
let l = Stack.pop type_variables_stack in
List.iter Logic_env.remove_typename l
let rt_type = ref false
let set_rt_type () = rt_type:= true
let reset_rt_type () = rt_type:=false
let is_rt_type () = !rt_type
let loc_decl d = { decl_node = d; decl_loc = loc () }
let concat_froms a1 a2 =
let compare_pair (b1,_) (b2,_) = is_same_lexpr b1 b2 in
(* NB: the following has an horrible complexity, but the order of
clauses in the input is preserved. *)
let concat_one acc (_,f2 as p) =
try
let (_,f1) = List.find (compare_pair p) acc
in
match (f1, f2) with
| _,FromAny ->
(* the new fundeps does not give more information than the one
which is already present. Just ignore it.
*)
acc
| FromAny, _ ->
(* the new fundeps is strictly more precise than the old one.
We replace the old dependency by the new one, but keep
the location at its old place in the list. This ensures
that we get the exact same clause if we try to
link the original contract with its pretty-printed version. *)
Extlib.replace compare_pair p acc
| From _, From _ ->
(* we keep the two functional dependencies,
as they have to be proved separately. *)
acc @ [p]
with Not_found -> acc @ [p]
in List.fold_left concat_one a1 a2
let concat_allocation fa1 fa2 =
match fa1,fa2 with
| FreeAllocAny,_ -> fa2
| _,FreeAllocAny -> fa1
| FreeAlloc(f1,a1),FreeAlloc(f2,a2) -> FreeAlloc(f2@f1,a2@a1)
(* a1 represents the assigns _after_ the current clause a2. *)
let concat_assigns a1 a2 =
match a1,a2 with
WritesAny,a -> Writes (concat_froms [] a)
| Writes [], [] -> a1
| Writes [], _ | Writes _, [] ->
raise (
Not_well_formed (loc(),"Mixing \\nothing and a real location"))
| Writes a1, a2 -> Writes (concat_froms a2 a1)
let concat_loop_assigns_allocation annots bhvs2 a2 fa2=
(* NB: this is supposed to merge assigns related to named behaviors, in
case of annotation like
for a,b: assigns x,y;
for b,c: assigns z,t;
DO NOT CALL this function for loop assigns not attached to specific
behaviors.
*)
assert (bhvs2 <> []);
if fa2 == FreeAllocAny && a2 == WritesAny
then annots
else
let split l1 l2 =
let treat_one (only1,both,only2) x =
if List.mem x l1 then
(Extlib.filter_out (fun y -> x=y) only1,x::both,only2)
else (only1,both,x::only2)
in List.fold_left treat_one (l1,[],[]) l2
in
let treat_one ca (bhvs2,acc) =
match ca,a2,fa2 with
(AAssigns(bhvs1,a1)),(Writes a2),_ ->
let (only1,both,only2) = split bhvs1 bhvs2 in
(match both with
| [] -> bhvs2, ca::acc
| _ ->
let common_annot = AAssigns(both,concat_assigns a1 a2) in
let annots =
match only1 with
| [] -> common_annot :: acc
| _ -> AAssigns(only1,a1) :: common_annot :: acc
in only2,annots)
| (AAllocation(bhvs1,fa1)),_,(FreeAlloc _) ->
let (only1,both,only2) = split bhvs1 bhvs2 in
(match both with
| [] -> bhvs2, ca::acc
| _ ->
let common_annot =
AAllocation(both,concat_allocation fa1 fa2)
in
let annots =
match only1 with
| [] -> common_annot :: acc
| _ -> AAllocation(only1,fa1) :: common_annot :: acc
in only2,annots)
| _,_,_ -> bhvs2,ca::acc
in
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
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
let (bhvs2, annots) = List.fold_right treat_one annots (bhvs2,[]) in
match bhvs2 with
| [] -> annots (* Already considered all cases. *)
| _ ->
let annots = if a2 <> WritesAny
then AAssigns (bhvs2,a2) :: annots
else annots
in
if fa2 <> FreeAllocAny
then AAllocation (bhvs2,fa2) :: annots
else annots
let obsolete name ~source ~now =
Kernel.warning ~source
"parsing obsolete ACSL construct '%s'. '%s' should be used instead."
name now
let escape =
let regex1 = Str.regexp "\\(\\(\\\\\\\\\\)*[^\\]\\)\\(['\"]\\)" in
let regex2 = Str.regexp "\\(\\\\\\\\\\)*\\\\$" in
fun str ->
let str = Str.global_replace regex1 "\\1\\\\3" str in
Str.global_replace regex2 "\\1\\\\" str
let cv_const = Attr ("const", [])
let cv_volatile = Attr ("volatile", [])
%}
/*****************************************************************************/
/* IMPORTANT NOTE: When you add a new token, be sure that it will be */
/* recognized by the any: rule at the end of this file. */
/* Otherwise, the token will not be usable inside a contract. */
/*****************************************************************************/
%token MODULE FUNCTION CONTRACT INCLUDE EXT_AT EXT_LET
/* ACSL extension for external spec file */
%token <string> IDENTIFIER TYPENAME
%token <bool*string> STRING_LITERAL
%token <Logic_ptree.constant> CONSTANT
%token <string> CONSTANT10
%token LPAR RPAR IF ELSE COLON COLON2 COLONCOLON DOT DOTDOT DOTDOTDOT
%token INT INTEGER REAL BOOLEAN BOOL FLOAT LT GT LE GE EQ NE COMMA ARROW EQUAL
%token FORALL EXISTS IFF IMPLIES AND OR NOT SEPARATED
%token TRUE FALSE OLD AT RESULT
%token BLOCK_LENGTH BASE_ADDR OFFSET VALID VALID_READ VALID_INDEX VALID_RANGE VALID_FUNCTION
%token ALLOCATION STATIC REGISTER AUTOMATIC DYNAMIC UNALLOCATED
%token ALLOCABLE FREEABLE FRESH
%token DOLLAR QUESTION MINUS PLUS STAR AMP SLASH PERCENT LSQUARE RSQUARE EOF
%token GLOBAL INVARIANT VARIANT DECREASES FOR LABEL ASSERT SEMICOLON NULL EMPTY
%token REQUIRES ENSURES ALLOCATES FREES ASSIGNS LOOP NOTHING SLICE IMPACT PRAGMA FROM
%token <string> EXT_CODE_ANNOT EXT_GLOBAL EXT_CONTRACT
%token EXITS BREAKS CONTINUES RETURNS
%token VOLATILE READS WRITES
%token LOGIC PREDICATE INDUCTIVE AXIOMATIC AXIOM LEMMA LBRACE RBRACE
%token GHOST MODEL CASE
%token VOID CHAR SIGNED UNSIGNED SHORT LONG DOUBLE STRUCT ENUM UNION
%token BSUNION INTER
%token LTCOLON COLONGT TYPE BEHAVIOR BEHAVIORS ASSUMES COMPLETE DISJOINT
%token TERMINATES
%token BIFF BIMPLIES STARHAT HAT HATHAT PIPE TILDE GTGT LTLT
%token SIZEOF LAMBDA LET
%token TYPEOF BSTYPE
%token WITH CONST
%token INITIALIZED DANGLING
%token CUSTOM
%token LSQUAREPIPE RSQUAREPIPE
%token IN
%token PI
%right prec_named
%nonassoc TYPENAME
%nonassoc prec_forall prec_exists prec_lambda LET
%right QUESTION prec_question
%left IFF
%right IMPLIES
%left OR
%left HATHAT
%left AND
%left BIFF
%right BIMPLIES
%left PIPE
%left HAT
%left STARHAT
%nonassoc IN
%left AMP
%left LT
%left LTLT GTGT
%left PLUS MINUS
%left STAR SLASH PERCENT
%right prec_cast TILDE NOT prec_unary_op
%nonassoc LTCOLON COLONGT
%left DOT ARROW LSQUARE
%type <Logic_ptree.lexpr> lexpr_eof
%start lexpr_eof
%type <Logic_ptree.annot> annot
%start annot
%type <Logic_ptree.spec> spec
%start spec
%type <Logic_ptree.ext_spec> ext_spec
%start ext_spec
%%
enter_kw_c_mode:
/* empty */ { enter_kw_c_mode () }
exit_kw_c_mode:
/* empty */ { exit_kw_c_mode () }
enter_rt_type:
/* empty */ { if is_rt_type () then enter_rt_type_mode () }
exit_rt_type:
/* empty */ { if is_rt_type () then exit_rt_type_mode () }
begin_rt_type:
/* empty */ { set_rt_type () }
end_rt_type:
/* empty */ { reset_rt_type () }
/*** predicates and terms ***/
lexpr_list:
| /* epsilon */ { [] }
| ne_lexpr_list { $1 }
;
ne_lexpr_list:
| lexpr { [$1] }
| lexpr COMMA ne_lexpr_list { $1 :: $3 }
;
lexpr_eof:
| full_lexpr EOF { $1 }
;
lexpr_option:
| /* epsilon */ { None }
| lexpr { Some $1 }
;
lexpr:
/* predicates */
| lexpr IMPLIES lexpr { info (PLimplies ($1, $3)) }
| lexpr IFF lexpr { info (PLiff ($1, $3)) }
| lexpr OR lexpr { info (plor $1 $3) }
| lexpr AND lexpr { info (pland $1 $3) }
| lexpr HATHAT lexpr { info (PLxor ($1, $3)) }
/* terms */
| lexpr AMP lexpr { info (PLbinop ($1, Bbw_and, $3)) }
| lexpr PIPE lexpr { info (PLbinop ($1, Bbw_or, $3)) }
| lexpr HAT lexpr { info (PLbinop ($1, Bbw_xor, $3)) }
| lexpr BIMPLIES lexpr { info (PLbinop (info (PLunop (Ubw_not, $1)), Bbw_or, $3)) }
| lexpr BIFF lexpr { info (PLbinop (info (PLunop (Ubw_not, $1)), Bbw_xor, $3)) }
| lexpr IN lexpr { info (PLapp ("\\subset", [], [info ((PLset [$1]));$3])) }
| lexpr QUESTION lexpr COLON2 lexpr %prec prec_question
{ info (PLif ($1, $3, $5)) }
/* both terms and predicates */
| any_identifier COLON lexpr %prec prec_named { info (PLnamed ($1, $3)) }
| string COLON lexpr %prec prec_named
{ let (iswide,str) = $1 in
if iswide then begin
let l = loc () in
raise (Not_well_formed(l, "Wide strings are not allowed as labels."))
end;
let str = escape str in
info (PLnamed (str, $3))
}
| lexpr_rel { $1 }
;
lexpr_rel:
| lexpr_end_rel { $1 }
| lexpr_inner rel_list
{ let rel, rhs, _, oth_rel = $2 in
let loc = loc_start $1, loc_end rhs in
let relation = loc_info loc (PLrel($1,rel,rhs)) in
match oth_rel with
None -> relation
| Some oth_relation -> info (pland relation oth_relation)
}
;
lexpr_binder:
| LET bounded_var EQUAL lexpr SEMICOLON lexpr %prec LET {info (PLlet($2,$4,$6))}
| FORALL binders SEMICOLON lexpr %prec prec_forall
{ info (PLforall ($2, $4)) }
| EXISTS binders SEMICOLON lexpr %prec prec_exists
{ info (PLexists ($2, $4)) }
| LAMBDA binders SEMICOLON lexpr %prec prec_lambda
{ info (PLlambda ($2,$4)) }
;
lexpr_end_rel:
lexpr_inner { $1 }
| lexpr_binder { $1 }
| NOT lexpr_binder { info (PLnot $2) }
;
rel_list:
| relation lexpr_end_rel
{ $1, $2, fst(relation_sense $1 Unknown), None }
| relation lexpr_inner rel_list
{
let next_rel, rhs, sense, oth_rel = $3 in
let (sense, correct) = relation_sense $1 sense
in
if correct then
let loc = loc_start $2, loc_end rhs in
let my_rel = loc_info loc (PLrel($2,next_rel,rhs)) in
let oth_rel = match oth_rel with
None -> my_rel
| Some rel ->
let loc = loc_start $2, loc_end rel in
loc_info loc (pland my_rel rel)
in
$1,$2,sense,Some oth_rel
else begin
let loc = lexeme_start 1, lexeme_end 3 in
raise (Not_well_formed(loc,"Inconsistent relation chain."));
end
}
;
relation:
| LT { Lt }
| GT { Gt }
| LE { Le }
| GE { Ge }
| EQ { Eq }
| NE { Neq }
/* C. Marche: added to produce better error messages */
| EQUAL {
let l = loc () in
raise
(Not_well_formed(l,
"Assignment operators not allowed in annotations."))
}
;
lexpr_inner:
| string {
let (is_wide,content) = $1 in
let cst = if is_wide then
WStringConstant content
else
StringConstant content
in
info (PLconstant cst)
}
| NOT lexpr_inner { info (PLnot $2) }
| TRUE { info PLtrue }
| FALSE { info PLfalse }
| VALID opt_label_1 LPAR lexpr RPAR { info (PLvalid ($2,$4)) }
| VALID_READ opt_label_1 LPAR lexpr RPAR { info (PLvalid_read ($2,$4)) }
| VALID_FUNCTION LPAR lexpr RPAR { info (PLvalid_function $3) }
| VALID_INDEX opt_label_1 LPAR lexpr COMMA lexpr RPAR {
let source = fst (loc ()) in
obsolete ~source "\\valid_index(addr,idx)" ~now:"\\valid(addr+idx)";
info (PLvalid ($2,info (PLbinop ($4, Badd, $6)))) }
| VALID_RANGE opt_label_1 LPAR lexpr COMMA lexpr COMMA lexpr RPAR {
let source = fst (loc ()) in
obsolete "\\valid_range(addr,min,max)"
~source ~now:"\\valid(addr+(min..max))";
info (PLvalid
($2,info (PLbinop ($4, Badd, (info (PLrange((Some $6),Some $8)))))))
}
| INITIALIZED opt_label_1 LPAR lexpr RPAR { info (PLinitialized ($2,$4)) }
| DANGLING opt_label_1 LPAR lexpr RPAR { info (PLdangling ($2,$4)) }
| FRESH opt_label_2 LPAR lexpr COMMA lexpr RPAR { info (PLfresh ($2,$4, $6)) }
| BASE_ADDR opt_label_1 LPAR lexpr RPAR { info (PLbase_addr ($2,$4)) }
| BLOCK_LENGTH opt_label_1 LPAR lexpr RPAR { info (PLblock_length ($2,$4)) }
| OFFSET opt_label_1 LPAR lexpr RPAR { info (PLoffset ($2,$4)) }
| ALLOCABLE opt_label_1 LPAR lexpr RPAR { info (PLallocable ($2,$4)) }
| FREEABLE opt_label_1 LPAR lexpr RPAR { info (PLfreeable ($2,$4)) }
| ALLOCATION opt_label_1 LPAR lexpr RPAR
{ Kernel.not_yet_implemented "\\allocation" }
| AUTOMATIC { Kernel.not_yet_implemented "\\automatic" }
| DYNAMIC { Kernel.not_yet_implemented "\\dynamic" }
| REGISTER { Kernel.not_yet_implemented "\\register" }
| STATIC { Kernel.not_yet_implemented "\\static" }
| UNALLOCATED { Kernel.not_yet_implemented "\\unallocated" }
| NULL { info PLnull }
| constant { info (PLconstant $1) }
| lexpr_inner PLUS lexpr_inner { info (PLbinop ($1, Badd, $3)) }
| lexpr_inner MINUS lexpr_inner { info (PLbinop ($1, Bsub, $3)) }
| lexpr_inner STAR lexpr_inner { info (PLbinop ($1, Bmul, $3)) }
| lexpr_inner SLASH lexpr_inner { info (PLbinop ($1, Bdiv, $3)) }
| lexpr_inner PERCENT lexpr_inner { info (PLbinop ($1, Bmod, $3)) }
| lexpr_inner STARHAT lexpr_inner { info (PLrepeat ($1, $3)) }
| lexpr_inner ARROW identifier_or_typename { info (PLarrow ($1, $3)) }
| lexpr_inner DOT identifier_or_typename { info (PLdot ($1, $3)) }
| lexpr_inner LSQUARE range RSQUARE { info (PLarrget ($1, $3)) }
| lexpr_inner LSQUARE lexpr RSQUARE { info (PLarrget ($1, $3)) }
| LSQUAREPIPE lexpr_list RSQUAREPIPE {info (PLlist $2) }
| MINUS lexpr_inner %prec prec_unary_op { info (PLunop (Uminus, $2)) }
| PLUS lexpr_inner %prec prec_unary_op { $2 }
| TILDE lexpr_inner { info (PLunop (Ubw_not, $2)) }
| STAR lexpr_inner %prec prec_unary_op { info (PLunop (Ustar, $2)) }
| AMP lexpr_inner %prec prec_unary_op { info (PLunop (Uamp, $2)) }
| SIZEOF LPAR lexpr RPAR { info (PLsizeofE $3) }
| SIZEOF LPAR cast_logic_type RPAR { info (PLsizeof $3) }
| OLD LPAR lexpr RPAR { info (PLold $3) }
| AT LPAR lexpr COMMA label_name RPAR { info (PLat ($3, $5)) }
| RESULT { info PLresult }
| SEPARATED LPAR ne_lexpr_list RPAR
{ info (PLseparated $3) }
| identifier LPAR ne_lexpr_list RPAR
{ info (PLapp ($1, [], $3)) }
| identifier LBRACE ne_label_args RBRACE LPAR ne_lexpr_list RPAR
{ info (PLapp ($1, $3, $6)) }
| identifier LBRACE ne_label_args RBRACE
{ info (PLapp ($1, $3, [])) }
| identifier { info (PLvar $1) }
| PI { info (PLvar "\\pi") }
| lexpr_inner GTGT lexpr_inner { info (PLbinop ($1, Brshift, $3))}
| lexpr_inner LTLT lexpr_inner { info (PLbinop ($1, Blshift, $3))}
| LPAR lexpr RPAR { info $2.lexpr_node }
| LPAR range RPAR { info $2.lexpr_node }
| LPAR cast_logic_type RPAR lexpr_inner %prec prec_cast
{ info (PLcast ($2, $4)) }
| lexpr_inner LTCOLON lexpr_inner %prec prec_cast
{ info (PLsubtype ($1, $3)) }
| lexpr_inner COLONGT logic_type
{ info (PLcoercion ($1, $3)) }
| lexpr_inner COLONGT lexpr_inner %prec prec_cast
{ info (PLcoercionE ($1, $3)) }
| TYPEOF LPAR lexpr RPAR { info (PLtypeof $3) }
| BSTYPE LPAR type_spec RPAR { info (PLtype $3) }
| BSTYPE LPAR type_spec stars RPAR { info (PLtype ($4 $3)) }
/* tsets */
| EMPTY { info PLempty }
| BSUNION LPAR lexpr_list RPAR { info (PLunion $3) }
| INTER LPAR lexpr_list RPAR { info (PLinter $3) }
| LBRACE lexpr_list RBRACE
{ info (PLset ($2)) }
| LBRACE lexpr PIPE binders RBRACE
{info (PLcomprehension ($2,$4,None)) }
| LBRACE lexpr PIPE binders SEMICOLON lexpr RBRACE
{ info (PLcomprehension ($2,$4,Some $6)) }
/* Aggregated object initialization */
| LBRACE field_init RBRACE
{ info (PLinitField($2)) }
| LBRACE array_init RBRACE
{ info (PLinitIndex($2)) }
| LBRACE lexpr WITH update RBRACE
{ List.fold_left
(fun a (path,upd_val) -> info (PLupdate(a,path,upd_val))) $2 $4 }
/*
| LET bounded_var EQUAL lexpr SEMICOLON lexpr %prec LET {info (PLlet($2,$4,$6))}*/
;
ne_label_args:
| identifier_or_typename { [ $1 ] }
| identifier_or_typename COMMA ne_label_args { $1 :: $3 }
string:
| STRING_LITERAL { $1 }
| string STRING_LITERAL {
let (is_wide,prefix) = $1 in
let (is_wide2,suffix) = $2 in
(is_wide || is_wide2, prefix ^ suffix)
}
;
range:
| lexpr_option DOTDOT lexpr_option { info (PLrange($1,$3)) }
;
/*** Aggregated object initialization ***/
field_path_elt:
| DOT identifier_or_typename { $2 }
;
field_init_elt:
| field_path_elt EQUAL lexpr { ($1, $3) }
;
field_init:
| field_init_elt { [$1] }
| field_init_elt COMMA field_init { $1::$3 }
;
array_path_elt:
| LSQUARE lexpr RSQUARE { $2 }
| LSQUARE range RSQUARE { $2 }
;
array_init_elt:
| array_path_elt EQUAL lexpr { ($1, $3) }
array_init:
| array_init_elt { [$1] }
| array_init_elt COMMA array_init { $1::$3 }
;
/*** Functional update ***/
update:
| update_elt { [$1] }
| update_elt COMMA update { $1::$3 }
;
update_elt:
| path EQUAL lexpr { $1, PLupdateTerm $3 }
| path EQUAL LBRACE WITH update RBRACE { $1, PLupdateCont $5 }
;
path:
| path_elt { [$1] }
| path_elt path { $1::$2 }
;
path_elt:
| field_path_elt { PLpathField $1 }
| array_path_elt { PLpathIndex $1 }
;
/*** binders ***/
binders:
| binders_reentrance { let (_lt, vars) = $1 in vars }
;
binders_reentrance:
| decl_spec { let (lt, var) = $1 in (lt, [var]) }
| binders_reentrance COMMA decl_spec
{ let _, vars = $1 in
let (lt, var) = $3 in
(lt, vars @ [ var ])
}
| binders_reentrance COMMA var_spec
{ let last_type_spec, vars = $1 in
(last_type_spec, vars @ [ let (modif, name) = $3 in (modif last_type_spec, name)])
}
;
decl_spec:
| type_spec var_spec { ($1, let (modif, name) = $2 in (modif $1, name)) }
;
var_spec:
| var_spec_bis { let (outer, inner,name) = $1 in
((fun x -> outer (inner x)), name)}
| stars var_spec_bis
{ let (outer, inner, name) = $2 in
((fun x -> outer (inner ($1 x))), name) }
;
constant:
| CONSTANT { $1 }
| CONSTANT10 { IntConstant $1 }
;
array_size:
| CONSTANT10 { ASinteger $1 }
| identifier { ASidentifier $1 }
| /* empty */ { ASnone }
;
var_spec_bis:
| identifier { ((fun x -> x),(fun x -> x), $1) }
| var_spec_bis LSQUARE array_size RSQUARE
{ let (outer, inner, name) = $1 in
(outer, (fun x -> inner (LTarray (x,$3))), name)
}
| LPAR var_spec RPAR { let (modif, name) = $2 in (modif, (fun x -> x), name) }
| var_spec_bis LPAR abs_param_type_list RPAR
{ let (outer, inner,name) = $1 in
let params = $3 in
(outer, (fun x -> inner (LTarrow (params,x))), name)
}
;
abs_param_type_list:
| /* empty */ { [ ] }
| abs_param_list { $1 }
| abs_param_list COMMA DOTDOTDOT {
Kernel.not_yet_implemented "variadic C function types"
}
;
abs_param_list:
| abs_param { [ $1 ] }
| abs_param_list COMMA abs_param { $1 @ [ $3 ] }
;
/* TODO: abs_param should be less restrictive than parameter
since its name can be omitted
*/
abs_param:
| logic_type { $1 }
;
/*** restricted type expressions ***/
id_as_typename:
| identifier { LTnamed($1, []) }
;
ne_parameters:
| parameter { [$1] }
| parameter COMMA ne_parameters { $1 :: $3 }
;
parameter:
| type_spec var_spec { let (modif, name) = $2 in (modif $1, name)}
| id_as_typename var_spec { let (modif, name) = $2 in (modif $1, name) }
;
/*** type expressions ***/
logic_type:
| type_spec abs_spec_option { $2 $1 }
;
cv:
CONST { cv_const }
| VOLATILE { cv_volatile }
;
type_spec_cv:
type_spec { $1 }
| cv type_spec { LTattribute ($2, $1) }
| type_spec cv { LTattribute ($1, $2) }
cast_logic_type:
| type_spec_cv abs_spec_cv_option { $2 $1 }
;
logic_rt_type:
| id_as_typename { $1 }
| begin_rt_type logic_type end_rt_type { $2 }
;
abs_spec_option:
| /* empty */ %prec TYPENAME { fun t -> t }
| abs_spec { $1 }
;
abs_spec_cv_option:
| /* empty */ { fun t -> t }
| abs_spec_cv { $1 }
;
abs_spec:
| tabs { $1 }
| stars %prec TYPENAME { $1 }
| stars tabs { fun t -> $2 ($1 t) }
| stars abs_spec_bis %prec TYPENAME { fun t -> $2 ($1 t) }
| stars abs_spec_bis tabs { fun t -> $2 ($3 ($1 t)) }
| abs_spec_bis tabs { fun t -> $1 ($2 t) }
| abs_spec_bis %prec TYPENAME { $1 }
;
abs_spec_cv:
| tabs { $1 }
| stars_cv { $1 }
| stars_cv tabs { fun t -> $2 ($1 t) }
| stars_cv abs_spec_bis_cv { fun t -> $2 ($1 t) }
| stars_cv abs_spec_bis_cv tabs { fun t -> $2 ($3 ($1 t)) }
| abs_spec_bis_cv tabs { fun t -> $1 ($2 t) }
| abs_spec_bis_cv { $1 }
;
abs_spec_bis:
| LPAR abs_spec RPAR { $2 }
| abs_spec_bis LPAR abs_param_type_list RPAR { fun t -> $1 (LTarrow($3,t)) };
;
abs_spec_bis_cv:
| LPAR abs_spec_cv RPAR { $2 }
| abs_spec_bis_cv LPAR abs_param_type_list RPAR { fun t -> $1 (LTarrow($3,t)) };
;
stars:
| STAR { fun t -> LTpointer t }
| stars STAR { fun t -> (LTpointer ($1 t)) }
;
stars_cv:
| STAR { fun t -> LTpointer t }
| STAR cv { fun t -> LTattribute ((LTpointer t), $2) }
| stars_cv STAR { fun t -> (LTpointer ($1 t)) }
| stars_cv STAR cv { fun t -> (LTattribute ((LTpointer ($1 t)), $3)) }
;
tabs:
| LSQUARE array_size RSQUARE %prec TYPENAME
{
fun t -> LTarray (t,$2)
}
| LSQUARE array_size RSQUARE tabs
{
fun t -> (LTarray ($4 t,$2))
}
;
type_spec:
| INTEGER { LTinteger }
| REAL { LTreal }
| BOOLEAN { LTnamed (Utf8_logic.boolean,[]) }
| VOID { LTvoid }
| BOOL { LTint IBool }
| CHAR { LTint IChar } /** [char] */
| SIGNED CHAR { LTint ISChar } /** [signed char] */
| UNSIGNED CHAR { LTint IUChar } /** [unsigned char] */
| INT { LTint IInt } /** [int] */
| SIGNED INT { LTint IInt } /** [int] */
| UNSIGNED INT { LTint IUInt } /** [unsigned int] */
| UNSIGNED { LTint IUInt }
| SHORT { LTint IShort } /** [short] */
| SIGNED SHORT { LTint IShort } /** [short] */
| UNSIGNED SHORT { LTint IUShort } /** [unsigned short] */
| LONG { LTint ILong } /** [long] */
| SIGNED LONG { LTint ILong } /** [long] */
| UNSIGNED LONG { LTint IULong } /** [unsigned long] */
| SIGNED LONG INT{ LTint ILong } /** [long] */
| LONG INT { LTint ILong } /** [long] */
| UNSIGNED LONG INT { LTint IULong } /** [unsigned long] */
| LONG LONG { LTint ILongLong } /** [long long] (or [_int64] on
Microsoft Visual C) */
| SIGNED LONG LONG { LTint ILongLong } /** [long long] (or [_int64] on
Microsoft Visual C) */
| UNSIGNED LONG LONG { LTint IULongLong } /** [unsigned long long]
(or [unsigned _int64] on Microsoft Visual C) */
| LONG LONG INT { LTint ILongLong } /** [long long] (or [_int64] on
Microsoft Visual C) */
| SIGNED LONG LONG INT { LTint ILongLong } /** [long long] (or [_int64] on
Microsoft Visual C) */
| UNSIGNED LONG LONG INT { LTint IULongLong } /** [unsigned long long]
(or [unsigned _int64] on Microsoft Visual C) */
| FLOAT { LTfloat FFloat }
| DOUBLE { LTfloat FDouble }
| LONG DOUBLE { LTfloat FLongDouble }
| STRUCT exit_rt_type identifier_or_typename { LTstruct $3 }
| ENUM exit_rt_type identifier_or_typename { LTenum $3 }
| UNION exit_rt_type identifier_or_typename { LTunion $3 }
| TYPENAME { LTnamed ($1,[]) }
| TYPENAME LT enter_rt_type ne_logic_type_list GT exit_rt_type
{ LTnamed($1,$4) }
;
ne_logic_type_list:
| logic_type { [$1] }
| logic_type COMMA enter_rt_type ne_logic_type_list { $1 :: $4 }
;
/*** from annotations ***/
full_lexpr:
| enter_kw_c_mode lexpr exit_kw_c_mode { $2 }
;
full_identifier:
| enter_kw_c_mode identifier exit_kw_c_mode { $2 }
;
full_identifier_or_typename:
| enter_kw_c_mode identifier_or_typename exit_kw_c_mode { $2 }
;
full_parameters:
| enter_kw_c_mode ne_parameters exit_kw_c_mode { $2 }
;
full_parameter:
| enter_kw_c_mode parameter exit_kw_c_mode { $2 }
;
full_zones:
| enter_kw_c_mode zones exit_kw_c_mode { $2 }
;
full_ne_lexpr_list:
enter_kw_c_mode ne_lexpr_list exit_kw_c_mode { $2 }
;
full_logic_type:
| enter_kw_c_mode logic_type exit_kw_c_mode { $2 }
;
full_logic_rt_type:
| enter_kw_c_mode logic_rt_type exit_kw_c_mode { $2 }
full_assigns:
| enter_kw_c_mode assigns exit_kw_c_mode { $2 }
;
/*** ACSL extension for external spec file ***/
ext_spec:
| ext_global_clauses_opt ext_module_specs_opt ext_global_specs_opt EOF { (None,$1,$2)::$3 }
;
ext_global_clauses_opt:
| /* empty */ { [] }
| ext_global_clauses { $1 }
;
ext_global_clauses:
| ext_global_clause { [$1] }
| ext_global_clause ext_global_clauses { $1::$2 }
;
ext_global_clause:
| decl { Ext_decl (loc_decl $1) }
| EXT_LET any_identifier EQUAL full_lexpr SEMICOLON { Ext_macro (false, $2, $4) }
| GLOBAL EXT_LET any_identifier EQUAL full_lexpr SEMICOLON { Ext_macro (true, $3, $5) }
| INCLUDE string SEMICOLON { let b,s = $2 in Ext_include(b,s, loc()) }
;
ext_global_specs_opt:
| /* empty */ { [] }
| ext_global_specs { $1 }
;
ext_global_specs:
| ext_global_spec { [$1] }
| ext_global_spec ext_global_specs { $1::$2 }
;
ext_global_spec:
| ext_module_markup ext_global_clauses_opt ext_module_specs
{ (Some $1),$2,$3 }
| ext_module_markup
{ (Some $1),[],[] }
;
ext_module_specs_opt:
| /* empty */ { [] }
| ext_module_specs { $1 }
| ext_fun_specs { [None, $1] }
| ext_fun_specs ext_module_specs { (None, $1)::$2 }
;
ext_module_specs:
| ext_module_spec { [$1] }
| ext_module_spec ext_module_specs { $1::$2 }
;
ext_module_spec:
| ext_function_markup ext_function_specs_opt { (Some $1),$2 }
;
ext_function_specs_opt:
| /* empty */ { [] }
| ext_function_specs { $1 }
;
ext_function_specs:
| ext_at_stmt_markup { []}
| ext_function_spec { [$1] }
| ext_function_spec ext_function_specs { $1::$2 }
;
ext_function_spec:
| ext_global_clause { Ext_glob $1 }
| ext_fun_spec { $1 }
;
ext_fun_specs:
| ext_fun_spec { [$1] }
| ext_fun_spec ext_fun_specs { $1::$2 }
;
ext_fun_spec:
| ext_at_stmt_markup ext_stmt_loop_spec
{ Ext_stmt($1,$2,loc()) }
| ext_contract_markup contract
{ let s,pos = $2 in Ext_spec (s,pos) }
;
ext_stmt_loop_spec:
| annotation { $1 }
| ext_contract_markup contract { let s, pos = $2 in Acode_annot (pos, AStmtSpec ([],s)) }
;
ext_identifier_opt:
| /* empty*/ { "" }
| ext_identifier { $1 }
;
ext_identifier:
| any_identifier { $1 }
;
ext_module_markup:
| MODULE ext_identifier COLON { $2 }
;
ext_function_markup:
| FUNCTION ext_identifier COLON { $2, loc() }
;
ext_contract_markup:
| CONTRACT ext_identifier_opt COLON { $2 }
;
stmt_markup:
| any_identifier { $1 }
| CONSTANT10 { $1 }
;
stmt_markup_attr:
| stmt_markup { [$1] }
| stmt_markup stmt_markup_attr { $1 :: $2 }
;
ext_at_stmt_markup:
| EXT_AT stmt_markup_attr COLON { $2 }
;
/*** function and statement contracts ***/
spec:
| contract EOF { fst $1 }
;
contract:
| requires terminates decreases simple_clauses behaviors complete_or_disjoint
{ let requires=$1 in
let (allocation,assigns,post_cond,extended) = $4 in
let behaviors = $5 in
let (completes,disjoints) = $6 in
let behaviors =
if requires <> [] || post_cond <> [] ||
allocation <> FreeAllocAny ||
assigns <> WritesAny || extended <> []
then
(Cabshelper.mk_behavior
~requires ~post_cond ~assigns ~allocation ~extended ())
:: behaviors
else if $2<>None || $3<>None ||
behaviors<>[] || completes<>[] ||disjoints<>[]
then behaviors
else raise (Not_well_formed (loc(),"Empty annotation is not allowed"))
in
{ spec_terminates = $2;
spec_variant = $3;
spec_behavior = behaviors;
spec_complete_behaviors = completes;
spec_disjoint_behaviors = disjoints;
}, loc()
}
| requires ne_terminates REQUIRES { clause_order 3 "requires" "terminates" }
| requires terminates ne_decreases REQUIRES
{ clause_order 4 "requires" "decreases" }
| requires terminates ne_decreases TERMINATES
{ clause_order 4 "terminates" "decreases" }
| requires terminates decreases ne_simple_clauses REQUIRES
{ clause_order 5 "requires" "post-condition, assigns or allocates" }
| requires terminates decreases ne_simple_clauses TERMINATES
{ clause_order 5 "terminates" "post-condition, assigns or allocates" }
| requires terminates decreases ne_simple_clauses DECREASES
{ clause_order 5 "decreases" "post-condition, assigns or allocates" }
| requires terminates decreases simple_clauses ne_behaviors TERMINATES
{ clause_order 6 "terminates" "behavior" }
| requires terminates decreases simple_clauses ne_behaviors DECREASES
{ clause_order 6 "decreases" "behavior" }
| requires terminates decreases simple_clauses behaviors ne_complete_or_disjoint
REQUIRES
{ clause_order 7 "requires" "complete or disjoint" }
| requires terminates decreases simple_clauses behaviors ne_complete_or_disjoint
TERMINATES
{ clause_order 7 "terminates" "complete or disjoint" }
| requires terminates decreases simple_clauses behaviors ne_complete_or_disjoint
DECREASES
{ clause_order 7 "decreases" "complete or disjoint" }
| requires terminates decreases simple_clauses behaviors ne_complete_or_disjoint
BEHAVIOR
{ clause_order 7 "behavior" "complete or disjoint" }
| requires terminates decreases simple_clauses behaviors ne_complete_or_disjoint
ASSIGNS
{ clause_order 7 "assigns" "complete or disjoint" }
| requires terminates decreases simple_clauses behaviors ne_complete_or_disjoint
ALLOCATES
{ clause_order 7 "allocates" "complete or disjoint" }
| requires terminates decreases simple_clauses behaviors ne_complete_or_disjoint
FREES
{ clause_order 7 "frees" "complete or disjoint" }
| requires terminates decreases simple_clauses behaviors ne_complete_or_disjoint
post_cond_kind
{ clause_order 7 "post-condition" "complete or disjoint" }
;
// use that to detect potentially missing ';' at end of clause
clause_kw:
| REQUIRES { "requires" }
| ASSUMES {"assumes"}
| ASSIGNS { "assigns" }
| post_cond { snd $1 }
| DECREASES { "decreases"}
| BEHAVIOR { "behavior"}
| ALLOCATES {"allocates"}
| FREES {"frees"}
| COMPLETE {"complete"}
| DISJOINT {"disjoint"}
/* often, we'll be in c_kw_mode, where these keywords are
recognized as identifiers... */
| IDENTIFIER { $1 }
| EOF { "end of annotation" }
requires:
| /* epsilon */ { [] }
| ne_requires { $1 }
;
ne_requires:
| REQUIRES full_lexpr SEMICOLON requires { $2::$4 }
| REQUIRES full_lexpr clause_kw { missing 2 ";" $3}
;
terminates:
| /* epsilon */ { None }
| ne_terminates { Some $1 }
;
ne_terminates:
| TERMINATES full_lexpr SEMICOLON { $2 }
| TERMINATES full_lexpr clause_kw { missing 2 ";" $3 }
;
decreases:
| /* epsilon */ { None }
| ne_decreases { Some $1 }
;
ne_decreases:
| DECREASES variant SEMICOLON { $2 }
| DECREASES variant clause_kw { missing 2 ";" $3 }
;
variant:
| full_lexpr FOR any_identifier { ($1, Some $3) }
| full_lexpr { ($1, None) }
;
simple_clauses:
| /* epsilon */ { FreeAllocAny,WritesAny,[],[] }
| ne_simple_clauses { $1 }
;
allocation:
| ALLOCATES full_zones { FreeAlloc([],$2) }
| FREES full_zones { FreeAlloc($2,[]) }
ne_simple_clauses:
| post_cond_kind full_lexpr SEMICOLON simple_clauses
{ let allocation,assigns,post_cond,extended = $4 in allocation,assigns,(($1,$2)::post_cond),extended }
| allocation SEMICOLON simple_clauses
{ let allocation,assigns,post_cond,extended = $3 in
let a = concat_allocation allocation $1 in
a,assigns,post_cond,extended
}
| ASSIGNS full_assigns SEMICOLON simple_clauses
{ let allocation,assigns,post_cond,extended = $4 in
let a = concat_assigns assigns $2
in allocation,a,post_cond,extended
}
| EXT_CONTRACT grammar_extension SEMICOLON simple_clauses
{ let allocation,assigns,post_cond,extended = $4 in
allocation,assigns,post_cond,($1,$2)::extended
}
| post_cond_kind full_lexpr clause_kw { missing 2 ";" $3 }
| allocation clause_kw { missing 1 ";" $2 }
| ASSIGNS full_assigns clause_kw { missing 2 ";" $3 }
| EXT_CONTRACT grammar_extension clause_kw { missing 1 ";" $3 }
;
grammar_extension:
/* Grammar Extensibility for plugins */
| full_zones { $1 }
;
post_cond_kind:
| post_cond { fst $1 }
;
behaviors:
| /* epsilon */ { [] }
| ne_behaviors { $1 }
ne_behaviors:
| BEHAVIOR behavior_name COLON behavior_body behaviors
{ let (assumes,requires,(allocation,assigns,post_cond,extended)) = $4 in
let behaviors = $5 in
let b =
Cabshelper.mk_behavior
~name:$2
~assumes ~requires ~post_cond ~assigns ~allocation ~extended ()
in b::behaviors
}
behavior_body:
| assumes requires simple_clauses { $1,$2,$3 }
| assumes ne_requires ASSUMES
{ clause_order 3 "assumes" "requires" }
| assumes requires ne_simple_clauses ASSUMES
{ clause_order 4 "assumes" "assigns or post-condition" }
| assumes requires ne_simple_clauses REQUIRES
{ clause_order 4 "requires" "assigns or post-condition" }
;
assumes:
| /* epsilon */ { [] }
| ASSUMES full_lexpr SEMICOLON assumes { $2::$4 }
| ASSUMES full_lexpr clause_kw { missing 2 ";" $3 }
;
complete_or_disjoint:
| /* epsilon */ { [],[] }
| ne_complete_or_disjoint { $1 }
ne_complete_or_disjoint:
| COMPLETE BEHAVIORS behavior_name_list SEMICOLON
complete_or_disjoint
{ let complete,disjoint = $5 in $3::complete, disjoint }
| DISJOINT BEHAVIORS behavior_name_list SEMICOLON
complete_or_disjoint
{ let complete,disjoint = $5 in complete,$3::disjoint }
/* complete behaviors decreases; is valid (provided there's a behavior
named decreases)
*/
| COMPLETE BEHAVIORS ne_behavior_name_list clause_kw { missing 3 ";" $4 }
| DISJOINT BEHAVIORS ne_behavior_name_list clause_kw { missing 3 ";" $4 }
;
/*** assigns and tsets ***/
assigns:
| zones { List.map (fun x -> (x,FromAny)) $1 }
| ne_zones FROM zones {List.map (fun x -> (x, From $3)) $1}
;
zones:
| ne_zones { $1 }
| NOTHING { [] }
;
ne_zones:
| ne_lexpr_list { $1 }
;
/*** annotations ***/
annot:
| annotation EOF { $1 }
| is_acsl_spec any EOF { Aspec }
| decl_list EOF { Adecl ($1) }
| CUSTOM any_identifier COLON custom_tree EOF { Acustom(loc (),$2, $4) }
;
custom_tree:
| TYPE type_spec { CustomType $2 }
| LOGIC lexpr { CustomLexpr $2 }
| any_identifier_non_logic { CustomOther($1,[]) }
| any_identifier_non_logic LPAR custom_tree_list RPAR { CustomOther($1,$3) }
;
custom_tree_list:
| custom_tree { [$1] }
| custom_tree COMMA custom_tree_list { $1::$3 }
annotation:
| loop_annotations
{ let (b,v,p) = $1 in
(* TODO: do better, do not lose the structure ! *)
let l = b@v@p in
Aloop_annot (loc (), l) }
| FOR ne_behavior_name_list COLON contract
{ let s, pos = $4 in Acode_annot (pos, AStmtSpec ($2,s)) }
| code_annotation { Acode_annot (loc(),$1) }
| code_annotation beg_code_annotation
{ raise
(Not_well_formed (loc(),
"Only one code annotation is allowed per comment"))
}
| EXT_CODE_ANNOT grammar_extension SEMICOLON
{
let open Cil_types in
let ext = $1 in
match Logic_env.extension_category ext with
| Some (Ext_code_annot (Ext_here | Ext_next_stmt | Ext_next_both)) ->
Acode_annot (loc(), Logic_ptree.AExtended([],false,(ext,$2)))
| Some (Ext_code_annot Ext_next_loop) ->
raise
(Not_well_formed
(lexeme_loc 1,
ext ^ " is not a loop annotation extension. It can't be used as \
plain code annotation extension"))
| Some (Ext_contract | Ext_global) | None ->
Kernel.fatal ~source:(lexeme_start 1)
"%s is not a code annotation extension. Parser got wrong lexeme" ext
}
| full_identifier_or_typename { Aattribute_annot (loc (), $1) }
;
/*** loop annotations ***/
loop_annotations:
| loop_annot_stack
{ let (i,fa,a,b,v,p, e) = $1 in
let invs = List.map (fun i -> AInvariant([],true,i)) i in
let ext = List.map (fun x -> AExtended([],true, x)) e in
let oth = match a with
| WritesAny -> b
| Writes _ ->
(* by definition all existing AAssigns are tied to at least
one behavior. No need to merge against them. *)
AAssigns ([],a)::b
in
let oth = match fa with
| FreeAllocAny -> oth
| _ -> AAllocation ([],fa)::oth
in
(invs@oth@ext,v,p)
}
;
/* TODO: gather loop assigns that are related to the same behavior */
loop_annot_stack:
| loop_invariant loop_annot_opt
{ let (i,fa,a,b,v,p,e) = $2 in ($1::i,fa,a,b,v,p,e) }
| loop_effects loop_annot_opt
{ let (i,fa,a,b,v,p,e) = $2 in (i,fa,concat_assigns a $1,b,v,p,e) }
| loop_allocation loop_annot_opt
{ let (i,fa,a,b,v,p,e) = $2 in (i,concat_allocation fa $1,a,b,v,p,e) }
| FOR ne_behavior_name_list COLON loop_annot_stack
{ let (i,fa,a,b,v,p,e) = $4 in
let behav = $2 in
let invs = List.map (fun i -> AInvariant(behav,true,i)) i in
let ext = List.map (fun x -> AExtended(behav,true,x)) e in
let oth = concat_loop_assigns_allocation b behav a fa in
([],FreeAllocAny,WritesAny,invs@ext@oth,v,p,[])
}
| loop_variant loop_annot_opt
{ let pos,loop_variant = $1 in
let (i,fa,a,b,v,p,e) = $2 in
check_empty
(pos,"loop invariant is not allowed after loop variant.") i ;
check_empty
(pos, "loop extension is not allowed after loop variant.") e;
(match fa with
| FreeAlloc(f,a) ->
check_empty
(pos,"loop frees is not allowed after loop variant.") f ;
check_empty
(pos,"loop allocates is not allowed after loop variant.") a
| FreeAllocAny -> ());
(match a with
WritesAny -> ()
| Writes _ ->
raise
(Not_well_formed
(pos,"loop assigns is not allowed after loop variant.")));
check_empty
(pos,"loop behavior is not allowed after loop variant.") b ;
check_empty
(pos,"loop annotations can have at most one variant.") v ;
(i,fa,a,b,AVariant loop_variant::v,p,e) }
| loop_pragma loop_annot_opt
{ let (i,fa,a,b,v,p,e) = $2 in (i,fa,a,b,v,APragma (Loop_pragma $1)::p,e) }
| loop_grammar_extension loop_annot_opt {
let (i,fa,a,b,v,p,e) = $2 in
(i,fa,a,b,v,p, $1::e)
}
;
loop_annot_opt:
| /* epsilon */
{ ([], FreeAllocAny, WritesAny, [], [], [], []) }
| loop_annot_stack
{ $1 }
;
loop_effects:
| LOOP ASSIGNS full_assigns SEMICOLON { $3 }
;
loop_allocation:
| LOOP allocation SEMICOLON { $2 }
;
loop_invariant:
| LOOP INVARIANT full_lexpr SEMICOLON { $3 }
;
loop_variant:
| LOOP VARIANT variant SEMICOLON { loc(),$3 }
;
/* Grammar Extensibility for plugins */
loop_grammar_extension:
| LOOP EXT_CODE_ANNOT grammar_extension SEMICOLON {
let open Cil_types in
let ext = $2 in
match Logic_env.extension_category ext with
| Some (Ext_code_annot (Ext_next_loop | Ext_next_both)) -> (ext, $3)
| Some (Ext_code_annot (Ext_here | Ext_next_stmt)) ->
raise
(Not_well_formed
(lexeme_loc 2, ext ^ " is not a loop annotation extension"))
| Some (Ext_contract | Ext_global) | None ->
Kernel.fatal ~source:(lexeme_start 2)
"%s is not a code annotation extension. Parser got wrong lexeme." ext
}
;
loop_pragma:
| LOOP PRAGMA any_identifier full_ne_lexpr_list SEMICOLON
{ if $3 = "UNROLL_LOOP" || $3 = "UNROLL" then
(if $3 <> "UNROLL" then
Format.eprintf "Warning: use of deprecated keyword '%s'.\nShould use 'UNROLL' instead.@." $3;
Unroll_specs $4)
else if $3 = "WIDEN_VARIABLES" then
Widen_variables $4
else if $3 = "WIDEN_HINTS" then
Widen_hints $4
else raise (Not_well_formed (loc(),"Unknown loop pragma")) }
;
/*** code annotations ***/
beg_code_annotation:
| IMPACT {}
| SLICE {}
| FOR {}
| ASSERT {}
| INVARIANT {}
;
code_annotation:
| slice_pragma { APragma (Slice_pragma $1) }
| impact_pragma { APragma (Impact_pragma $1) }
| FOR ne_behavior_name_list COLON ASSERT full_lexpr SEMICOLON
{ AAssert ($2,$5) }
| FOR ne_behavior_name_list COLON INVARIANT full_lexpr SEMICOLON
{ AInvariant ($2,false,$5) }
| ASSERT full_lexpr SEMICOLON { AAssert ([],$2) }
| INVARIANT full_lexpr SEMICOLON { AInvariant ([],false,$2) }
;
slice_pragma:
| SLICE PRAGMA any_identifier full_lexpr SEMICOLON
{ if $3 = "expr" then SPexpr $4
else raise (Not_well_formed (loc(), "Unknown slice pragma")) }
| SLICE PRAGMA any_identifier SEMICOLON
{ if $3 = "ctrl" then SPctrl
else if $3 = "stmt" then SPstmt
else raise (Not_well_formed (loc(), "Unknown slice pragma")) }
;
impact_pragma:
| IMPACT PRAGMA any_identifier full_lexpr SEMICOLON
{ if $3 = "expr" then IPexpr $4
else raise (Not_well_formed (loc(), "Unknown impact pragma")) }
| IMPACT PRAGMA any_identifier SEMICOLON
{ if $3 = "stmt" then IPstmt
else raise (Not_well_formed (loc(), "Unknown impact pragma")) }
;
/*** declarations and logical definitions ***/
decl_list:
| decl { [loc_decl $1] }
| decl decl_list { (loc_decl $1) :: $2 }
decl:
| GLOBAL INVARIANT any_identifier COLON full_lexpr SEMICOLON
{ LDinvariant ($3, $5) }
| VOLATILE ne_zones volatile_opt SEMICOLON { LDvolatile ($2, $3) }
| type_annot {LDtype_annot $1}
| model_annot {LDmodel_annot $1}
| logic_def { $1 }
| EXT_GLOBAL grammar_extension SEMICOLON { LDextended ($1, $2) }
| deprecated_logic_decl { $1 }
;
volatile_opt:
| /* empty */ { None, None }
| READS any_identifier volatile_opt
{ let read,write=$3 in
if read = None then
(Some $2),write
else
(Format.eprintf "Warning: read %s ignored@." $2; $3)
}
| WRITES any_identifier volatile_opt
{ let read,write=$3 in
if write = None then
read,(Some $2)
else
(Format.eprintf "Warning: write %s ignored@." $2; $3)
}
;
type_annot:
| TYPE INVARIANT any_identifier LPAR full_parameter RPAR EQUAL
full_lexpr SEMICOLON
{ let typ,name = $5 in{ inv_name = $3; this_name = name; this_type = typ; inv = $8; } }
;
opt_semicolon:
| /* epsilon */ { }
| SEMICOLON { }
model_annot:
| MODEL type_spec LBRACE full_parameter opt_semicolon RBRACE SEMICOLON
{ let typ,name = $4 in
{ model_for_type = $2; model_name = name; model_type = typ; }
}
;
poly_id_type:
| full_identifier
{ enter_type_variables_scope []; ($1,[]) }
| full_identifier LT ne_tvar_list GT
{ enter_type_variables_scope $3; ($1,$3) }
;
/* we need to recognize the typename as soon as it has been declared,
so that it can be used in data constructors in the type definition itself
*/
poly_id_type_add_typename:
| poly_id_type { let (id,_) = $1 in Logic_env.add_typename id; $1 }
;
poly_id:
| poly_id_type { let (id,tvar) = $1 in (id,[],tvar) }
| full_identifier LBRACE ne_label_list RBRACE
{ enter_type_variables_scope []; ($1,$3,[]) }
| full_identifier LBRACE ne_label_list RBRACE LT ne_tvar_list GT
{ enter_type_variables_scope $6; $1,$3,$6 }
;
opt_parameters:
| /*epsilon*/ { [] }
| parameters { $1 }
;
parameters:
| LPAR full_parameters RPAR { $2 }
;
logic_def:
/* logic function definition */
| LOGIC full_logic_rt_type poly_id opt_parameters EQUAL full_lexpr SEMICOLON
{ let (id, labels, tvars) = $3 in
exit_type_variables_scope ();
LDlogic_def (id, labels, tvars, $2, $4, $6) }
/* predicate definition */
| PREDICATE poly_id opt_parameters EQUAL full_lexpr SEMICOLON
{ let (id,labels,tvars) = $2 in
exit_type_variables_scope ();
LDpredicate_def (id, labels, tvars, $3, $5) }
/* inductive predicate definition */
| INDUCTIVE poly_id parameters LBRACE indcases RBRACE
{ let (id,labels,tvars) = $2 in
exit_type_variables_scope ();
LDinductive_def(id, labels, tvars, $3, $5) }
| LEMMA poly_id COLON full_lexpr SEMICOLON
{ let (id,labels,tvars) = $2 in
exit_type_variables_scope ();
LDlemma (id, false, labels, tvars, $4) }
| AXIOMATIC any_identifier LBRACE logic_decls RBRACE
{ LDaxiomatic($2,$4) }
| TYPE poly_id_type_add_typename EQUAL typedef SEMICOLON
{ let (id,tvars) = $2 in
exit_type_variables_scope ();
LDtype(id,tvars,Some $4)
}
;
deprecated_logic_decl:
/* OBSOLETE: logic function declaration */
| LOGIC full_logic_rt_type poly_id opt_parameters SEMICOLON
{ let (id, labels, tvars) = $3 in
let source = fst (loc ()) in
exit_type_variables_scope ();
obsolete "logic declaration" ~source ~now:"an axiomatic block";
LDlogic_reads (id, labels, tvars, $2, $4, None) }
/* OBSOLETE: predicate declaration */
| PREDICATE poly_id opt_parameters SEMICOLON
{ let (id,labels,tvars) = $2 in
exit_type_variables_scope ();
let source = fst (loc ()) in
obsolete "logic declaration" ~source ~now:"an axiomatic block";
LDpredicate_reads (id, labels, tvars, $3, None) }
/* OBSOLETE: type declaration */
| TYPE poly_id_type SEMICOLON
{ let (id,tvars) = $2 in
Logic_env.add_typename id;
exit_type_variables_scope ();
let source = fst (loc ()) in
obsolete "logic type declaration" ~source ~now:"an axiomatic block";
LDtype(id,tvars,None)
}
/* OBSOLETE: axiom */
| AXIOM poly_id COLON full_lexpr SEMICOLON
{ let (id,_,_) = $2 in
raise
(Not_well_formed
(loc(),"Axiom " ^ id ^ " is declared outside of an axiomatic."))
}
;
logic_decls:
| /* epsilon */
{ [] }
| logic_decl_loc logic_decls
{ $1::$2 }
;
logic_decl:
| logic_def { $1 }
/* logic function declaration */
| LOGIC full_logic_rt_type poly_id opt_parameters reads_clause SEMICOLON
{ let (id, labels, tvars) = $3 in
exit_type_variables_scope ();
LDlogic_reads (id, labels, tvars, $2, $4, $5) }
/* predicate declaration */
| PREDICATE poly_id opt_parameters reads_clause SEMICOLON
{ let (id,labels,tvars) = $2 in
exit_type_variables_scope ();
LDpredicate_reads (id, labels, tvars, $3, $4) }
/* type declaration */
| TYPE poly_id_type SEMICOLON
{ let (id,tvars) = $2 in
Logic_env.add_typename id;
exit_type_variables_scope ();
LDtype(id,tvars,None) }
/* axiom */
| AXIOM poly_id COLON full_lexpr SEMICOLON
{ let (id,labels,tvars) = $2 in
exit_type_variables_scope ();
LDlemma (id, true, labels, tvars, $4) }
;
logic_decl_loc:
| logic_decl { loc_decl $1 }
;
reads_clause:
| /* epsilon */ { None }
| READS zones { Some $2 }
;
typedef:
| ne_datacons_list { TDsum $1 }
| full_logic_type { TDsyn $1 }
;
datacons_list:
| /* epsilon */ { [] }
| PIPE datacons datacons_list { $2 :: $3 }
;
ne_datacons_list:
| datacons datacons_list { $1 :: $2 }
| PIPE datacons datacons_list { $2 :: $3 }
;
datacons:
| full_identifier { ($1,[]) }
| full_identifier LPAR ne_type_list RPAR { ($1,$3) }
;
ne_type_list:
| full_logic_type { [$1] }
| full_logic_type COMMA ne_type_list { $1::$3 }
indcases:
| /* epsilon */
{ [] }
| CASE poly_id COLON full_lexpr SEMICOLON indcases
{ let (id,labels,tvars) = $2 in
exit_type_variables_scope ();
(id,labels,tvars,$4)::$6 }
;
ne_tvar_list:
| full_identifier { [$1] }
| full_identifier COMMA ne_tvar_list { $1 :: $3 }
;
ne_label_list:
| label_name { [$1] }
| label_name COMMA ne_label_list { $1 :: $3 }
;
opt_label_1:
| opt_label_list { match $1 with
| [] -> None
| l::[] -> Some l
| _ -> raise (Not_well_formed (loc(),"Only one label is allowed")) }
;
opt_label_2:
| opt_label_list { match $1 with
| [] -> None
| l1::l2::[] -> Some (l1,l2)
| _::[] -> raise (Not_well_formed (loc(),"One label is missing"))
| _ -> raise (Not_well_formed (loc(),"Only two labels are allowed")) }
;
opt_label_list:
| /* epsilon */ { [] }
| LBRACE ne_label_list RBRACE { $2 }
;
/* names */
label_name:
| any_identifier { $1 }
;
behavior_name_list:
| /* epsilon */ { [] }
| ne_behavior_name_list { $1 }
;
ne_behavior_name_list:
| behavior_name { [$1] }
| behavior_name COMMA ne_behavior_name_list {$1 :: $3}
;
behavior_name:
| any_identifier { $1 }
;
any_identifier:
| identifier_or_typename { $1 }
| keyword { $1 }
;
any_identifier_non_logic:
| identifier_or_typename { $1 }
| non_logic_keyword { $1 }
identifier_or_typename:
| IDENTIFIER { $1 }
| TYPENAME { $1 }
;
identifier:
| IDENTIFIER { $1 }
;
bounded_var:
| identifier { $1 }
| TYPENAME /* Since TYPENAME cannot be accepted by lexpr rule */
{ raise
(Not_well_formed(loc (),
"Type names are not allowed as binding variable"))
}
;
c_keyword:
| CASE { "case" }
| CHAR { "char" }
| BOOLEAN { "boolean" }
| BOOL { "_Bool" }
| CONST { "const" }
| DOUBLE { "double" }
| ELSE { "else" }
| ENUM { "enum" }
| FLOAT { "float" }
| IF { "if" }
| INT { "int" }
| LONG { "long" }
| SHORT { "short" }
| SIGNED { "signed" }
| SIZEOF { "sizeof" }
| STATIC { "static" }
| STRUCT { "struct" }
| UNION { "union" }
| UNSIGNED { "unsigned" }
| VOID { "void" }
;
acsl_c_keyword:
| FOR { "for" }
| VOLATILE { "volatile" }
;
post_cond:
| ENSURES { Normal, "normal" }
| EXITS { Exits, "exits" }
| BREAKS { Breaks, "breaks" }
| CONTINUES { Continues, "continues" }
| RETURNS { Returns, "returns" }
;
is_acsl_spec:
| post_cond { snd $1 }
| EXT_CONTRACT { $1 }
| ASSIGNS { "assigns" }
| ALLOCATES { "allocates" }
| FREES { "frees" }
| BEHAVIOR { "behavior" }
| REQUIRES { "requires" }
| TERMINATES { "terminates" }
| COMPLETE { "complete" }
| DECREASES { "decreases" }
| DISJOINT { "disjoint" }
;
is_acsl_decl_or_code_annot:
| ASSERT { "assert" }
| ASSUMES { "assumes" }
| GLOBAL { "global" }
| IMPACT { "impact" }
| INDUCTIVE { "inductive" }
| INVARIANT { "invariant" }
| LEMMA { "lemma" }
| LOOP { "loop" }
| PRAGMA { "pragma" }
| PREDICATE { "predicate" }
| SLICE { "slice" }
| TYPE { "type" }
| MODEL { "model" }
| AXIOM { "axiom" }
| VARIANT { "variant" }
| AXIOMATIC { "axiomatic" }
;
is_acsl_other:
| BEHAVIORS { "behaviors" }
| INTEGER { "integer" }
| LABEL { "label" }
| READS { "reads" }
| REAL { "real" }
| WRITES { "writes" }
;
is_ext_spec:
| CONTRACT { "contract" }
| FUNCTION { "function" }
| MODULE { "module" }
| INCLUDE { "include" }
| EXT_AT { "at" }
| EXT_LET { "let" }
;
keyword:
| LOGIC { "logic" }
| non_logic_keyword { $1 }
non_logic_keyword:
| c_keyword { $1 }
| acsl_c_keyword { $1 }
| is_ext_spec { $1 }
| is_acsl_spec { $1 }
| is_acsl_decl_or_code_annot { $1 }
| is_acsl_other { $1 }
| CUSTOM { "custom" }
;
bs_keyword:
| ALLOCABLE { () }
| ALLOCATION { () }
| AUTOMATIC { () }
| AT { () }
| BASE_ADDR { () }
| BLOCK_LENGTH { () }
| DYNAMIC { () }
| EMPTY { () }
| FALSE { () }
| FORALL { () }
| FREEABLE { () }
| FRESH { () }
| FROM { () }
| INTER { () }
| LAMBDA { () }
| LET { () }
| NOTHING { () }
| NULL { () }
| OLD { () }
| OFFSET { () }
| REGISTER { () }
| RESULT { () }
| SEPARATED { () }
| TRUE { () }
| BSTYPE { () }
| TYPEOF { () }
| BSUNION { () }
| UNALLOCATED { () }
| VALID { () }
| VALID_INDEX { () }
| VALID_RANGE { () }
| VALID_READ { () }
| VALID_FUNCTION { () }
| INITIALIZED { () }
| DANGLING { () }
| WITH { () }
;
wildcard:
| any_identifier { () }
| bs_keyword { () }
| AMP { () }
| AND { () }
| ARROW { () }
| BIFF { () }
| BIMPLIES { () }
| COLON { () }
| COLON2 { () }
| COLONCOLON { () }
| COLONGT { () }
| COMMA { () }
| CONSTANT { () }
| CONSTANT10 { () }
| DOLLAR { () }
| DOT { () }
| DOTDOT { () }
| DOTDOTDOT { () }
| EQ { () }
| EQUAL { () }
| EXISTS { () }
| GE { () }
| GHOST { () }
| GT { () }
| GTGT { () }
| HAT { () }
| HATHAT { () }
| IFF { () }
| IMPLIES { () }
| LBRACE { () }
| LE { () }
| LPAR { () }
| LSQUARE { () }
| LSQUAREPIPE { () }
| LT { () }
| LTCOLON { () }
| LTLT { () }
| MINUS { () }
| NE { () }
| NOT { () }
| OR { () }
| PERCENT { () }
| PI { () }
| PIPE { () }
| PLUS { () }
| QUESTION { () }
| RBRACE { () }
| RPAR { () }
| RSQUARE { () }
| RSQUAREPIPE { () }
| SEMICOLON { () }
| SLASH { () }
| STAR { () }
| STARHAT { () }
| STRING_LITERAL { () }
| TILDE { () }
| IN { () }
| EXT_GLOBAL { () }
| EXT_CODE_ANNOT { () }
;
any:
| wildcard { () }
| wildcard any { () }
;
%%
(*
Local Variables:
compile-command: "make -C ../../.."
End:
*)