Newer
Older
/**************************************************************************/
/* */
/* This file is part of Frama-C. */
/* */
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
/* 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
(* 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
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
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
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", [])
let toplevel_pred tp_only_check tp_statement = { tp_only_check; tp_statement }
%}
/*****************************************************************************/
/* 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
%token OBJECT_POINTER 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 CHECK SEMICOLON NULL EMPTY
%token REQUIRES ENSURES ALLOCATES FREES ASSIGNS LOOP NOTHING SLICE IMPACT PRAGMA FROM
%token CHECK_REQUIRES CHECK_LOOP CHECK_INVARIANT CHECK_LEMMA
%token CHECK_ENSURES CHECK_EXITS CHECK_CONTINUES CHECK_BREAKS CHECK_RETURNS
%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 TYPE BEHAVIOR BEHAVIORS ASSUMES COMPLETE DISJOINT
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
%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
%left AMP
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
%left LT
%left LTLT GTGT
%left PLUS MINUS
%left STAR SLASH PERCENT
%right prec_cast TILDE NOT prec_unary_op
%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
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
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 }
| OBJECT_POINTER opt_label_1 LPAR lexpr RPAR { info (PLobject_pointer ($2,$4)) }
| 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))";
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
($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)) }
| 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 cv_after { $2 $1 }
| cv type_spec_cv { LTattribute ($2, $1) }
cv_after:
/* empty */ { fun t -> t }
| cv cv_after { fun t -> $2 (LTattribute (t,$1)) }
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
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] */
| SHORT INT { LTint IShort } /** [short] */
| SIGNED SHORT INT { LTint IShort } /** [short] */
| UNSIGNED SHORT INT { LTint IUShort } /** [unsigned short] */
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
| 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 }
;
Virgile Prevosto
committed
full_ne_zones:
Virgile Prevosto
committed
| enter_kw_c_mode ne_zones exit_kw_c_mode { $2 }
Virgile Prevosto
committed
;
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
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()) }
;
| /* empty */ { [] }
| ext_global_specs { $1 }
;
| 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 ext_global_clauses_opt
{ (Some $1),$2,[] }
;
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 }