From 3039e7118f8e814f97ed45cb7b23941a4550ab69 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Tue, 15 Dec 2020 14:42:03 +0100
Subject: [PATCH 001/141] [Nonterm] add warn categories

---
 src/plugins/nonterm/nonterm_run.ml                 | 12 +++++++++---
 .../nonterm/oracle/builtin_termination.res.oracle  |  2 +-
 .../tests/nonterm/oracle/callstack.res.oracle      |  6 +++---
 .../tests/nonterm/oracle/callstacks.res.oracle     | 10 +++++-----
 .../nonterm/tests/nonterm/oracle/n2.res.oracle     |  2 +-
 .../nonterm/tests/nonterm/oracle/n5.res.oracle     |  4 ++--
 .../nonterm/tests/nonterm/oracle/n7.res.oracle     |  2 +-
 .../nonterm/tests/nonterm/oracle/n8.0.res.oracle   | 12 +++++++-----
 .../nonterm/tests/nonterm/oracle/n8.1.res.oracle   | 14 ++++++++------
 .../nonterm/tests/nonterm/oracle/n9.res.oracle     |  6 +++---
 .../tests/nonterm/oracle/output_to_file.res.oracle |  5 +++--
 .../tests/nonterm/oracle/output_to_file.txt        |  4 ++--
 12 files changed, 45 insertions(+), 34 deletions(-)

diff --git a/src/plugins/nonterm/nonterm_run.ml b/src/plugins/nonterm/nonterm_run.ml
index a4f74bc205a..12104719725 100644
--- a/src/plugins/nonterm/nonterm_run.ml
+++ b/src/plugins/nonterm/nonterm_run.ml
@@ -104,13 +104,17 @@ let pp_numbered_stacks fmt callstacks =
             Format.pp_print_int Value_types.Callstack.pretty))
       numbered_callstacks
 
+let wkey_stmt = Self.register_warn_category "stmt"
+
 let warn_nonterminating_statement stmt callstacks =
-  Self.warning ~source:(fst (Stmt.loc stmt))
+  Self.warning ~wkey:wkey_stmt ~source:(fst (Stmt.loc stmt))
     "non-terminating %a@\n%a"
     pretty_stmt_kind stmt pp_numbered_stacks callstacks
 
+let wkey_dead = Self.register_warn_category "dead-code"
+
 let warn_dead_code stmt =
-  Self.warning ~source:(fst (Stmt.loc stmt))
+  Self.warning ~wkey:wkey_dead ~source:(fst (Stmt.loc stmt))
     "%a is syntactically unreachable" pretty_stmt_kind stmt
 
 class dead_cc_collector kf = object
@@ -155,8 +159,10 @@ class dead_cc_collector kf = object
     Cil.DoChildren
 end
 
+let wkey_unreachable = Self.register_warn_category "unreachable"
+
 let warn_unreachable_statement stmt =
-  Self.warning ~source:(fst (Stmt.loc stmt))
+  Self.warning ~wkey:wkey_unreachable ~source:(fst (Stmt.loc stmt))
     "unreachable %a" pretty_stmt_kind stmt
 
 class unreachable_stmt_visitor kf to_ignore = object
diff --git a/src/plugins/nonterm/tests/nonterm/oracle/builtin_termination.res.oracle b/src/plugins/nonterm/tests/nonterm/oracle/builtin_termination.res.oracle
index 3effbe4d066..c6094d433be 100644
--- a/src/plugins/nonterm/tests/nonterm/oracle/builtin_termination.res.oracle
+++ b/src/plugins/nonterm/tests/nonterm/oracle/builtin_termination.res.oracle
@@ -25,7 +25,7 @@
   len1 ∈ {2} or UNINITIALIZED
   len2 ∈ UNINITIALIZED
   __retres ∈ {0}
-[nonterm] tests/nonterm/builtin_termination.c:16: Warning: 
+[nonterm:stmt] tests/nonterm/builtin_termination.c:16: Warning: 
   non-terminating function call
   stack: main
 [nonterm] Analysis done.
diff --git a/src/plugins/nonterm/tests/nonterm/oracle/callstack.res.oracle b/src/plugins/nonterm/tests/nonterm/oracle/callstack.res.oracle
index 93e52b1abcc..047945a4f21 100644
--- a/src/plugins/nonterm/tests/nonterm/oracle/callstack.res.oracle
+++ b/src/plugins/nonterm/tests/nonterm/oracle/callstack.res.oracle
@@ -21,13 +21,13 @@
   NON TERMINATING FUNCTION
 [eva:final-states] Values at end of function main:
   NON TERMINATING FUNCTION
-[nonterm] tests/nonterm/callstack.i:2: Warning: 
+[nonterm:stmt] tests/nonterm/callstack.i:2: Warning: 
   non-terminating loop
   stack: f :: tests/nonterm/callstack.i:7 <-
          g :: tests/nonterm/callstack.i:12 <-
          main
-[nonterm] tests/nonterm/callstack.i:7: Warning: unreachable return
-[nonterm] tests/nonterm/callstack.i:11: Warning: 
+[nonterm:unreachable] tests/nonterm/callstack.i:7: Warning: unreachable return
+[nonterm:stmt] tests/nonterm/callstack.i:11: Warning: 
   non-terminating loop
   stack: main
 [nonterm] Analysis done.
diff --git a/src/plugins/nonterm/tests/nonterm/oracle/callstacks.res.oracle b/src/plugins/nonterm/tests/nonterm/oracle/callstacks.res.oracle
index 9a01fe80725..a5ab5b9714a 100644
--- a/src/plugins/nonterm/tests/nonterm/oracle/callstacks.res.oracle
+++ b/src/plugins/nonterm/tests/nonterm/oracle/callstacks.res.oracle
@@ -37,15 +37,15 @@
   NON TERMINATING FUNCTION
 [eva:final-states] Values at end of function main:
   NON TERMINATING FUNCTION
-[nonterm] tests/nonterm/callstacks.i:4: Warning: 
+[nonterm:stmt] tests/nonterm/callstacks.i:4: Warning: 
   non-terminating loop
   stack: nt :: tests/nonterm/callstacks.i:8 <-
          f :: tests/nonterm/callstacks.i:13 <-
          g :: tests/nonterm/callstacks.i:18 <-
          h :: tests/nonterm/callstacks.i:23 <-
          main
-[nonterm] tests/nonterm/callstacks.i:8: Warning: unreachable return
-[nonterm] tests/nonterm/callstacks.i:13: Warning: unreachable return
-[nonterm] tests/nonterm/callstacks.i:18: Warning: unreachable return
-[nonterm] tests/nonterm/callstacks.i:23: Warning: unreachable return
+[nonterm:unreachable] tests/nonterm/callstacks.i:8: Warning: unreachable return
+[nonterm:unreachable] tests/nonterm/callstacks.i:13: Warning: unreachable return
+[nonterm:unreachable] tests/nonterm/callstacks.i:18: Warning: unreachable return
+[nonterm:unreachable] tests/nonterm/callstacks.i:23: Warning: unreachable return
 [nonterm] Analysis done.
diff --git a/src/plugins/nonterm/tests/nonterm/oracle/n2.res.oracle b/src/plugins/nonterm/tests/nonterm/oracle/n2.res.oracle
index 7797397288f..ce4cbfc9afe 100644
--- a/src/plugins/nonterm/tests/nonterm/oracle/n2.res.oracle
+++ b/src/plugins/nonterm/tests/nonterm/oracle/n2.res.oracle
@@ -10,7 +10,7 @@
 [eva] ====== VALUES COMPUTED ======
 [eva:final-states] Values at end of function main:
   NON TERMINATING FUNCTION
-[nonterm] tests/nonterm/n2.i:6: Warning: 
+[nonterm:stmt] tests/nonterm/n2.i:6: Warning: 
   non-terminating loop
   stack: main
 [nonterm] Analysis done.
diff --git a/src/plugins/nonterm/tests/nonterm/oracle/n5.res.oracle b/src/plugins/nonterm/tests/nonterm/oracle/n5.res.oracle
index 57e276f11f9..7b9e1bf31b5 100644
--- a/src/plugins/nonterm/tests/nonterm/oracle/n5.res.oracle
+++ b/src/plugins/nonterm/tests/nonterm/oracle/n5.res.oracle
@@ -30,10 +30,10 @@
   NON TERMINATING FUNCTION
 [eva:final-states] Values at end of function main:
   NON TERMINATING FUNCTION
-[nonterm] tests/nonterm/n5.i:12: Warning: 
+[nonterm:stmt] tests/nonterm/n5.i:12: Warning: 
   non-terminating function call
   stack: f :: tests/nonterm/n5.i:22 <- main
-[nonterm] tests/nonterm/n5.i:23: Warning: 
+[nonterm:stmt] tests/nonterm/n5.i:23: Warning: 
   non-terminating function call
   stack: main
 [nonterm] Analysis done.
diff --git a/src/plugins/nonterm/tests/nonterm/oracle/n7.res.oracle b/src/plugins/nonterm/tests/nonterm/oracle/n7.res.oracle
index 49675ab4fcc..e9a783d3568 100644
--- a/src/plugins/nonterm/tests/nonterm/oracle/n7.res.oracle
+++ b/src/plugins/nonterm/tests/nonterm/oracle/n7.res.oracle
@@ -10,7 +10,7 @@
 [eva] ====== VALUES COMPUTED ======
 [eva:final-states] Values at end of function main:
   NON TERMINATING FUNCTION
-[nonterm] tests/nonterm/n7.i:4: Warning: 
+[nonterm:stmt] tests/nonterm/n7.i:4: Warning: 
   non-terminating loop
   stack: main
 [nonterm] Analysis done.
diff --git a/src/plugins/nonterm/tests/nonterm/oracle/n8.0.res.oracle b/src/plugins/nonterm/tests/nonterm/oracle/n8.0.res.oracle
index 4453db08d9a..0833b237866 100644
--- a/src/plugins/nonterm/tests/nonterm/oracle/n8.0.res.oracle
+++ b/src/plugins/nonterm/tests/nonterm/oracle/n8.0.res.oracle
@@ -35,11 +35,13 @@
   NON TERMINATING FUNCTION
 [eva:final-states] Values at end of function main:
   NON TERMINATING FUNCTION
-[nonterm] tests/nonterm/n8.i:17: Warning: unreachable return
-[nonterm] tests/nonterm/n8.i:22: Warning: unreachable implicit return
-[nonterm] tests/nonterm/n8.i:31: Warning: unreachable implicit return
-[nonterm] tests/nonterm/n8.i:37: Warning: unreachable return
-[nonterm] tests/nonterm/n8.i:41: Warning: 
+[nonterm:unreachable] tests/nonterm/n8.i:17: Warning: unreachable return
+[nonterm:unreachable] tests/nonterm/n8.i:22: Warning: 
+  unreachable implicit return
+[nonterm:unreachable] tests/nonterm/n8.i:31: Warning: 
+  unreachable implicit return
+[nonterm:unreachable] tests/nonterm/n8.i:37: Warning: unreachable return
+[nonterm:stmt] tests/nonterm/n8.i:41: Warning: 
   non-terminating loop
   stack: main
 [nonterm] Analysis done.
diff --git a/src/plugins/nonterm/tests/nonterm/oracle/n8.1.res.oracle b/src/plugins/nonterm/tests/nonterm/oracle/n8.1.res.oracle
index 7ee52d4f41f..84c5cfc9d01 100644
--- a/src/plugins/nonterm/tests/nonterm/oracle/n8.1.res.oracle
+++ b/src/plugins/nonterm/tests/nonterm/oracle/n8.1.res.oracle
@@ -35,15 +35,17 @@
   NON TERMINATING FUNCTION
 [eva:final-states] Values at end of function main:
   NON TERMINATING FUNCTION
-[nonterm] tests/nonterm/n8.i:13: Warning: statement is syntactically unreachable
-[nonterm] tests/nonterm/n8.i:17: Warning: statement is syntactically unreachable
-[nonterm] tests/nonterm/n8.i:22: Warning: 
+[nonterm:dead-code] tests/nonterm/n8.i:13: Warning: 
+  statement is syntactically unreachable
+[nonterm:dead-code] tests/nonterm/n8.i:17: Warning: 
+  statement is syntactically unreachable
+[nonterm:dead-code] tests/nonterm/n8.i:22: Warning: 
   implicit return is syntactically unreachable
-[nonterm] tests/nonterm/n8.i:31: Warning: 
+[nonterm:dead-code] tests/nonterm/n8.i:31: Warning: 
   implicit return is syntactically unreachable
-[nonterm] tests/nonterm/n8.i:41: Warning: 
+[nonterm:stmt] tests/nonterm/n8.i:41: Warning: 
   non-terminating loop
   stack: main
-[nonterm] tests/nonterm/n8.i:41: Warning: 
+[nonterm:dead-code] tests/nonterm/n8.i:41: Warning: 
   implicit return is syntactically unreachable
 [nonterm] Analysis done.
diff --git a/src/plugins/nonterm/tests/nonterm/oracle/n9.res.oracle b/src/plugins/nonterm/tests/nonterm/oracle/n9.res.oracle
index 953c368367b..b7c8d4b8ebc 100644
--- a/src/plugins/nonterm/tests/nonterm/oracle/n9.res.oracle
+++ b/src/plugins/nonterm/tests/nonterm/oracle/n9.res.oracle
@@ -28,13 +28,13 @@
 [eva:final-states] Values at end of function main:
   res ∈ {0}
   __retres ∈ {0}
-[nonterm] tests/nonterm/n9.i:7: Warning: 
+[nonterm:stmt] tests/nonterm/n9.i:7: Warning: 
   non-terminating loop
   stack: f :: tests/nonterm/n9.i:41 <- main
-[nonterm] tests/nonterm/n9.i:19: Warning: 
+[nonterm:stmt] tests/nonterm/n9.i:19: Warning: 
   non-terminating loop
   stack: g :: tests/nonterm/n9.i:42 <- main
-[nonterm] tests/nonterm/n9.i:29: Warning: 
+[nonterm:stmt] tests/nonterm/n9.i:29: Warning: 
   non-terminating loop
   stack: f_explicit_break :: tests/nonterm/n9.i:43 <- main
 [nonterm] Analysis done.
diff --git a/src/plugins/nonterm/tests/nonterm/oracle/output_to_file.res.oracle b/src/plugins/nonterm/tests/nonterm/oracle/output_to_file.res.oracle
index 3909a9be3aa..1cc9c3c0670 100644
--- a/src/plugins/nonterm/tests/nonterm/oracle/output_to_file.res.oracle
+++ b/src/plugins/nonterm/tests/nonterm/oracle/output_to_file.res.oracle
@@ -15,8 +15,9 @@
   NON TERMINATING FUNCTION
 [eva:final-states] Values at end of function main:
   NON TERMINATING FUNCTION
-[nonterm] tests/nonterm/output_to_file.i:7: Warning: 
+[nonterm:stmt] tests/nonterm/output_to_file.i:7: Warning: 
   non-terminating loop
   stack: loop :: tests/nonterm/output_to_file.i:11 <- main
-[nonterm] tests/nonterm/output_to_file.i:12: Warning: unreachable return
+[nonterm:unreachable] tests/nonterm/output_to_file.i:12: Warning: 
+  unreachable return
 [nonterm] Analysis done.
diff --git a/src/plugins/nonterm/tests/nonterm/oracle/output_to_file.txt b/src/plugins/nonterm/tests/nonterm/oracle/output_to_file.txt
index 6dd97cd6bff..79d03dcb1a1 100644
--- a/src/plugins/nonterm/tests/nonterm/oracle/output_to_file.txt
+++ b/src/plugins/nonterm/tests/nonterm/oracle/output_to_file.txt
@@ -1,3 +1,3 @@
-tests/nonterm/output_to_file.i:7:[nonterm] warning: non-terminating loop
+tests/nonterm/output_to_file.i:7:[nonterm:stmt] warning: non-terminating loop
 stack: loop :: tests/nonterm/output_to_file.i:11 <- main
-tests/nonterm/output_to_file.i:12:[nonterm] warning: unreachable return
+tests/nonterm/output_to_file.i:12:[nonterm:unreachable] warning: unreachable return
-- 
GitLab


From 8fd42af04c71a11fe3b479357271253c033cd00f Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Wed, 3 Feb 2021 16:12:50 +0100
Subject: [PATCH 002/141] [Eva] avoid triggering warning 16
 (unerasable-optional-argument)

---
 .../values/numerors/numerors_arithmetics.ml   | 16 ++++++-------
 .../values/numerors/numerors_interval.ml      | 24 +++++++++----------
 .../values/numerors/numerors_interval.mli     |  8 +++----
 3 files changed, 24 insertions(+), 24 deletions(-)

diff --git a/src/plugins/value/values/numerors/numerors_arithmetics.ml b/src/plugins/value/values/numerors/numerors_arithmetics.ml
index 776f7edf3f3..d2cea72a638 100644
--- a/src/plugins/value/values/numerors/numerors_arithmetics.ml
+++ b/src/plugins/value/values/numerors/numerors_arithmetics.ml
@@ -331,16 +331,16 @@ module Exact : Arithmetic with type forward = I.t = struct
       I.narrow x.exact (I.neg r.exact)
 
     let add x y r = [x ; y ; r] >>+ fun _ ->
-      I.backward_add ~prec:P.Real ~left:x.exact ~right:y.exact ~result:r.exact
+      I.backward_add ~prec:P.Real ~left:x.exact ~right:y.exact ~result:r.exact ()
 
     let sub x y r = [x ; y ; r] >>+ fun _ ->
-      I.backward_sub ~prec:P.Real ~left:x.exact ~right:y.exact ~result:r.exact
+      I.backward_sub ~prec:P.Real ~left:x.exact ~right:y.exact ~result:r.exact ()
 
     let mul x y r = [x ; y ; r] >>+ fun _ ->
-      I.backward_mul ~prec:P.Real ~left:x.exact ~right:y.exact ~result:r.exact
+      I.backward_mul ~prec:P.Real ~left:x.exact ~right:y.exact ~result:r.exact ()
 
     let div x y r = [x ; y ; r] >>+ fun _ ->
-      I.backward_div ~prec:P.Real ~left:x.exact ~right:y.exact ~result:r.exact
+      I.backward_div ~prec:P.Real ~left:x.exact ~right:y.exact ~result:r.exact ()
 
   end
 
@@ -378,16 +378,16 @@ module Approx : Arithmetic with type forward = I.t = struct
       I.narrow x.approx (I.neg r.approx)
 
     let add x y r = [x ; y ; r] >>+ fun prec ->
-      I.backward_add ~prec ~left:x.approx ~right:y.approx ~result:r.approx
+      I.backward_add ~prec ~left:x.approx ~right:y.approx ~result:r.approx ()
 
     let sub x y r = [x ; y ; r] >>+ fun prec ->
-      I.backward_sub ~prec ~left:x.approx ~right:y.approx ~result:r.approx
+      I.backward_sub ~prec ~left:x.approx ~right:y.approx ~result:r.approx ()
 
     let mul x y r = [x ; y ; r] >>+ fun prec ->
-      I.backward_mul ~prec ~left:x.approx ~right:y.approx ~result:r.approx
+      I.backward_mul ~prec ~left:x.approx ~right:y.approx ~result:r.approx ()
 
     let div x y r = [x ; y ; r] >>+ fun prec ->
-      I.backward_div ~prec ~left:x.approx ~right:y.approx ~result:r.approx
+      I.backward_div ~prec ~left:x.approx ~right:y.approx ~result:r.approx ()
 
   end
 
diff --git a/src/plugins/value/values/numerors/numerors_interval.ml b/src/plugins/value/values/numerors/numerors_interval.ml
index 7f1e0f63bf4..1354d6dbc46 100644
--- a/src/plugins/value/values/numerors/numerors_interval.ml
+++ b/src/plugins/value/values/numerors/numerors_interval.ml
@@ -441,7 +441,7 @@ let finite_values ~prec = function
     let max = F.min (F.maximal_pos_float prec) y in
     if max < min then None else Some (min, max)
 
-let backward_op (op : operator) fnan ?(prec = Precisions.Real) value result =
+let backward_op (op : operator) fnan ?(prec = Precisions.Real) value result () =
   if contains_infinity result || (contains_nan value && contains_nan result)
   then `Value (top prec)
   else
@@ -471,7 +471,7 @@ let synthetize left right =
   | `Value left, `Value right -> `Value (left, right)
 [@@inline]
 
-let backward_add ?(prec = Precisions.Real) ~left ~right ~result =
+let backward_add ?(prec = Precisions.Real) ~left ~right ~result () =
   let reduce_for_nan value =
     match contains_pos_infinity value, contains_neg_infinity value with
     | true , true   -> I (F.neg_inf prec, F.pos_inf prec, true)
@@ -479,38 +479,38 @@ let backward_add ?(prec = Precisions.Real) ~left ~right ~result =
     | false, true   -> I (F.pos_inf prec, F.pos_inf prec, true)
     | false, false  -> NaN prec
   in
-  let right' = backward_op F.sub reduce_for_nan ~prec left  result in
-  let left'  = backward_op F.sub reduce_for_nan ~prec right result in
+  let right' = backward_op F.sub reduce_for_nan ~prec left  result () in
+  let left'  = backward_op F.sub reduce_for_nan ~prec right result () in
   synthetize left' right'
 
-let backward_sub ?(prec = Precisions.Real) ~left ~right ~result =
-  match backward_add ~prec ~left ~right:(neg right) ~result with
+let backward_sub ?(prec = Precisions.Real) ~left ~right ~result () =
+  match backward_add ~prec ~left ~right:(neg right) ~result () with
   | `Bottom -> `Bottom
   | `Value (left, right) -> `Value (left, neg right)
 
-let backward_mul ?(prec = Precisions.Real) ~left ~right ~result =
+let backward_mul ?(prec = Precisions.Real) ~left ~right ~result () =
   let reduce_for_nan value =
     match contains_infinity value, contains_a_zero value with
     | true, _ | _, true -> I (F.neg_inf prec, F.pos_inf prec, true)
     | false, false -> NaN prec
   in
-  let right' = backward_op F.div reduce_for_nan ~prec left  result in
-  let left'  = backward_op F.div reduce_for_nan ~prec right result in
+  let right' = backward_op F.div reduce_for_nan ~prec left  result () in
+  let left'  = backward_op F.div reduce_for_nan ~prec right result () in
   synthetize left' right'
 
-let backward_div ?(prec = Precisions.Real) ~left ~right ~result =
+let backward_div ?(prec = Precisions.Real) ~left ~right ~result () =
   let reduce_for_nan value =
     match contains_infinity value, contains_a_zero value with
     | true, _ | _, true -> I (F.neg_inf prec, F.pos_inf prec, true)
     | false, false -> NaN prec
   in
   let right' =
-    match backward_op F.div reduce_for_nan ~prec left  result with
+    match backward_op F.div reduce_for_nan ~prec left  result () with
     | `Value right' ->
       let one = F.of_int ~prec 1 in
       let one = I (one, one, false) in
       `Value (div ~prec one right')
     | `Bottom -> `Bottom
   in
-  let left'  = backward_op F.div reduce_for_nan ~prec right result in
+  let left'  = backward_op F.div reduce_for_nan ~prec right result () in
   synthetize left' right'
diff --git a/src/plugins/value/values/numerors/numerors_interval.mli b/src/plugins/value/values/numerors/numerors_interval.mli
index badb0a2d25a..1a4ea5b7545 100644
--- a/src/plugins/value/values/numerors/numerors_interval.mli
+++ b/src/plugins/value/values/numerors/numerors_interval.mli
@@ -182,10 +182,10 @@ val backward_gt : ?prec:Precisions.t -> t -> t -> t Bottom.or_bottom
 
 (** These functions perform backward propagation for arithmetic *)
 val backward_add : ?prec:Precisions.t -> left:t -> right:t ->
-  result:t -> (t * t) Bottom.or_bottom
+  result:t -> unit -> (t * t) Bottom.or_bottom
 val backward_sub : ?prec:Precisions.t -> left:t -> right:t ->
-  result:t -> (t * t) Bottom.or_bottom
+  result:t -> unit -> (t * t) Bottom.or_bottom
 val backward_mul : ?prec:Precisions.t -> left:t -> right:t ->
-  result:t -> (t * t) Bottom.or_bottom
+  result:t -> unit -> (t * t) Bottom.or_bottom
 val backward_div : ?prec:Precisions.t -> left:t -> right:t ->
-  result:t -> (t * t) Bottom.or_bottom
+  result:t -> unit -> (t * t) Bottom.or_bottom
-- 
GitLab


From fd9375b3ac0018f23842e41bafd42813d4950afc Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Wed, 3 Feb 2021 09:49:41 +0100
Subject: [PATCH 003/141] [Libc] add spec for wcscasecmp

---
 share/libc/wchar.h                               |  7 +++++++
 .../tests/known/oracle/printf.res.oracle         | 12 ++++++------
 .../tests/known/oracle/swprintf.res.oracle       | 12 ++++++------
 .../variadic/tests/known/oracle/wchar.res.oracle | 12 ++++++------
 tests/libc/oracle/fc_libc.0.res.oracle           | 14 +++++++-------
 tests/libc/oracle/fc_libc.1.res.oracle           |  8 ++++++++
 tests/libc/oracle/wchar_h.res.oracle             | 16 ++++++++++++++++
 tests/libc/wchar_h.c                             |  3 +++
 8 files changed, 59 insertions(+), 25 deletions(-)

diff --git a/share/libc/wchar.h b/share/libc/wchar.h
index 5ea6aa80e83..bb8a4b6fd45 100644
--- a/share/libc/wchar.h
+++ b/share/libc/wchar.h
@@ -260,6 +260,13 @@ extern wchar_t *fgetws(wchar_t * restrict ws, int n, FILE * restrict stream);
   }
 */
 
+/*@
+  requires valid_wstring_ws1: valid_read_wstring(ws1);
+  requires valid_wstring_ws2: valid_read_wstring(ws2);
+  assigns \result \from indirect:ws1[0..], indirect:ws2[0..];
+*/
+extern int wcscasecmp(const wchar_t *ws1, const wchar_t *ws2);
+
 /* It is unclear whether these are more often in wchar.h or stdio.h */
 
 extern int fwprintf(FILE * stream, const wchar_t * format, ...);
diff --git a/src/plugins/variadic/tests/known/oracle/printf.res.oracle b/src/plugins/variadic/tests/known/oracle/printf.res.oracle
index cac34c3b811..b8b4149310d 100644
--- a/src/plugins/variadic/tests/known/oracle/printf.res.oracle
+++ b/src/plugins/variadic/tests/known/oracle/printf.res.oracle
@@ -1,14 +1,14 @@
-[variadic] FRAMAC_SHARE/libc/wchar.h:265: 
+[variadic] FRAMAC_SHARE/libc/wchar.h:272: 
   Declaration of variadic function fwprintf.
-[variadic] FRAMAC_SHARE/libc/wchar.h:267: 
+[variadic] FRAMAC_SHARE/libc/wchar.h:274: 
   Declaration of variadic function swprintf.
-[variadic] FRAMAC_SHARE/libc/wchar.h:269: 
+[variadic] FRAMAC_SHARE/libc/wchar.h:276: 
   Declaration of variadic function wprintf.
-[variadic] FRAMAC_SHARE/libc/wchar.h:272: 
+[variadic] FRAMAC_SHARE/libc/wchar.h:279: 
   Declaration of variadic function wscanf.
-[variadic] FRAMAC_SHARE/libc/wchar.h:274: 
+[variadic] FRAMAC_SHARE/libc/wchar.h:281: 
   Declaration of variadic function fwscanf.
-[variadic] FRAMAC_SHARE/libc/wchar.h:276: 
+[variadic] FRAMAC_SHARE/libc/wchar.h:283: 
   Declaration of variadic function swscanf.
 [variadic] FRAMAC_SHARE/libc/stdio.h:207: 
   Declaration of variadic function fprintf.
diff --git a/src/plugins/variadic/tests/known/oracle/swprintf.res.oracle b/src/plugins/variadic/tests/known/oracle/swprintf.res.oracle
index 505fe9d8346..326508d6ec1 100644
--- a/src/plugins/variadic/tests/known/oracle/swprintf.res.oracle
+++ b/src/plugins/variadic/tests/known/oracle/swprintf.res.oracle
@@ -1,14 +1,14 @@
-[variadic] FRAMAC_SHARE/libc/wchar.h:265: 
+[variadic] FRAMAC_SHARE/libc/wchar.h:272: 
   Declaration of variadic function fwprintf.
-[variadic] FRAMAC_SHARE/libc/wchar.h:267: 
+[variadic] FRAMAC_SHARE/libc/wchar.h:274: 
   Declaration of variadic function swprintf.
-[variadic] FRAMAC_SHARE/libc/wchar.h:269: 
+[variadic] FRAMAC_SHARE/libc/wchar.h:276: 
   Declaration of variadic function wprintf.
-[variadic] FRAMAC_SHARE/libc/wchar.h:272: 
+[variadic] FRAMAC_SHARE/libc/wchar.h:279: 
   Declaration of variadic function wscanf.
-[variadic] FRAMAC_SHARE/libc/wchar.h:274: 
+[variadic] FRAMAC_SHARE/libc/wchar.h:281: 
   Declaration of variadic function fwscanf.
-[variadic] FRAMAC_SHARE/libc/wchar.h:276: 
+[variadic] FRAMAC_SHARE/libc/wchar.h:283: 
   Declaration of variadic function swscanf.
 [variadic] FRAMAC_SHARE/libc/stdio.h:207: 
   Declaration of variadic function fprintf.
diff --git a/src/plugins/variadic/tests/known/oracle/wchar.res.oracle b/src/plugins/variadic/tests/known/oracle/wchar.res.oracle
index b0188cdf152..fb03056d82e 100644
--- a/src/plugins/variadic/tests/known/oracle/wchar.res.oracle
+++ b/src/plugins/variadic/tests/known/oracle/wchar.res.oracle
@@ -1,14 +1,14 @@
-[variadic] FRAMAC_SHARE/libc/wchar.h:265: 
+[variadic] FRAMAC_SHARE/libc/wchar.h:272: 
   Declaration of variadic function fwprintf.
-[variadic] FRAMAC_SHARE/libc/wchar.h:267: 
+[variadic] FRAMAC_SHARE/libc/wchar.h:274: 
   Declaration of variadic function swprintf.
-[variadic] FRAMAC_SHARE/libc/wchar.h:269: 
+[variadic] FRAMAC_SHARE/libc/wchar.h:276: 
   Declaration of variadic function wprintf.
-[variadic] FRAMAC_SHARE/libc/wchar.h:272: 
+[variadic] FRAMAC_SHARE/libc/wchar.h:279: 
   Declaration of variadic function wscanf.
-[variadic] FRAMAC_SHARE/libc/wchar.h:274: 
+[variadic] FRAMAC_SHARE/libc/wchar.h:281: 
   Declaration of variadic function fwscanf.
-[variadic] FRAMAC_SHARE/libc/wchar.h:276: 
+[variadic] FRAMAC_SHARE/libc/wchar.h:283: 
   Declaration of variadic function swscanf.
 [variadic] FRAMAC_SHARE/libc/stdio.h:207: 
   Declaration of variadic function fprintf.
diff --git a/tests/libc/oracle/fc_libc.0.res.oracle b/tests/libc/oracle/fc_libc.0.res.oracle
index 9cd8d6f3657..dadf77c4d5a 100644
--- a/tests/libc/oracle/fc_libc.0.res.oracle
+++ b/tests/libc/oracle/fc_libc.0.res.oracle
@@ -43,7 +43,7 @@
    wcscpy (0 call); wcslen (2 calls); wcsncat (0 call); wcsncpy (0 call);
    wmemcpy (0 call); wmemset (0 call); 
   
-  Specified-only functions (413)
+  Specified-only functions (414)
   ==============================
    FD_CLR (0 call); FD_ISSET (0 call); FD_SET (0 call); FD_ZERO (0 call);
    Frama_C_int_interval (0 call); Frama_C_long_interval (0 call);
@@ -163,11 +163,11 @@
    ungetc (0 call); unlink (0 call); usleep (0 call); utimes (0 call);
    vfprintf (0 call); vfscanf (0 call); vprintf (0 call); vscanf (0 call);
    vsnprintf (0 call); vsprintf (0 call); vsyslog (0 call); wait (0 call);
-   waitpid (0 call); wcschr (0 call); wcscmp (0 call); wcscspn (0 call);
-   wcslcat (0 call); wcslcpy (0 call); wcsncmp (0 call); wcspbrk (0 call);
-   wcsrchr (0 call); wcsspn (0 call); wcsstr (0 call); wcstombs (0 call);
-   wctomb (0 call); wmemchr (0 call); wmemcmp (0 call); wmemmove (0 call);
-   write (0 call); 
+   waitpid (0 call); wcscasecmp (0 call); wcschr (0 call); wcscmp (0 call);
+   wcscspn (0 call); wcslcat (0 call); wcslcpy (0 call); wcsncmp (0 call);
+   wcspbrk (0 call); wcsrchr (0 call); wcsspn (0 call); wcsstr (0 call);
+   wcstombs (0 call); wctomb (0 call); wmemchr (0 call); wmemcmp (0 call);
+   wmemmove (0 call); write (0 call); 
   
   Undefined and unspecified functions (1)
   =======================================
@@ -195,7 +195,7 @@
   Goto = 97
   Assignment = 459
   Exit point = 83
-  Function = 497
+  Function = 498
   Function call = 93
   Pointer dereferencing = 159
   Cyclomatic complexity = 296
diff --git a/tests/libc/oracle/fc_libc.1.res.oracle b/tests/libc/oracle/fc_libc.1.res.oracle
index be0c42e7531..1115f88c003 100644
--- a/tests/libc/oracle/fc_libc.1.res.oracle
+++ b/tests/libc/oracle/fc_libc.1.res.oracle
@@ -6789,6 +6789,14 @@ extern wchar_t *fgetws(wchar_t * __restrict ws, int n,
       }
 
 */
+/*@ requires valid_wstring_ws1: valid_read_wstring(ws1);
+    requires valid_wstring_ws2: valid_read_wstring(ws2);
+    assigns \result;
+    assigns \result
+      \from (indirect: *(ws1 + (0 ..))), (indirect: *(ws2 + (0 ..)));
+ */
+extern int wcscasecmp(wchar_t const *ws1, wchar_t const *ws2);
+
 /*@ requires
       valid_dest:
         valid_or_empty((void *)dest, (unsigned int)(sizeof(wchar_t) * n));
diff --git a/tests/libc/oracle/wchar_h.res.oracle b/tests/libc/oracle/wchar_h.res.oracle
index bf863d20cc9..e224ff4e25b 100644
--- a/tests/libc/oracle/wchar_h.res.oracle
+++ b/tests/libc/oracle/wchar_h.res.oracle
@@ -185,6 +185,21 @@
 [eva] tests/libc/wchar_h.c:66: 
   function wcsncat: no state left, precondition 'separation' got status valid.
 [eva] Done for function wcsncat
+[eva] computing for function wcscasecmp <- main.
+  Called from tests/libc/wchar_h.c:70.
+[eva] using specification for function wcscasecmp
+[eva] tests/libc/wchar_h.c:70: 
+  function wcscasecmp: precondition 'valid_wstring_ws1' got status valid.
+[eva] tests/libc/wchar_h.c:70: 
+  function wcscasecmp: precondition 'valid_wstring_ws2' got status valid.
+[eva] Done for function wcscasecmp
+[eva] computing for function wcscasecmp <- main.
+  Called from tests/libc/wchar_h.c:71.
+[eva] tests/libc/wchar_h.c:71: 
+  function wcscasecmp: precondition 'valid_wstring_ws1' got status valid.
+[eva] tests/libc/wchar_h.c:71: 
+  function wcscasecmp: precondition 'valid_wstring_ws2' got status valid.
+[eva] Done for function wcscasecmp
 [eva] Recording results for main
 [eva] done for function main
 [eva] ====== VALUES COMPUTED ======
@@ -201,4 +216,5 @@
   wdst2[0..9] ∈ {65}
        [10] ∈ {0}
        [11..19] ∈ [--..--]
+  ir ∈ [--..--]
   __retres ∈ {0; 1}
diff --git a/tests/libc/wchar_h.c b/tests/libc/wchar_h.c
index e7cb493fa75..3bde71c8dc7 100644
--- a/tests/libc/wchar_h.c
+++ b/tests/libc/wchar_h.c
@@ -66,5 +66,8 @@ int main() {
     wcsncat(wdst2+10, wdst2, 10); // error: no separation
     //@ assert unreachable:\false;
   }
+
+  int ir = wcscasecmp(L"\0", L"\0");
+  ir = wcscasecmp(wsrc, L"\0");
   return 0;
 }
-- 
GitLab


From 5eec863c7bc4d7b353d3a15c0d9a59b93e94d5a6 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Wed, 3 Feb 2021 16:34:00 +0100
Subject: [PATCH 004/141] [Libc] add stub for wcsdup

---
 share/libc/wchar.c                       | 14 +++++
 tests/libc/oracle/fc_libc.0.res.oracle   | 26 ++++-----
 tests/libc/oracle/fc_libc.1.res.oracle   | 17 ++++++
 tests/libc/oracle/wchar_c_h.0.res.oracle | 70 ++++++++++++++++++++++--
 tests/libc/wchar_c_h.c                   |  7 +++
 5 files changed, 115 insertions(+), 19 deletions(-)

diff --git a/share/libc/wchar.c b/share/libc/wchar.c
index 565670186d0..15d80f10324 100644
--- a/share/libc/wchar.c
+++ b/share/libc/wchar.c
@@ -91,4 +91,18 @@ wchar_t* wcsncat(wchar_t *dest, const wchar_t *src, size_t n)
   return dest;
 }
 
+/* Warning: read considerations about malloc() in Frama-C */
+#include "stdlib.h"
+wchar_t *wcsdup(const wchar_t *ws)
+{
+  size_t l = wcslen(ws) + 1;
+  wchar_t *p = malloc(sizeof(wchar_t) * l);
+  if (!p) {
+    errno = ENOMEM;
+    return 0;
+  }
+  wmemcpy(p, ws, l);
+  return p;
+}
+
 __POP_FC_STDLIB
diff --git a/tests/libc/oracle/fc_libc.0.res.oracle b/tests/libc/oracle/fc_libc.0.res.oracle
index dadf77c4d5a..5ba9d6cd179 100644
--- a/tests/libc/oracle/fc_libc.0.res.oracle
+++ b/tests/libc/oracle/fc_libc.0.res.oracle
@@ -15,7 +15,7 @@
 [eva] ====== VALUES COMPUTED ======
 [eva:final-states] Values at end of function main:
   
-[metrics] Defined functions (83)
+[metrics] Defined functions (84)
   ======================
    Frama_C_abort (1 call); Frama_C_char_interval (1 call);
    Frama_C_double_interval (0 call); Frama_C_float_interval (0 call);
@@ -40,8 +40,8 @@
    strncat (0 call); strncmp (0 call); strncpy (2 calls); strndup (0 call);
    strnlen (0 call); strrchr (0 call); strsignal (0 call); strstr (0 call);
    tolower (0 call); toupper (0 call); unsetenv (0 call); wcscat (0 call);
-   wcscpy (0 call); wcslen (2 calls); wcsncat (0 call); wcsncpy (0 call);
-   wmemcpy (0 call); wmemset (0 call); 
+   wcscpy (0 call); wcsdup (0 call); wcslen (3 calls); wcsncat (0 call);
+   wcsncpy (0 call); wmemcpy (1 call); wmemset (0 call); 
   
   Specified-only functions (414)
   ==============================
@@ -118,7 +118,7 @@
    log10f (0 call); log10l (0 call); log2 (0 call); log2f (0 call);
    log2l (0 call); logf (0 call); logl (0 call); longjmp (0 call);
    lrand48 (0 call); lseek (0 call); lstat (0 call); makedev (0 call);
-   malloc (8 calls); mblen (0 call); mbstowcs (0 call); mbtowc (0 call);
+   malloc (9 calls); mblen (0 call); mbstowcs (0 call); mbtowc (0 call);
    mkdir (0 call); mkfifo (0 call); mknod (0 call); mkstemp (0 call);
    mktime (0 call); mrand48 (0 call); nan (0 call); nanf (0 call);
    nanl (0 call); nanosleep (0 call); nrand48 (0 call); ntohl (0 call);
@@ -187,18 +187,18 @@
   
   Global metrics
   ============== 
-  Sloc = 1127
-  Decision point = 213
+  Sloc = 1138
+  Decision point = 214
   Global variables = 85
-  If = 198
+  If = 199
   Loop = 43
-  Goto = 97
-  Assignment = 459
-  Exit point = 83
-  Function = 498
-  Function call = 93
+  Goto = 98
+  Assignment = 465
+  Exit point = 84
+  Function = 499
+  Function call = 96
   Pointer dereferencing = 159
-  Cyclomatic complexity = 296
+  Cyclomatic complexity = 298
 /* Generated by Frama-C */
 #include "__fc_builtin.c"
 #include "__fc_builtin.h"
diff --git a/tests/libc/oracle/fc_libc.1.res.oracle b/tests/libc/oracle/fc_libc.1.res.oracle
index 1115f88c003..fd785f06633 100644
--- a/tests/libc/oracle/fc_libc.1.res.oracle
+++ b/tests/libc/oracle/fc_libc.1.res.oracle
@@ -6975,6 +6975,23 @@ wchar_t *wcsncat(wchar_t *dest, wchar_t const *src, size_t n)
   return dest;
 }
 
+wchar_t *wcsdup(wchar_t const *ws)
+{
+  wchar_t *__retres;
+  size_t tmp;
+  tmp = wcslen(ws);
+  size_t l = tmp + (size_t)1;
+  wchar_t *p = malloc(sizeof(wchar_t) * l);
+  if (! p) {
+    __fc_errno = 12;
+    __retres = (wchar_t *)0;
+    goto return_label;
+  }
+  wmemcpy(p,ws,l);
+  __retres = p;
+  return_label: return __retres;
+}
+
 /*@ ghost extern int __fc_stack_status; */
 
 /*@ ensures allocation: \fresh{Old, Here}(\result,\old(size));
diff --git a/tests/libc/oracle/wchar_c_h.0.res.oracle b/tests/libc/oracle/wchar_c_h.0.res.oracle
index bf7be7856c7..c03089cbb4c 100644
--- a/tests/libc/oracle/wchar_c_h.0.res.oracle
+++ b/tests/libc/oracle/wchar_c_h.0.res.oracle
@@ -185,6 +185,33 @@
   function wmemchr: precondition 'initialization' got status valid.
 [eva] tests/libc/wchar_c_h.c:70: 
   function wmemchr: precondition 'danglingness' got status valid.
+[eva] computing for function wcsdup <- main.
+  Called from tests/libc/wchar_c_h.c:73.
+[eva] share/libc/wchar.c:98: Call to builtin wcslen
+[eva] share/libc/wchar.c:98: 
+  function wcslen: precondition 'valid_string_s' got status valid.
+[eva] share/libc/wchar.c:99: Call to builtin malloc
+[eva] share/libc/wchar.c:99: allocating variable __malloc_wcsdup_l99
+[eva] computing for function wmemcpy <- wcsdup <- main.
+  Called from share/libc/wchar.c:104.
+[eva] Recording results for wmemcpy
+[eva] Done for function wmemcpy
+[eva] Recording results for wcsdup
+[eva] Done for function wcsdup
+[eva] computing for function wcsdup <- main.
+  Called from tests/libc/wchar_c_h.c:75.
+[eva] share/libc/wchar.c:98: Call to builtin wcslen
+[eva] share/libc/wchar.c:99: Call to builtin malloc
+[eva] share/libc/wchar.c:99: allocating variable __malloc_wcsdup_l99_0
+[eva] computing for function wmemcpy <- wcsdup <- main.
+  Called from share/libc/wchar.c:104.
+[eva] Recording results for wmemcpy
+[eva] Done for function wmemcpy
+[eva] Recording results for wcsdup
+[eva] Done for function wcsdup
+[eva] tests/libc/wchar_c_h.c:76: Call to builtin free
+[eva] tests/libc/wchar_c_h.c:76: 
+  function free: precondition 'freeable' got status valid.
 [eva] Recording results for main
 [eva] done for function main
 [eva] ====== VALUES COMPUTED ======
@@ -234,16 +261,38 @@
      [4] ∈ {116}
      [5..19] ∈ UNINITIALIZED
 [eva:final-states] Values at end of function wmemcpy:
-  buf[0] ∈ {72}
-     [1] ∈ {97}
-     [2] ∈ {121}
-     [3] ∈ {115}
-     [4] ∈ {116}
-     [5..19] ∈ UNINITIALIZED
+  buf[0..4] ∈ [--..--]
+     [5] ∈ {0} or UNINITIALIZED
+     [6..19] ∈ UNINITIALIZED
+  __malloc_wcsdup_l99[0] ∈ {65}
+                     [1] ∈ {66}
+                     [2] ∈ {67}
+                     [3] ∈ {0}
+  __malloc_wcsdup_l99_0[0] ∈ {65}
+                       [1] ∈ {66}
+                       [2] ∈ {67}
+                       [3] ∈ {0}
+[eva:final-states] Values at end of function wcsdup:
+  __fc_errno ∈ [--..--]
+  __fc_heap_status ∈ [--..--]
+  l ∈ {4}
+  p ∈ {{ NULL ; &__malloc_wcsdup_l99[0] ; &__malloc_wcsdup_l99_0[0] }}
+  __retres ∈
+          {{ NULL ; &__malloc_wcsdup_l99[0] ; &__malloc_wcsdup_l99_0[0] }}
+  __malloc_wcsdup_l99[0] ∈ {65}
+                     [1] ∈ {66}
+                     [2] ∈ {67}
+                     [3] ∈ {0}
+  __malloc_wcsdup_l99_0[0] ∈ {65}
+                       [1] ∈ {66}
+                       [2] ∈ {67}
+                       [3] ∈ {0}
 [eva:final-states] Values at end of function wmemset:
   buf[0..4] ∈ [--..--]
      [5..19] ∈ UNINITIALIZED
 [eva:final-states] Values at end of function main:
+  __fc_errno ∈ [--..--]
+  __fc_heap_status ∈ [--..--]
   sc1 ∈ {{ L"Needle" }}
   sc2 ∈ {{ L"Haystack" }}
   buf[0..4] ∈ [--..--] or UNINITIALIZED
@@ -267,4 +316,13 @@
   wcr ∈ {{ L"ABC" + {8} }}
   wmr1 ∈ {0}
   wmr2 ∈ {{ L"ABC" + {8} }}
+  dupbuf ∈ {{ NULL ; &__malloc_wcsdup_l99_0[0] }} or ESCAPINGADDR
   __retres ∈ {0}
+  __malloc_wcsdup_l99[0] ∈ {65}
+                     [1] ∈ {66}
+                     [2] ∈ {67}
+                     [3] ∈ {0}
+  __malloc_wcsdup_l99_0[0] ∈ {65}
+                       [1] ∈ {66}
+                       [2] ∈ {67}
+                       [3] ∈ {0}
diff --git a/tests/libc/wchar_c_h.c b/tests/libc/wchar_c_h.c
index 8dadb46e2f8..0baf530c850 100644
--- a/tests/libc/wchar_c_h.c
+++ b/tests/libc/wchar_c_h.c
@@ -69,6 +69,13 @@ int main() {
   wchar_t *wmr1 = wmemchr(wc, L'C', 2); // not found
   wchar_t *wmr2 = wmemchr(p, L'C', 2); // found
 
+#ifdef TEST_IMPLEMENTATION
+  wchar_t *dupbuf = wcsdup(wc);
+  if (!dupbuf) goto exit;
+  dupbuf = wcsdup(dupbuf); // memory leak
+  free(dupbuf);
+#endif
+
 exit:
   return 0;
 }
-- 
GitLab


From c0559772aed802cc29e162431f820c004a45e032 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Loi=CC=88c=20Correnson?= <loic.correnson@cea.fr>
Date: Fri, 5 Feb 2021 11:08:50 +0100
Subject: [PATCH 005/141] [kernel] add vertex control-flow infos on automata

---
 .../analysis/interpreted_automata.ml          | 93 +++++++++++++------
 .../analysis/interpreted_automata.mli         | 28 ++++--
 2 files changed, 85 insertions(+), 36 deletions(-)

diff --git a/src/kernel_services/analysis/interpreted_automata.ml b/src/kernel_services/analysis/interpreted_automata.ml
index 8d7d1cad9f4..6f45565db71 100644
--- a/src/kernel_services/analysis/interpreted_automata.ml
+++ b/src/kernel_services/analysis/interpreted_automata.ml
@@ -30,10 +30,21 @@ type info =
   | NoneInfo
   | LoopHead of int (* level *)
 
+type 'a control =
+  | Edges (* control flow is only given by vertex edges *)
+  | Loop of 'a (* start vertex of a Loop stmt with breaking vertex *)
+  | If of { cond: exp; vthen: 'a; velse: 'a }
+  (* edges are guaranteed to be two guards `Then` else `Else`
+     with the given condition and successor vertices. *)
+  | Switch of { value: exp; cases: (exp * 'a) list; default: 'a }
+  (* edges are guaranteed to be issued from a `switch()` statement with
+     the given cases and default vertices. *)
+
 type vertex = {
   vertex_key : int;
   mutable vertex_start_of : Cil_types.stmt option;
   mutable vertex_info : info;
+  mutable vertex_control : vertex control;
 }
 
 type assert_kind =
@@ -73,6 +84,7 @@ let dummy_vertex = {
   vertex_key = -1;
   vertex_start_of = None;
   vertex_info = NoneInfo;
+  vertex_control = Edges;
 }
 
 let dummy_edge = {
@@ -246,10 +258,10 @@ let build_automaton ~annotations kf =
       vertex_key = !next_vertex;
       vertex_start_of = None;
       vertex_info = NoneInfo;
+      vertex_control = Edges;
     } in
     incr next_vertex;
-    G.add_vertex g v;
-    v
+    G.add_vertex g v; v
   and add_edge src dest edge_kinstr edge_transition edge_loc =
     let e = {
       edge_key = !next_edge;
@@ -278,19 +290,26 @@ let build_automaton ~annotations kf =
     in
     fold_transition src l
   in
-  let build_stmt_transition src dest stmt succ transition =
-    (* Get the list of exited and enterd group *)
+  let build_stmt_next src dest stmt succ transition =
+    (* Also returns the successor of the required transition. *)
+    (* Inserts between next and dest the list of exited and enterd group. *)
     let exited_blocks = Kernel_function.blocks_closed_by_edge stmt succ
     and entered_blocks = Kernel_function.blocks_opened_by_edge stmt succ
     in
     let l =
-      transition ::
       List.map (fun b -> Leave b) exited_blocks @
       List.map (fun b -> Enter b) entered_blocks
-    and kinstr = Kstmt stmt
+    and kinstr = Kstmt stmt and loc = stmt_loc stmt
     in
-    build_transitions src dest kinstr (stmt_loc stmt) l
+    if l = [] then
+      ( add_edge src dest kinstr transition loc ; dest )
+    else
+      let v = add_vertex () in
+      add_edge src v kinstr transition loc ;
+      build_transitions v dest kinstr loc l ; v
   in
+  let build_stmt_transition src dest stmt succ transition =
+    ignore (build_stmt_next src dest stmt succ transition) in
 
   let rec do_list do_one control labels = function
     | [] -> assert false
@@ -326,7 +345,6 @@ let build_automaton ~annotations kf =
   and do_stmt control (labels:vertex labels) stmt =
     let kinstr = Kstmt stmt
     and loc = stmt_loc stmt in
-    let source = fst loc in
     let do_annot control labels (annot: code_annotation) : unit =
       let labels = LabelMap.add_builtin Here control.src labels in
       let annotation = make_annotation kf stmt annot labels in
@@ -395,6 +413,9 @@ let build_automaton ~annotations kf =
         add_edge control.src else_point kinstr else_transition loc;
         do_block {control with src=then_point} kinstr labels then_block;
         do_block {control with src=else_point} kinstr labels else_block;
+        control.src.vertex_control <- If {
+            cond = exp ; vthen = then_point; velse = else_point
+          };
         control.dest
 
       | Switch (exp1, block, cases, _) ->
@@ -411,6 +432,7 @@ let build_automaton ~annotations kf =
         do_block block_control kinstr labels block;
         (* Then link the cases *)
         let default_case : (vertex * Cil_types.stmt) option ref = ref None in
+        let value_cases : (Cil_types.exp * vertex) list ref = ref [] in
         (* For all statements *)
         let values = List.fold_left
             begin fun values case_stmt ->
@@ -420,7 +442,9 @@ let build_automaton ~annotations kf =
                 begin fun values -> function
                   | Case (exp2,_) ->
                     let guard = build_guard exp2 Then in
-                    build_stmt_transition control.src dest stmt case_stmt guard;
+                    let v2 =
+                      build_stmt_next control.src dest stmt case_stmt guard in
+                    value_cases := (exp2,v2) :: !value_cases ;
                     exp2 :: values
                   | Default (_) ->
                     default_case := Some (dest,case_stmt);
@@ -444,11 +468,18 @@ let build_automaton ~annotations kf =
         and add_last_edge src transition =
           match !default_case with
           | None ->
-            add_edge src control.dest kinstr transition loc
+            add_edge src control.dest kinstr transition loc ;
+            control.dest
           | Some (case_vertex, case_stmt) ->
-            build_stmt_transition src case_vertex stmt case_stmt transition
+            build_stmt_transition src case_vertex stmt case_stmt transition ;
+            case_vertex
         in
-        add_default_edge control.src values;
+        let default_vertex = add_default_edge control.src values in
+        control.src.vertex_control <- Switch {
+            value = exp1;
+            cases = List.rev !value_cases;
+            default = default_vertex;
+          };
         control.dest
 
       | Loop (_annotations, block, _, _, _) ->
@@ -487,6 +518,7 @@ let build_automaton ~annotations kf =
         in
         do_block loop_control kinstr labels block;
         decr loop_level;
+        control.src.vertex_control <- Loop control.dest ;
         control.dest
 
       | Block block ->
@@ -499,7 +531,7 @@ let build_automaton ~annotations kf =
         control.dest
 
       | Throw _ | TryCatch _ | TryFinally _ | TryExcept _
-        -> Kernel.not_yet_implemented ~source
+        -> Kernel.not_yet_implemented ~source:(fst loc)
              "[interpreted_automata] exception handling"
     in
     (* Update statement table *)
@@ -875,7 +907,6 @@ end
 (* --- States                                                         --- *)
 (* ---------------------------------------------------------------------- *)
 
-
 module AutomatonState = Kernel_function.Make_Table (Automaton)
     (struct
       let size = 97
@@ -885,7 +916,6 @@ module AutomatonState = Kernel_function.Make_Table (Automaton)
 
 let get_automaton = AutomatonState.memo (build_automaton ~annotations:false)
 
-
 module WTOState = Kernel_function.Make_Table (WTO)
     (struct
       let size = 97
@@ -940,9 +970,9 @@ module UnrollUnnatural  = struct
     include Datatype.Make_with_collections(struct
         include Datatype.Undefined
         include Vertex.Set
-
         let name = "Interpreted_automata.OnlyHead.Vertex_Set"
-        let pretty fmt m = Pretty_utils.pp_iter ~sep:",@ " Vertex.Set.iter Vertex.pretty fmt m
+        let pretty fmt m = Pretty_utils.pp_iter ~sep:",@ "
+            Vertex.Set.iter Vertex.pretty fmt m
         let reprs = [Vertex.Set.empty]
       end)
 
@@ -972,18 +1002,17 @@ module UnrollUnnatural  = struct
   module OldG = G
 
   module G = struct
-    include Graph.Imperative.Digraph.ConcreteBidirectionalLabeled (Version)
-        (Edge)
+    include
+      Graph.Imperative.Digraph.ConcreteBidirectionalLabeled(Version)(Edge)
 
     let pretty : t Pretty_utils.formatter = fun fmt g ->
       Pretty_utils.pp_iter iter_vertex ~pre:"@[" ~suf:"@]" ~sep:";@ "
         (fun fmt v ->
            Format.fprintf fmt "@[<2>@[%a ->@]@ %a@]"
              Version.pretty v
-             (Pretty_utils.pp_iter (fun f -> iter_succ f g) ~sep:",@ " Version.pretty)
-             v
-        )
-        fmt g
+             (Pretty_utils.pp_iter
+                (fun f -> iter_succ f g) ~sep:",@ " Version.pretty) v
+        ) fmt g
   end
 
   module WTO = struct
@@ -1001,7 +1030,10 @@ module UnrollUnnatural  = struct
 
 
   module GDot =
-    MakeDot(struct include Version let start_of (v,_) = v.vertex_start_of end)(G)
+    MakeDot(struct
+      include Version
+      let start_of (v,_) = v.vertex_start_of
+    end)(G)
 
   let output_to_dot out_channel ?number ?wto g =
     GDot.output_to_dot  out_channel ?number ?wto g
@@ -1032,8 +1064,10 @@ module UnrollUnnatural  = struct
           let labels = LabelMap.map (fun v2 ->
               let v2l = Compute.get_wto_index index v2 in
               let d1,d2 = Compute.wto_index_diff nl v2l in
-              let version2 = List.fold_left (fun acc e -> Vertex.Set.remove e acc) version d1 in
-              let version2 = List.fold_left (fun acc e -> Vertex.Set.add e acc) version2 d2 in
+              let version2 = List.fold_left
+                  (fun acc e -> Vertex.Set.remove e acc) version d1 in
+              let version2 = List.fold_left
+                  (fun acc e -> Vertex.Set.add e acc) version2 d2 in
               let version2 = Vertex.Set.remove v2 version2 in
               (v2,version2)
             ) a.labels in
@@ -1049,8 +1083,10 @@ module UnrollUnnatural  = struct
       OldG.iter_succ_e (fun (_,e,v2) ->
           let v2l = Compute.get_wto_index index v2 in
           let d1,d2 = Compute.wto_index_diff nl v2l in
-          let version2 = List.fold_left (fun acc e -> Vertex.Set.remove e acc) version d1 in
-          let version2 = List.fold_left (fun acc e -> Vertex.Set.add e acc) version2 d2 in
+          let version2 = List.fold_left
+              (fun acc e -> Vertex.Set.remove e acc) version d1 in
+          let version2 = List.fold_left
+              (fun acc e -> Vertex.Set.add e acc) version2 d2 in
           let version2 = Vertex.Set.remove v2 version2 in
           let e = convert_edge nl version e in
           G.add_edge_e g' (n',e,(v2,version2));
@@ -1083,7 +1119,6 @@ module UnrollUnnatural  = struct
 
 end
 
-
 (* ---------------------------------------------------------------------- *)
 (* --- Dataflow computation                                           --- *)
 (* ---------------------------------------------------------------------- *)
diff --git a/src/kernel_services/analysis/interpreted_automata.mli b/src/kernel_services/analysis/interpreted_automata.mli
index c04c8b027b5..6a4dc438b2d 100644
--- a/src/kernel_services/analysis/interpreted_automata.mli
+++ b/src/kernel_services/analysis/interpreted_automata.mli
@@ -40,6 +40,17 @@ type info =
   | NoneInfo
   | LoopHead of int (* level *)
 
+(** Control flow informations for outgoing edges, if any. *)
+type 'a control =
+  | Edges (** control flow is only given by vertex edges. *)
+  | Loop of 'a (** start of a Loop stmt, with breaking vertex. *)
+  | If of { cond: exp; vthen: 'a; velse: 'a }
+  (** edges are guaranteed to be two guards `Then` else `Else`
+      with the given condition and successor vertices. *)
+  | Switch of { value: exp; cases: (exp * 'a) list; default: 'a }
+  (** edges are guaranteed to be issued from a `switch()` statement with
+      the given cases and default vertices. *)
+
 (** Vertices are control points. When a vertice is the *start* of a statement,
     this statement is kept in vertex_stmt. Currently, this statement is kept for
     two reasons: to know when callbacks should be called and when annotations
@@ -49,6 +60,7 @@ type vertex = private {
   vertex_key : int;
   mutable vertex_start_of : Cil_types.stmt option;
   mutable vertex_info : info;
+  mutable vertex_control : vertex control;
 }
 
 type assert_kind =
@@ -134,7 +146,7 @@ module WTO : sig
   include Datatype.S with type t = wto
 end
 
-(** Get the interpreted automaton for the given kernel_function without annotations *)
+(** Get the automaton for the given kernel_function without annotations *)
 val get_automaton : Cil_types.kernel_function -> automaton
 (** Get the wto for the automaton of the given kernel_function *)
 val get_wto : Cil_types.kernel_function -> wto
@@ -142,8 +154,8 @@ val get_wto : Cil_types.kernel_function -> wto
     vertices lead outside the wto without passing through the head. *)
 val exit_strategy : graph -> vertex Wto.component -> wto
 (** Output the automaton in dot format *)
-val output_to_dot : out_channel -> ?number:[`Stmt|`Vertex] -> ?wto:wto -> automaton -> unit
-
+val output_to_dot : out_channel -> ?number:[`Stmt|`Vertex] -> ?wto:wto ->
+  automaton -> unit
 
 (** the position of a statement in a wto given as the list of
     component heads *)
@@ -187,7 +199,8 @@ module Compute: sig
       vertices lead outside the wto without passing through the head. *)
   val exit_strategy : graph -> vertex Wto.component -> wto
   (** Output the automaton in dot format *)
-  val output_to_dot : out_channel -> ?number:[`Stmt|`Vertex] -> ?wto:wto -> automaton -> unit
+  val output_to_dot : out_channel -> ?number:[`Stmt|`Vertex] -> ?wto:wto ->
+    automaton -> unit
 
 
   type wto_index_table
@@ -219,9 +232,10 @@ end
 module UnrollUnnatural : sig
   (** Could enter a loop only by head nodes *)
 
-
-  module Vertex_Set : Datatype.S_with_collections with type t = Vertex.Set.t
-  module Version :Datatype.S_with_collections with type t = Vertex.t * Vertex.Set.t
+  module Vertex_Set:
+    Datatype.S_with_collections with type t = Vertex.Set.t
+  module Version:
+    Datatype.S_with_collections with type t = Vertex.t * Vertex.Set.t
 
   module G : sig
     include Graph.Sig.I
-- 
GitLab


From bf98faf2fee332efe92ee208aa74f7724f7e1c11 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Wed, 3 Feb 2021 15:15:13 +0100
Subject: [PATCH 006/141] [Kernel] avoid triggering warning 16
 (unerasable-optional-argument)

---
 src/kernel_internals/typing/alpha.ml    | 18 +++++++-----------
 src/kernel_internals/typing/alpha.mli   |  3 +--
 src/kernel_internals/typing/cabs2cil.ml |  6 +++---
 src/kernel_internals/typing/cfg.ml      |  2 +-
 src/kernel_internals/typing/mergecil.ml | 18 +++++++++---------
 src/kernel_services/ast_queries/cil.ml  |  3 ++-
 6 files changed, 23 insertions(+), 27 deletions(-)

diff --git a/src/kernel_internals/typing/alpha.ml b/src/kernel_internals/typing/alpha.ml
index 727d2c77733..b4d470ca682 100644
--- a/src/kernel_internals/typing/alpha.ml
+++ b/src/kernel_internals/typing/alpha.ml
@@ -161,7 +161,7 @@ let get_suffix_idx rename_mode infix =
  * been used. *)
 
 let alphaWorker      ~(alphaTable: 'a alphaTable)
-    ?undolist
+    ~undolist
     ~(lookupname: string) ~(data:'a)
     (make_new: bool) : string * 'a =
   let prefix, infix = splitNameForAlpha ~lookupname in
@@ -184,9 +184,7 @@ let alphaWorker      ~(alphaTable: 'a alphaTable)
            (fun fmt (s,_) -> Format.fprintf fmt "%s" (Integer.to_string s)))
         suffixes;
       (* Save the undo info *)
-      (match undolist with
-         Some l -> l := AlphaChangedSuffix (rc, !rc) :: !l
-       | _ -> ());
+      Option.iter (fun l -> l := AlphaChangedSuffix (rc, !rc) :: !l) undolist;
       let newname, newmin, (olddata: 'a), newsuffixes =
         match
           List.filter (fun (n, _) -> Integer.equal n curr_idx) suffixes
@@ -211,9 +209,7 @@ let alphaWorker      ~(alphaTable: 'a alphaTable)
             H.add
               infixes newinfix
               (ref (Integer.minus_one, [(Integer.minus_one, data)]));
-            (match undolist with
-             | Some l -> l:= AlphaAddedSuffix (prefix,newsuffix)::!l
-             | None -> ());
+            Option.iter (fun l -> l := AlphaAddedSuffix (prefix, newsuffix) :: !l) undolist;
             base ^ newsuffix, newmin, l, (newmin, data) :: suffixes
           end else lookupname, min, data, suffixes
         |  _ -> (Kernel.fatal "Cil.alphaWorker")
@@ -239,12 +235,12 @@ let alphaWorker      ~(alphaTable: 'a alphaTable)
   newname, olddata
 
 
-let newAlphaName ~alphaTable ?undolist ~lookupname ~data =
-  alphaWorker ~alphaTable ?undolist ~lookupname ~data true
+let newAlphaName ~alphaTable ~undolist ~lookupname ~data =
+  alphaWorker ~alphaTable ~undolist ~lookupname ~data true
 
 (** Just register the name so that we will not use in the future *)
-let registerAlphaName ~alphaTable ?undolist ~lookupname ~data =
-  ignore (alphaWorker ~alphaTable ?undolist ~lookupname ~data false)
+let registerAlphaName ~alphaTable ~lookupname ~data =
+  ignore (alphaWorker ~alphaTable ~undolist:None ~lookupname ~data false)
 
 let getAlphaPrefix ~lookupname = splitNameForAlpha ~lookupname
 
diff --git a/src/kernel_internals/typing/alpha.mli b/src/kernel_internals/typing/alpha.mli
index 9101266f418..ca29d22cc94 100644
--- a/src/kernel_internals/typing/alpha.mli
+++ b/src/kernel_internals/typing/alpha.mli
@@ -73,14 +73,13 @@ type 'a alphaTable =
  * previous occurrence. This function knows about the location implicitly
  * from the [(Cil.CurrentLoc.get ())]. *)
 val newAlphaName: alphaTable: 'a alphaTable ->
-  ?undolist: 'a undoAlphaElement list ref ->
+  undolist: 'a undoAlphaElement list ref option ->
   lookupname:string -> data:'a -> string * 'a
 
 
 (** Register a name with an alpha conversion table to ensure that when later
   * we call newAlphaName we do not end up generating this one *)
 val registerAlphaName: alphaTable: 'a alphaTable ->
-  ?undolist: 'a undoAlphaElement list ref ->
   lookupname:string -> data:'a -> unit
 
 (** Split the name in preparation for newAlphaName. Returns a pair
diff --git a/src/kernel_internals/typing/cabs2cil.ml b/src/kernel_internals/typing/cabs2cil.ml
index 703a2ea9f3b..953c0e68aca 100644
--- a/src/kernel_internals/typing/cabs2cil.ml
+++ b/src/kernel_internals/typing/cabs2cil.ml
@@ -967,7 +967,7 @@ let alphaTable : location Alpha.alphaTable = H.create 307
  * foo" or "union bar" *)
 
 let fresh_global lookupname =
-  fst (Alpha.newAlphaName alphaTable lookupname (CurrentLoc.get ()))
+  fst (Alpha.newAlphaName alphaTable None lookupname (CurrentLoc.get ()))
 
 (* To keep different name scopes different, we add prefixes to names
  * specifying the kind of name: the kind can be one of "" for variables or
@@ -1026,7 +1026,7 @@ let newAlphaName
   in
   let data = CurrentLoc.get () in
   let newname, oldloc =
-    Alpha.newAlphaName ~alphaTable ?undolist ~lookupname ~data
+    Alpha.newAlphaName ~alphaTable ~undolist ~lookupname ~data
   in
   (match undo_scope, undolist with
    | None, None -> ()
@@ -1199,7 +1199,7 @@ let get_temp_name ghost () =
   let data = CurrentLoc.get() in
   let name = if ghost then "g_tmp" else "tmp" in
   let name, _ =
-    Alpha.newAlphaName ~alphaTable ~undolist ~lookupname:name ~data
+    Alpha.newAlphaName ~alphaTable ~undolist:(Some undolist) ~lookupname:name ~data
   in
   let undolist = !undolist in
   Alpha.undoAlphaChanges ~alphaTable ~undolist;
diff --git a/src/kernel_internals/typing/cfg.ml b/src/kernel_internals/typing/cfg.ml
index 3438e59ff51..d9cb57f9193 100644
--- a/src/kernel_internals/typing/cfg.ml
+++ b/src/kernel_internals/typing/cfg.ml
@@ -340,7 +340,7 @@ let computeFileCFG (f : file) =
 let labelAlphaTable : unit Alpha.alphaTable = Hashtbl.create 11
 
 let freshLabel (base:string) =
-  fst (Alpha.newAlphaName labelAlphaTable base ())
+  fst (Alpha.newAlphaName labelAlphaTable None base ())
 
 
 let xform_switch_block ?(keepSwitch=false) b =
diff --git a/src/kernel_internals/typing/mergecil.ml b/src/kernel_internals/typing/mergecil.ml
index 5815b0145f2..9f5080a17cf 100644
--- a/src/kernel_internals/typing/mergecil.ml
+++ b/src/kernel_internals/typing/mergecil.ml
@@ -618,7 +618,7 @@ module EnumMerging =
            (e2.ename <-
               fst
                 (Alpha.newAlphaName
-                   aeAlpha e2.ename Cil_datatype.Location.unknown);
+                   aeAlpha None e2.ename Cil_datatype.Location.unknown);
             Kernel.debug ~dkey:Kernel.dkey_linker
               "new anonymous name %s" e2.ename;
             false))))
@@ -1403,7 +1403,7 @@ let update_compinfo ci =
   in
   Alpha.registerAlphaName sAlpha ci.cname loc;
   let orig_name = if ci.corig_name = "" then ci.cname else ci.corig_name in
-  let n, _ = Alpha.newAlphaName sAlpha orig_name loc in
+  let n, _ = Alpha.newAlphaName sAlpha None orig_name loc in
   let oldnode = PlainMerging.find true node in
   if oldnode == node then begin
     let node =
@@ -1440,7 +1440,7 @@ let rec update_type_repr t =
       | None -> Cil_datatype.Location.unknown
     in
     Alpha.registerAlphaName vtAlpha ti.tname loc;
-    let n,_ = Alpha.newAlphaName vtAlpha ti.torig_name loc in
+    let n,_ = Alpha.newAlphaName vtAlpha None ti.torig_name loc in
     let oldnode = PlainMerging.find true node in
     if oldnode == node then begin
       let node =
@@ -1851,7 +1851,7 @@ let oneFilePass1 (f:file) : unit =
         let orig_name =
           if ei.eorig_name = "" then ei.ename else ei.eorig_name
         in
-        ignore (Alpha.newAlphaName aeAlpha orig_name l);
+        ignore (Alpha.newAlphaName aeAlpha None orig_name l);
         ei.ereferenced <- false;
         ignore
           (EnumMerging.getNode eEq eSyn !currentFidx ei ei
@@ -2670,7 +2670,7 @@ let oneFilePass2 (f: file) =
         (* Maybe it is static. Rename it then *)
         if vi.vstorage = Static then begin
           let newName, _ =
-            Alpha.newAlphaName vtAlpha vi.vname (CurrentLoc.get ())
+            Alpha.newAlphaName vtAlpha None vi.vname (CurrentLoc.get ())
           in
           let formals_decl =
             try Some (Cil.getFormalsDecl vi)
@@ -3026,7 +3026,7 @@ let oneFilePass2 (f: file) =
               if ci.corig_name = "" then ci.cname else ci.corig_name
             in
             let newname, _ =
-              Alpha.newAlphaName sAlpha orig_name (CurrentLoc.get ())
+              Alpha.newAlphaName sAlpha None orig_name (CurrentLoc.get ())
             in
             ci.cname <- newname;
             ci.creferenced <- true;
@@ -3055,7 +3055,7 @@ let oneFilePass2 (f: file) =
               if ei.eorig_name = "" then ei.ename else ei.eorig_name
             in
             let newname, _ =
-              Alpha.newAlphaName eAlpha orig_name (CurrentLoc.get ())
+              Alpha.newAlphaName eAlpha None orig_name (CurrentLoc.get ())
             in
             ei.ename <- newname;
             ei.ereferenced <- true;
@@ -3064,7 +3064,7 @@ let oneFilePass2 (f: file) =
             List.iter
               (fun item ->
                  let newname,_ =
-                   Alpha.newAlphaName vtAlpha item.eiorig_name item.eiloc
+                   Alpha.newAlphaName vtAlpha None item.eiorig_name item.eiloc
                  in
                  item.einame <- newname)
               ei.eitems;
@@ -3108,7 +3108,7 @@ let oneFilePass2 (f: file) =
           with
             None -> (* We must rename it and keep it *)
             let newname, _ =
-              Alpha.newAlphaName vtAlpha ti.torig_name (CurrentLoc.get ())
+              Alpha.newAlphaName vtAlpha None ti.torig_name (CurrentLoc.get ())
             in
             ti.tname <- newname;
             ti.treferenced <- true;
diff --git a/src/kernel_services/ast_queries/cil.ml b/src/kernel_services/ast_queries/cil.ml
index 0edffb0dd95..63e9bbc9a07 100644
--- a/src/kernel_services/ast_queries/cil.ml
+++ b/src/kernel_services/ast_queries/cil.ml
@@ -6219,7 +6219,8 @@ let uniqueVarNames (f: file) : unit =
             let data = CurrentLoc.get () in
             let newname, oldloc =
               Alpha.newAlphaName
-                ~alphaTable:gAlphaTable ~undolist ~lookupname ~data
+                ~alphaTable:gAlphaTable ~undolist:(Some undolist)
+                ~lookupname ~data
             in
             if false && newname <> v.vname then (* Disable this warning *)
               Kernel.warning
-- 
GitLab


From 602c449b3824df9a5e808371cf3e85b8b9025011 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Wed, 3 Feb 2021 22:57:43 +0100
Subject: [PATCH 007/141] [Kernel] change argument order in mkCast/mkCastT to
 avoid warning 16

---
 src/kernel_internals/typing/cabs2cil.ml       | 10 ++++-----
 src/kernel_services/analysis/destructors.ml   |  2 +-
 src/kernel_services/analysis/logic_interp.ml  |  2 +-
 src/kernel_services/ast_data/alarms.ml        |  2 +-
 src/kernel_services/ast_queries/cil.ml        | 22 +++++++++----------
 src/kernel_services/ast_queries/cil.mli       |  9 +++++---
 src/plugins/constant_propagation/api.ml       |  2 +-
 .../src/code_generator/logic_functions.ml     |  2 +-
 .../e-acsl/src/code_generator/rational.ml     |  2 +-
 .../e-acsl/src/code_generator/smart_stmt.ml   |  2 +-
 .../e-acsl/src/code_generator/translate.ml    |  6 ++---
 src/plugins/instantiate/basic_blocks.ml       |  2 +-
 src/plugins/instantiate/string/memset.ml      |  2 +-
 src/plugins/value/utils/value_util.ml         |  2 +-
 src/plugins/variadic/generic.ml               |  4 ++--
 src/plugins/variadic/standard.ml              |  2 +-
 tests/cil/mkBinOp.ml                          |  8 +++----
 17 files changed, 42 insertions(+), 39 deletions(-)

diff --git a/src/kernel_internals/typing/cabs2cil.ml b/src/kernel_internals/typing/cabs2cil.ml
index 953c0e68aca..4c70e7912aa 100644
--- a/src/kernel_internals/typing/cabs2cil.ml
+++ b/src/kernel_internals/typing/cabs2cil.ml
@@ -1368,7 +1368,7 @@ let rec is_boolean_result e =
 (* Like Cil.mkCastT, but it calls typeForInsertedCast *)
 let makeCastT ~(e: exp) ~(oldt: typ) ~(newt: typ) =
   if need_cast oldt newt then
-    Cil.mkCastT e oldt (!typeForInsertedCast e oldt newt)
+    Cil.mkCastT oldt (!typeForInsertedCast e oldt newt) e
   else e
 
 let makeCast ~(e: exp) ~(newt: typ) =
@@ -2652,8 +2652,8 @@ let rec combineTypes (what: combineWhat) (oldt: typ) (t: typ) : typ =
            evaluate them. Check first machine independent comparison. *)
         let checkEqualSize (machdep: bool) =
           let size_t = Cil.theMachine.Cil.typeOfSizeOf in
-          let size_t_oldsz' = Cil.mkCast ~force:false ~e:oldsz' ~newt:size_t in
-          let size_t_sz' = Cil.mkCast ~force:false ~e:sz' ~newt:size_t in
+          let size_t_oldsz' = Cil.mkCast ~force:false ~newt:size_t oldsz' in
+          let size_t_sz' = Cil.mkCast ~force:false ~newt:size_t sz' in
           ExpStructEq.equal
             (constFold machdep size_t_oldsz')
             (constFold machdep size_t_sz')
@@ -2852,7 +2852,7 @@ let rec castTo ?context ?(fromsource=false)
   end else begin
     let nt' = if fromsource then nt' else !typeForInsertedCast e ot' nt' in
     let result = (nt', if theMachine.insertImplicitCasts || fromsource then
-                    Cil.mkCastT ~force:true ~e ~oldt:ot ~newt:nt' else e)
+                    Cil.mkCastT ~force:true ~oldt:ot ~newt:nt' e else e)
     in
     let error s =
       if fromsource then abort_context s else Kernel.fatal ~current:true s
@@ -2872,10 +2872,10 @@ let rec castTo ?context ?(fromsource=false)
       else
         nt,
         Cil.mkCastT
+          ot nt'
           (constFold true
              (new_exp  ~loc:e.eloc
                 (BinOp(Ne,e,Cil.integer ~loc:e.eloc 0,intType))))
-          ot nt'
     | TInt(_,_), TInt(_,_) ->
       (* We used to ignore attributes on integer-integer casts. Not anymore *)
       (* if ikindo = ikindn then (nt, e) else *)
diff --git a/src/kernel_services/analysis/destructors.ml b/src/kernel_services/analysis/destructors.ml
index 99e2cef1c2e..e0e3cd3ea28 100644
--- a/src/kernel_services/analysis/destructors.ml
+++ b/src/kernel_services/analysis/destructors.ml
@@ -32,7 +32,7 @@ let add_destructor (_, l as acc) var =
       let e =
         match Globals.Functions.get_params kf with
         | vi :: _ ->
-          if Cil.need_cast (Cil.typeOf e) vi.vtype then Cil.mkCast e vi.vtype
+          if Cil.need_cast (Cil.typeOf e) vi.vtype then Cil.mkCast vi.vtype e
           else e
         | [] ->
           Kernel.fatal
diff --git a/src/kernel_services/analysis/logic_interp.ml b/src/kernel_services/analysis/logic_interp.ml
index 06a027ae610..98cf45da1bd 100644
--- a/src/kernel_services/analysis/logic_interp.ml
+++ b/src/kernel_services/analysis/logic_interp.ml
@@ -312,7 +312,7 @@ and loc_to_exp ~result {term_node = lnode ; term_type = ltype; term_loc = loc} =
           Logic_utils.is_same_type
           (Logic_typing.type_of_set_elem set) t.term_type ->
     loc_to_exp ~result t
-  | Tnull -> [ Cil.mkCast (Cil.zero ~loc) (TPtr(TVoid [], [])) ]
+  | Tnull -> [ Cil.mkCast (TPtr(TVoid [], [])) (Cil.zero ~loc) ]
 
   (* additional constructs *)
   | Tapp _ | Tlambda _ | Trange _   | Tlet _
diff --git a/src/kernel_services/ast_data/alarms.ml b/src/kernel_services/ast_data/alarms.ml
index eefbda4d0b2..f2edb73c5dc 100644
--- a/src/kernel_services/ast_data/alarms.ml
+++ b/src/kernel_services/ast_data/alarms.ml
@@ -648,7 +648,7 @@ let create_predicate ?(loc=Location.unknown) alarm =
         | TPtr (TFun (ret, None, var, attrs), _), Some args ->
           let ltyps = List.map (fun arg -> "", Cil.typeOf arg, []) args in
           let typ = TFun (ret, Some ltyps, var, attrs) in
-          Cil.mkCast e (TPtr (typ, []))
+          Cil.mkCast (TPtr (typ, [])) e
         | t', _ ->
           Kernel.fatal
             "Trying to emit a Function_pointer alarm over expression %a \
diff --git a/src/kernel_services/ast_queries/cil.ml b/src/kernel_services/ast_queries/cil.ml
index 63e9bbc9a07..16c68942690 100644
--- a/src/kernel_services/ast_queries/cil.ml
+++ b/src/kernel_services/ast_queries/cil.ml
@@ -5757,7 +5757,7 @@ let getCompField cinfo fieldName =
     (fun fi -> fi.fname = fieldName)
     (Option.value ~default:[] cinfo.cfields)
 
-let mkCastT ?(force=false) ~(e: exp) ~(oldt: typ) ~(newt: typ) =
+let mkCastT ?(force=false) ~(oldt: typ) ~(newt: typ) e =
   let loc = e.eloc in
   (* Issue #!1546
      let force = force ||
@@ -5794,8 +5794,8 @@ let mkCastT ?(force=false) ~(e: exp) ~(oldt: typ) ~(newt: typ) =
   end else
     e
 
-let mkCast ?force ~(e: exp) ~(newt: typ) =
-  mkCastT ?force ~e ~oldt:(typeOf e) ~newt
+let mkCast ?force ~(newt: typ) e =
+  mkCastT ?force ~oldt:(typeOf e) ~newt e
 
 (* TODO: unify this with doBinOp in Cabs2cil. *)
 let mkBinOp ~loc op e1 e2 =
@@ -5804,8 +5804,8 @@ let mkBinOp ~loc op e1 e2 =
   let machdep = false in
   let make_expr common_type res_type =
     constFoldBinOp ~loc machdep op
-      (mkCastT e1 t1 common_type)
-      (mkCastT e2 t2 common_type)
+      (mkCastT t1 common_type e1)
+      (mkCastT t2 common_type e2)
       res_type
   in
   let doArithmetic () =
@@ -5826,7 +5826,7 @@ let mkBinOp ~loc op e1 e2 =
   let compare_pointer op ?cast1 ?cast2 e1 e2 =
     let do_cast e = function
       | None -> e
-      | Some t' -> mkCastT ~force:false ~e ~oldt:(typeOf e) ~newt:t'
+      | Some t' -> mkCastT ~force:false ~oldt:(typeOf e) ~newt:t' e
     in
     let e1, e2 =
       if need_cast ~force:true (typeOf e1) (typeOf e2) then
@@ -5857,14 +5857,14 @@ let mkBinOp ~loc op e1 e2 =
       let t1' = integralPromotion t1 in
       let t2' = integralPromotion t2 in
       constFoldBinOp ~loc machdep op
-        (mkCastT e1 t1 t1') (mkCastT e2 t2 t2') t1'
+        (mkCastT t1 t1' e1) (mkCastT t2 t2' e2) t1'
   | (PlusA|MinusA)
     when isArithmeticType t1 && isArithmeticType t2 -> doArithmetic ()
   | (PlusPI|MinusPI|IndexPI) when isPointerType t1 && isIntegralType t2 ->
     constFoldBinOp ~loc machdep op e1 e2 t1
   | MinusPP when isPointerType t1 && isPointerType t2 ->
     (* NB: Same as cabs2cil. Check if this is really what the standard says*)
-    constFoldBinOp ~loc machdep op e1 (mkCastT e2 t2 t1) intType
+    constFoldBinOp ~loc machdep op e1 (mkCastT t2 t1 e2) intType
   | (Eq|Ne|Lt|Le|Ge|Gt)
     when isArithmeticType t1 && isArithmeticType t2 ->
     doArithmeticComp ()
@@ -5894,8 +5894,8 @@ let mkBinOp_safe_ptr_cmp ~loc op e1 e2 =
       if isPointerType t1 && isPointerType t2
          && not (isZero e1) && not (isZero e2)
       then begin
-        mkCast ~force:true ~e:e1 ~newt:theMachine.upointType,
-        mkCast ~force:true ~e:e2 ~newt:theMachine.upointType
+        mkCast ~force:true ~newt:theMachine.upointType e1,
+        mkCast ~force:true ~newt:theMachine.upointType e2
       end else e1, e2
     | _ -> e1, e2
   in
@@ -6013,7 +6013,7 @@ let rec makeZeroInit ~loc (t: typ) : init =
 
   | TPtr _ as t ->
     SingleInit(
-      if theMachine.insertImplicitCasts then mkCast (zero ~loc) t
+      if theMachine.insertImplicitCasts then mkCast t (zero ~loc)
       else zero ~loc)
   | x -> Kernel.fatal ~current:true "Cannot initialize type: %a" !pp_typ_ref x
 
diff --git a/src/kernel_services/ast_queries/cil.mli b/src/kernel_services/ast_queries/cil.mli
index ae92a0c24ed..3e7d875bf35 100644
--- a/src/kernel_services/ast_queries/cil.mli
+++ b/src/kernel_services/ast_queries/cil.mli
@@ -978,11 +978,14 @@ val need_cast: ?force:bool -> typ -> typ -> bool
     type is the same as the old type, then no cast is added, unless [force]
     is [true] (default is [false])
     @modify Fluorine-20130401 add [force] argument
+    @modify Frama-C+dev change order or arguments
 *)
-val mkCastT: ?force:bool -> e:exp -> oldt:typ -> newt:typ -> exp
+val mkCastT: ?force:bool -> oldt:typ -> newt:typ -> exp -> exp
 
-(** Like {!Cil.mkCastT} but uses typeOf to get [oldt] *)
-val mkCast: ?force:bool -> e:exp -> newt:typ -> exp
+(** Like {!Cil.mkCastT} but uses typeOf to get [oldt]
+    @modify Frama-C+dev change order or arguments
+*)
+val mkCast: ?force:bool -> newt:typ -> exp -> exp
 
 (** Equivalent to [stripCasts] for terms. *)
 val stripTermCasts: term -> term
diff --git a/src/plugins/constant_propagation/api.ml b/src/plugins/constant_propagation/api.ml
index ab3fa392e9d..5edc8c84392 100644
--- a/src/plugins/constant_propagation/api.ml
+++ b/src/plugins/constant_propagation/api.ml
@@ -93,7 +93,7 @@ class propagate project fnames ~cast_intro = object(self)
       else
         oldt, newt
     in
-    let exp = Cil.mkCastT e oldt newt in
+    let exp = Cil.mkCastT oldt newt e in
     if cast_intro then
       exp
     else match exp.enode with
diff --git a/src/plugins/e-acsl/src/code_generator/logic_functions.ml b/src/plugins/e-acsl/src/code_generator/logic_functions.ml
index ebac4f3a70f..ebb75d0b2b7 100644
--- a/src/plugins/e-acsl/src/code_generator/logic_functions.ml
+++ b/src/plugins/e-acsl/src/code_generator/logic_functions.ml
@@ -320,7 +320,7 @@ let tapp_to_exp ~loc fname env kf t li params_ty args =
            the exact type of the parameter is only computed when the function is
            generated *)
         List.map2
-          (fun (_, newt, _) e -> Cil.mkCast ~force:false ~newt ~e)
+          (fun (_, newt, _) e -> Cil.mkCast ~force:false ~newt e)
           params
           args
       | _ -> assert false
diff --git a/src/plugins/e-acsl/src/code_generator/rational.ml b/src/plugins/e-acsl/src/code_generator/rational.ml
index 0af7f3b0697..b0af08300c4 100644
--- a/src/plugins/e-acsl/src/code_generator/rational.ml
+++ b/src/plugins/e-acsl/src/code_generator/rational.ml
@@ -170,7 +170,7 @@ let add_cast ~loc ?name e env kf ty =
     let e, env = get_double e env in
     Options.warning
       ~once:true "R to float: double rounding might cause unsoundness";
-    Cil.mkCastT ~force:false ~e ~oldt:Cil.doubleType ~newt:ty, env
+    Cil.mkCastT ~force:false ~oldt:Cil.doubleType ~newt:ty e, env
   | TInt(IULongLong, _) ->
     (* The biggest C integer type we can extract from GMP is ulong *)
     Error.not_yet "R to unsigned long long"
diff --git a/src/plugins/e-acsl/src/code_generator/smart_stmt.ml b/src/plugins/e-acsl/src/code_generator/smart_stmt.ml
index 2c3497df873..c126fe01e0b 100644
--- a/src/plugins/e-acsl/src/code_generator/smart_stmt.ml
+++ b/src/plugins/e-acsl/src/code_generator/smart_stmt.ml
@@ -81,7 +81,7 @@ let do_call ~loc ?result vi args =
           | TPtr _, TArray _, _ -> assert false
           | _, _, _ -> arg
         in
-        let e = Cil.mkCast ~force:false ~newt:ty ~e in
+        let e = Cil.mkCast ~force:false ~newt:ty e in
         make_rev_args (e :: res) args_tl param_ty_tl
       | arg :: args_tl, [] when variadic -> make_rev_args (arg :: res) args_tl []
       | [], [] -> res
diff --git a/src/plugins/e-acsl/src/code_generator/translate.ml b/src/plugins/e-acsl/src/code_generator/translate.ml
index 960cddb412e..5f34444f061 100644
--- a/src/plugins/e-acsl/src/code_generator/translate.ml
+++ b/src/plugins/e-acsl/src/code_generator/translate.ml
@@ -108,7 +108,7 @@ let add_cast ~loc ?name env kf ctx strnum t_opt e =
                only non integral value that can be seen as an integer, while the
                type system infers that it is C-representable (see
                tests/runtime/null.i) *)
-            Cil.mkCast e Cil.longType (* \null *)
+            Cil.mkCast Cil.longType e (* \null *)
           else
             e
         in
@@ -147,7 +147,7 @@ let add_cast ~loc ?name env kf ctx strnum t_opt e =
         Rational.add_cast ~loc ?name e env kf ctx
       else
         (* C type --> another C type *)
-        Cil.mkCastT ~force:false ~e ~oldt:ty ~newt:ctx, env
+        Cil.mkCastT ~force:false ~oldt:ty ~newt:ctx e, env
 
 let constant_to_exp ~loc t c =
   let mk_real s =
@@ -733,7 +733,7 @@ and context_insensitive_term_to_exp kf env t =
     e, env, C_number, name
   | Tblock_length _ -> Env.not_yet env "labeled \\block_length"
   | Tnull ->
-    Cil.mkCast (Cil.zero ~loc) (TPtr(TVoid [], [])), env, C_number, "null"
+    Cil.mkCast (TPtr(TVoid [], [])) (Cil.zero ~loc), env, C_number, "null"
   | TUpdate _ -> Env.not_yet env "functional update"
   | Ttypeof _ -> Env.not_yet env "typeof"
   | Ttype _ -> Env.not_yet env "C type"
diff --git a/src/plugins/instantiate/basic_blocks.ml b/src/plugins/instantiate/basic_blocks.ml
index 87f9f09c879..2511974748e 100644
--- a/src/plugins/instantiate/basic_blocks.ml
+++ b/src/plugins/instantiate/basic_blocks.ml
@@ -45,7 +45,7 @@ let call_function lval vi args =
   let typs = Cil.argsToList typs in
   let gen_arg exp (_, typ, _) =
     if Cil_datatype.Typ.equal vi.vtype typ then exp
-    else Cil.mkCast exp typ
+    else Cil.mkCast typ exp
   in
   let args = List.map2 gen_arg args typs in
   Call(lval, (Cil.evar vi), args, loc)
diff --git a/src/plugins/instantiate/string/memset.ml b/src/plugins/instantiate/string/memset.ml
index 92c47cab940..bb3ce6ca4d8 100644
--- a/src/plugins/instantiate/string/memset.ml
+++ b/src/plugins/instantiate/string/memset.ml
@@ -253,7 +253,7 @@ let retype_args (_t, e) args =
       | Value_of t -> base_char_type t
       | _ -> unexpected "trying to retype arguments on an ill-typed call"
     in
-    let v = Cil.mkCast (Cil.stripCasts v) base_type in
+    let v = Cil.mkCast base_type (Cil.stripCasts v) in
     [ ptr ; v ; n ]
   | Some fv, [ ptr ; v ; n ] ->
     let ptr = Cil.stripCasts ptr in
diff --git a/src/plugins/value/utils/value_util.ml b/src/plugins/value/utils/value_util.ml
index 6a31f40a376..436f349721f 100644
--- a/src/plugins/value/utils/value_util.ml
+++ b/src/plugins/value/utils/value_util.ml
@@ -186,7 +186,7 @@ let zero e =
   | TPtr _ ->
     let ik = Cil.(theMachine.upointKind) in
     let zero = Cil.new_exp ~loc (Const (CInt64 (Integer.zero, ik, None))) in
-    Cil.mkCast ~force:true ~e:zero ~newt:typ
+    Cil.mkCast ~force:true ~newt:typ zero
   | typ -> Value_parameters.fatal ~current:true "non-scalar type %a"
              Printer.pp_typ typ
 
diff --git a/src/plugins/variadic/generic.ml b/src/plugins/variadic/generic.ml
index 586d6041d62..2964a64b648 100644
--- a/src/plugins/variadic/generic.ml
+++ b/src/plugins/variadic/generic.ml
@@ -120,7 +120,7 @@ let translate_va_builtin caller inst =
     (* Build the replacing instruction *)
     let mk_lval_exp lval = Cil.new_exp ~loc (Lval lval)  in
     let mk_mem exp = mk_lval_exp (Cil.mkMem ~addr:exp ~off:NoOffset) in
-    let mk_cast exp typ = Cil.mkCast ~force:false ~e:exp ~newt:typ in
+    let mk_cast exp typ = Cil.mkCast ~force:false ~newt:typ exp in
     let src = mk_mem (mk_cast (mk_mem (mk_lval_exp va_list)) (TPtr (typ,[])))
     in
     [ Set (lval, src, loc);
@@ -173,7 +173,7 @@ let translate_call ~fundec ~ghost block loc mk_call callee pars =
 
   (* Translate the call *)
   let exp_vargs = Cil.mkAddrOrStartOf ~loc (Cil.var vargs) in
-  let new_arg = Cil.mkCast ~force:false ~e:exp_vargs ~newt:(vpar_typ []) in
+  let new_arg = Cil.mkCast ~force:false ~newt:(vpar_typ []) exp_vargs in
   let new_args = s_exps @ [new_arg] @ g_exps in
   let call = mk_call callee new_args in
   instrs @ [call]
diff --git a/src/plugins/variadic/standard.ml b/src/plugins/variadic/standard.ml
index 1db894c1d19..f2191e807b6 100644
--- a/src/plugins/variadic/standard.ml
+++ b/src/plugins/variadic/standard.ml
@@ -134,7 +134,7 @@ let cast_arg i paramtyp exp =
           (i + 1)
           pretty_typ argtyp pretty_typ paramtyp
     end;
-  Cil.mkCast ~force:false ~e:exp ~newt:paramtyp
+  Cil.mkCast ~force:false ~newt:paramtyp exp
 
 
 (* cast a list of args to the tparams list of types and remove unused args *)
diff --git a/tests/cil/mkBinOp.ml b/tests/cil/mkBinOp.ml
index be2c8fefa7e..7ef013171d3 100644
--- a/tests/cil/mkBinOp.ml
+++ b/tests/cil/mkBinOp.ml
@@ -5,19 +5,19 @@ let loc = Location.unknown
 
 let null () =
   let e = zero ~loc in
-  mkCast ~force:true ~e ~newt:voidPtrType
+  mkCast ~force:true ~newt:voidPtrType e
 
 let inull () =
   let e = zero ~loc in
-  mkCast ~force:true ~e ~newt:intPtrType
+  mkCast ~force:true ~newt:intPtrType e
 
 let cone () =
   let e = one ~loc in
-  mkCast ~force:true ~e ~newt:charPtrType
+  mkCast ~force:true ~newt:charPtrType e
 
 let ione () =
   let e = one ~loc in
-  mkCast ~force:true ~e ~newt:intPtrType
+  mkCast ~force:true ~newt:intPtrType e
 
 let test =
   let n = ref 0 in
-- 
GitLab


From 71a1d817c88c9797e4cfa2bf5d4b15e9c711ad49 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Wed, 3 Feb 2021 23:09:10 +0100
Subject: [PATCH 008/141] [Kernel] avoid triggering warning 16
 (unerasable-optional-argument)

---
 src/kernel_services/ast_queries/cil.ml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/kernel_services/ast_queries/cil.ml b/src/kernel_services/ast_queries/cil.ml
index 16c68942690..beabb114ae8 100644
--- a/src/kernel_services/ast_queries/cil.ml
+++ b/src/kernel_services/ast_queries/cil.ml
@@ -4161,7 +4161,7 @@ and process_aligned_attribute (pp:Format.formatter->unit) ~may_reduce attrs defa
 (* Computation of the offset of the field [fi], given the information [sofar]
    computed for the previous fields. [last] indicates that we are considering
    the last field of the struct. Set to [false] by default for unions. *)
-and offsetOfFieldAcc ?(last=false) ~(fi: fieldinfo) ~(sofar: offsetAcc) : offsetAcc =
+and offsetOfFieldAcc ~last ~(fi: fieldinfo) ~(sofar: offsetAcc) : offsetAcc =
   if msvcMode () then offsetOfFieldAcc_MSVC last fi sofar
   else offsetOfFieldAcc_GCC last fi sofar
 
@@ -4372,7 +4372,7 @@ and bitsSizeOf t =
              oaPrevBitPack = None;
            } in
          let fold acc fi =
-           let lastoff = offsetOfFieldAcc ?last:None ~fi ~sofar:startAcc in
+           let lastoff = offsetOfFieldAcc ~last:false ~fi ~sofar:startAcc in
            if lastoff.oaFirstFree > acc
            then lastoff.oaFirstFree
            else acc
-- 
GitLab


From d82d8cf31985752be7a1518b6e1ea2ea083a1e24 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Fri, 5 Feb 2021 19:29:46 +0100
Subject: [PATCH 009/141] [Cil] add mkDoWhile, mkWhile, and refactor loop sattr

---
 src/kernel_services/ast_queries/cil.ml        | 49 ++++++++++++-------
 src/kernel_services/ast_queries/cil.mli       | 38 ++++++++++----
 .../e-acsl/src/code_generator/logic_array.ml  |  1 +
 src/plugins/value/domains/traces_domain.ml    |  2 +-
 4 files changed, 63 insertions(+), 27 deletions(-)

diff --git a/src/kernel_services/ast_queries/cil.ml b/src/kernel_services/ast_queries/cil.ml
index beabb114ae8..b8d33a9ece3 100644
--- a/src/kernel_services/ast_queries/cil.ml
+++ b/src/kernel_services/ast_queries/cil.ml
@@ -3394,9 +3394,9 @@ let evar ?(loc=Location.unknown) vi = new_exp ~loc (Lval (var vi))
 
 let mkString ~loc s = new_exp ~loc (Const(CStr s))
 
-let mkLoop ?(sattr = [Attr("while", [])]) ~(guard:exp) ~(body: stmt list) : stmt list =
+let mkLoop ?sattr ~(guard:exp) ~(body: stmt list) () : stmt list =
   (* Do it like this so that the pretty printer recognizes it *)
-  [ mkStmt ~valid_sid:true ~sattr
+  [ mkStmt ~valid_sid:true ?sattr
       (Loop ([],
              mkBlock
                (mkStmt ~valid_sid:true
@@ -3405,28 +3405,43 @@ let mkLoop ?(sattr = [Attr("while", [])]) ~(guard:exp) ~(body: stmt list) : stmt
                       mkBlock [ mkStmt ~valid_sid:true (Break guard.eloc)], guard.eloc)) ::
                 body), guard.eloc, None, None)) ]
 
-let mkFor ~(start: stmt list) ~(guard: exp) ~(next: stmt list)
-    ~(body: stmt list) : stmt list =
+let mkWhile ?sattr ~(guard:exp) ~(body: stmt list) () : stmt list =
+  let sattr = [Attr("while", [])] @ Option.value ~default:[] sattr in
+  mkLoop ~sattr ~guard ~body ()
+
+let mkDoWhile ?sattr ~(body: stmt list) ~(guard:exp) () : stmt list =
+  let sattr = [Attr("dowhile", [])] @ Option.value ~default:[] sattr in
+  let exit_stmt =
+    mkStmt ~valid_sid:true
+      (If(guard, mkBlock [mkStmt ~valid_sid:true (Break guard.eloc)],
+          mkBlock [], guard.eloc))
+  in
+  let true_exp = one ~loc:guard.eloc in
+  mkLoop ~sattr ~guard:true_exp ~body:(body @ [exit_stmt]) ()
+
+let mkFor ?sattr ~(start: stmt list) ~(guard: exp) ~(next: stmt list)
+    ~(body: stmt list) () : stmt list =
+  let sattr = [Attr("for", [])] @ Option.value ~default:[] sattr in
   (start @
-   (mkLoop ~sattr:[Attr("For",[])] ~guard ~body:(body @ next)))
+   (mkLoop ~sattr ~guard ~body:(body @ next)) ())
 
-let mkForIncr ~(iter : varinfo) ~(first: exp) ~(stopat: exp) ~(incr: exp)
-    ~(body: stmt list) : stmt list =
+let mkForIncr ?sattr ~(iter : varinfo) ~(first: exp) ~(stopat: exp) ~(incr: exp)
+    ~(body: stmt list) () : stmt list =
   (* See what kind of operator we need *)
   let nextop = match unrollTypeSkel iter.vtype with
     | TPtr _ -> PlusPI
     | _ -> PlusA
   in
-  mkFor
-    [ mkStmtOneInstr ~valid_sid:true (Set (var iter, first, first.eloc)) ]
-    (new_exp ~loc:stopat.eloc (BinOp(Lt, evar iter, stopat, intType)))
-    [ mkStmtOneInstr ~valid_sid:true
-        (Set
-           (var iter,
-            (new_exp ~loc:incr.eloc
-               (BinOp(nextop, evar iter, incr, iter.vtype))),
-            incr.eloc))]
-    body
+  mkFor ?sattr
+    ~start:[ mkStmtOneInstr ~valid_sid:true (Set (var iter, first, first.eloc)) ]
+    ~guard:(new_exp ~loc:stopat.eloc (BinOp(Lt, evar iter, stopat, intType)))
+    ~next:[ mkStmtOneInstr ~valid_sid:true
+              (Set
+                 (var iter,
+                  (new_exp ~loc:incr.eloc
+                     (BinOp(nextop, evar iter, incr, iter.vtype))),
+                  incr.eloc))]
+    ~body ()
 
 let block_from_unspecified_sequence us =
   mkBlock (List.map (fun (x,_,_,_,_) ->x) us)
diff --git a/src/kernel_services/ast_queries/cil.mli b/src/kernel_services/ast_queries/cil.mli
index 3e7d875bf35..5bdb0939b7a 100644
--- a/src/kernel_services/ast_queries/cil.mli
+++ b/src/kernel_services/ast_queries/cil.mli
@@ -1119,21 +1119,41 @@ val mkPureExpr:
   ?loc:location -> exp -> stmt
 
 (** Make a loop. Can contain Break or Continue.
-    The kind of loop (While, For, DoWhile) is given by [sattr];
-    it is a While loop if unspecified. *)
-val mkLoop: ?sattr:attributes -> guard:exp -> body:stmt list -> stmt list
+    The kind of loop (while, for, dowhile) is given by [sattr]
+    (none by default). Use {!Cil.mkWhile} for a While loop.
+    @modify Frama-C+dev add unit argument. Default type is no longer While,
+            use {!Cil.mkWhile} instead.
+*)
+val mkLoop: ?sattr:attributes -> guard:exp -> body:stmt list -> unit ->
+  stmt list
 
 (** Make a for loop for(i=start; i<past; i += incr) \{ ... \}. The body
     can contain Break but not Continue. Can be used with i a pointer
     or an integer. Start and done must have the same type but incr
-    must be an integer *)
-val mkForIncr:  iter:varinfo -> first:exp -> stopat:exp -> incr:exp
-  -> body:stmt list -> stmt list
+    must be an integer
+    @modify Frama-C+dev add unit argument
+*)
+val mkForIncr: ?sattr:attributes -> iter:varinfo -> first:exp -> stopat:exp ->
+  incr:exp -> body:stmt list -> unit -> stmt list
 
 (** Make a for loop for(start; guard; next) \{ ... \}. The body can
-    contain Break but not Continue !!! *)
-val mkFor: start:stmt list -> guard:exp -> next: stmt list ->
-  body: stmt list -> stmt list
+    contain Break but not Continue !!!
+    @modify Frama-C+dev add unit argument
+*)
+val mkFor: ?sattr:attributes -> start:stmt list -> guard:exp -> next: stmt list ->
+  body: stmt list -> unit -> stmt list
+
+(** Make a while loop.
+    @since Frama-C+dev
+*)
+val mkWhile: ?sattr:attributes -> guard:exp -> body:stmt list -> unit ->
+  stmt list
+
+(** Make a do ... while loop.
+    @since Frama-C+dev
+*)
+val mkDoWhile: ?sattr:attributes -> body:stmt list -> guard:exp -> unit ->
+  stmt list
 
 (** creates a block with empty attributes from an unspecified sequence. *)
 val block_from_unspecified_sequence:
diff --git a/src/plugins/e-acsl/src/code_generator/logic_array.ml b/src/plugins/e-acsl/src/code_generator/logic_array.ml
index c8371e3b714..688905079da 100644
--- a/src/plugins/e-acsl/src/code_generator/logic_array.ml
+++ b/src/plugins/e-acsl/src/code_generator/logic_array.ml
@@ -214,6 +214,7 @@ let comparison_to_exp ~loc kf env ~name bop array1 array2 =
              ~stopat:len1_exp
              ~incr:(Cil.one ~loc)
              ~body:[ Smart_stmt.block_stmt body_blk ]
+             ()
           )
        )
     )
diff --git a/src/plugins/value/domains/traces_domain.ml b/src/plugins/value/domains/traces_domain.ml
index 6006597e3a1..e655053940e 100644
--- a/src/plugins/value/domains/traces_domain.ml
+++ b/src/plugins/value/domains/traces_domain.ml
@@ -1128,7 +1128,7 @@ let rec stmts_of_cfg cfg current var_map locals return_exp acc =
           let exp = subst_in_exp var_map exp in
           let exp = if bloop then exp else Cil.new_exp ~loc:dummy_loc (UnOp(LNot,exp,Cil.intType)) in
           let body = stmts_of_cfg g nloop var_map locals None [] in
-          let acc = (List.rev (Cil.mkLoop ?sattr:None ~guard:exp ~body)) @ acc in
+          let acc = (List.rev (Cil.mkLoop ~guard:exp ~body ())) @ acc in
           stmts_of_cfg cfg n2 var_map locals return_exp acc
     end
   | l ->
-- 
GitLab


From be5c8c8bce0838d694edb2a2ba573b518da16664 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@cea.fr>
Date: Mon, 8 Feb 2021 09:44:33 +0100
Subject: [PATCH 010/141] Update Changelog for !3055

---
 Changelog | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Changelog b/Changelog
index 4fed392166b..3a7c6a18346 100644
--- a/Changelog
+++ b/Changelog
@@ -17,6 +17,8 @@
 Open Source Release <next-release>
 ##################################
 
+o!  Kernel    [2021-02-08] Avoid triggering warning 16 (unerasable optional
+              argument). Implies changing some labeled functions' signatures.
 o!  Kernel    [2021-01-15] Make cfields list optional. None means undefined,
               empty struct allowed only in specific machdeps.
               removed cdefined field
-- 
GitLab


From d74f27b9ade77e1dc46af3473667f7c8b3b72b35 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Loi=CC=88c=20Correnson?= <loic.correnson@cea.fr>
Date: Fri, 5 Feb 2021 11:03:57 +0100
Subject: [PATCH 011/141] [kernel] tweak ast-infos utilities wrt tp-kind

---
 src/kernel_services/ast_queries/ast_info.ml  | 33 +++++++++++++-------
 src/kernel_services/ast_queries/ast_info.mli | 11 +++++--
 2 files changed, 29 insertions(+), 15 deletions(-)

diff --git a/src/kernel_services/ast_queries/ast_info.ml b/src/kernel_services/ast_queries/ast_info.ml
index b2830548195..3a0b67f0857 100644
--- a/src/kernel_services/ast_queries/ast_info.ml
+++ b/src/kernel_services/ast_queries/ast_info.ml
@@ -108,24 +108,33 @@ let term_lvals_of_term t =
 let behavior_assumes b =
   Logic_const.pands (List.map Logic_const.pred_of_id_pred b.b_assumes)
 
-let behavior_postcondition b k =
+let take_ip ~goal (ip : identified_predicate) =
+  let { tp_kind ; tp_statement } = ip.ip_content in
+  let take_it =
+    if goal
+    then Logic_utils.verify_predicate tp_kind
+    else Logic_utils.use_predicate tp_kind in
+  if take_it then tp_statement else Logic_const.ptrue
+
+let behavior_postcondition ~goal b k =
   let assumes = Logic_const.pold (behavior_assumes b) in
   let postcondition =
     Logic_const.pands
-      (Extlib.filter_map (fun (x,_) -> x = k)
-         (Extlib.($) Logic_const.pred_of_id_pred snd) b.b_post_cond)
-  in
-  Logic_const.pimplies (assumes,postcondition)
+      (List.map
+         (fun (tk,ip) ->
+            if tk = k then take_ip ~goal ip else Logic_const.ptrue)
+         b.b_post_cond)
+  in Logic_const.pimplies (assumes,postcondition)
 
-let behavior_precondition b =
+let behavior_precondition ~goal b =
   let assumes = behavior_assumes b in
-  let requires = Logic_const.pands
-      (List.rev_map Logic_const.pred_of_id_pred b.b_requires)
-  in
-  Logic_const.pimplies (assumes,requires)
+  let requires =
+    Logic_const.pands
+      (List.map (take_ip ~goal) b.b_requires)
+  in Logic_const.pimplies (assumes,requires)
 
-let precondition spec =
-  Logic_const.pands (List.map behavior_precondition spec.spec_behavior)
+let precondition ~goal spec =
+  Logic_const.pands (List.map (behavior_precondition ~goal) spec.spec_behavior)
 
 (** find the behavior named [name] in the list *)
 let get_named_bhv bhv_list name =
diff --git a/src/kernel_services/ast_queries/ast_info.mli b/src/kernel_services/ast_queries/ast_info.mli
index 22cef1f7030..1adcb7480a5 100644
--- a/src/kernel_services/ast_queries/ast_info.mli
+++ b/src/kernel_services/ast_queries/ast_info.mli
@@ -65,20 +65,25 @@ val term_lvals_of_term: term -> term_lval list
 (** @return the list of all the term lvals of a given term.
     Purely syntactic function. *)
 
-val precondition : funspec -> predicate
+val precondition : goal:bool -> funspec -> predicate
 (** Builds the precondition from [b_assumes] and [b_requires] clauses.
+    With [~goal:true], only returns assert and check predicates.
+    With [~goal:false], only returns assert and admit predicates.
     @since Carbon-20101201 *)
 
 val behavior_assumes : funbehavior -> predicate
 (** Builds the conjunction of the [b_assumes].
     @since Nitrogen-20111001 *)
 
-val behavior_precondition : funbehavior -> predicate
+val behavior_precondition : goal:bool -> funbehavior -> predicate
 (** Builds the precondition from [b_assumes] and [b_requires] clauses.
+    For flag [~goal] see [precondition] above.
     @since Carbon-20101201 *)
 
-val behavior_postcondition : funbehavior -> termination_kind -> predicate
+val behavior_postcondition :
+  goal:bool -> funbehavior -> termination_kind -> predicate
 (** Builds the postcondition from [b_assumes] and [b_post_cond] clauses.
+    For flag [~goal] see [precondition] above.
     @modify Boron-20100401 added termination kind as filtering argument. *)
 
 val disjoint_behaviors : funspec -> string list -> predicate
-- 
GitLab


From 3f834571366f6fbe8f1b54c7ea6848475599666e Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Mon, 8 Feb 2021 15:08:16 +0100
Subject: [PATCH 012/141] [doc] update documentation

---
 src/kernel_services/ast_queries/ast_info.mli | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/src/kernel_services/ast_queries/ast_info.mli b/src/kernel_services/ast_queries/ast_info.mli
index 1adcb7480a5..83ac664e106 100644
--- a/src/kernel_services/ast_queries/ast_info.mli
+++ b/src/kernel_services/ast_queries/ast_info.mli
@@ -69,7 +69,9 @@ val precondition : goal:bool -> funspec -> predicate
 (** Builds the precondition from [b_assumes] and [b_requires] clauses.
     With [~goal:true], only returns assert and check predicates.
     With [~goal:false], only returns assert and admit predicates.
-    @since Carbon-20101201 *)
+    @since Carbon-20101201
+    @modify Frama-C+dev introduce [goal] flag
+*)
 
 val behavior_assumes : funbehavior -> predicate
 (** Builds the conjunction of the [b_assumes].
@@ -77,14 +79,18 @@ val behavior_assumes : funbehavior -> predicate
 
 val behavior_precondition : goal:bool -> funbehavior -> predicate
 (** Builds the precondition from [b_assumes] and [b_requires] clauses.
-    For flag [~goal] see [precondition] above.
-    @since Carbon-20101201 *)
+    For flag [~goal] see {!Ast_info.precondition} above.
+    @since Carbon-20101201
+    @modify Frama-C+dev introduce [goal] flag
+*)
 
 val behavior_postcondition :
   goal:bool -> funbehavior -> termination_kind -> predicate
 (** Builds the postcondition from [b_assumes] and [b_post_cond] clauses.
-    For flag [~goal] see [precondition] above.
-    @modify Boron-20100401 added termination kind as filtering argument. *)
+    For flag [~goal] see {Ast_info.precondition} above.
+    @modify Boron-20100401 added termination kind as filtering argument.
+    @modify Frama-C+dev introduce [goal] flag
+*)
 
 val disjoint_behaviors : funspec -> string list -> predicate
 (** Builds the [disjoint_behaviors] property for the behavior names.
-- 
GitLab


From 4f86642fc1fe1884d866d2d6b69ee02c5edb3bc9 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Mon, 8 Feb 2021 15:16:29 +0100
Subject: [PATCH 013/141] [doc] fixes incorrect OCamldoc markup from !2977

---
 src/libraries/utils/json.mli | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/libraries/utils/json.mli b/src/libraries/utils/json.mli
index 80ffaf64513..681da07c72e 100644
--- a/src/libraries/utils/json.mli
+++ b/src/libraries/utils/json.mli
@@ -150,15 +150,15 @@ exception CannotMerge of string
    [merge_object path json_obj] recursively merges the object [json_obj] into the
    JSON file [path]. If [path] does not exist, it is created.
    Merge consists in combining values with the same key, e.g. if [path]
-   already contains an object {"kernel": {"options": ["a"]}}, and
-   [json_obj] is {"kernel": {"options": ["b"]}}, the result will be
-   {"kernel": {"options": ["a", "b"]}}. Cannot merge heterogeneous
+   already contains an object [{"kernel": {"options": ["a"]}}], and
+   [json_obj] is [{"kernel": {"options": ["b"]}}], the result will be
+   [{"kernel": {"options": ["a", "b"]}}]. Cannot merge heterogeneous
    objects, i.e. in the previous example, if "options" were associated
    with a string in [path], trying to merge an array into it would
-   raise [JsonCannotMerge].
+   raise [CannotMerge].
    The merged object is updated in the memory cache.
 
-   @raise [CannotMerge] if the objects have conflicting types for
+   @raise CannotMerge if the objects have conflicting types for
    the same keys, or if the root JSON element is not an object.
    @since Frama-C+dev
 *)
@@ -170,7 +170,7 @@ val merge_object : Filepath.Normalized.t -> Yojson.Basic.t -> unit
    Unlike objects, arrays are merged by simply concatenating their list
    of elements.
 
-   @raise [CannotMerge] if the root JSON element is not an array.
+   @raise CannotMerge if the root JSON element is not an array.
    @since Frama-C+dev
 *)
 val merge_array : Filepath.Normalized.t -> Yojson.Basic.t -> unit
-- 
GitLab


From 147d79f29cabf9367032bffa93e9e61df24000f9 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Mon, 11 Jan 2021 17:33:49 +0100
Subject: [PATCH 014/141] [kernel] refactor code related to JCDB

---
 .../ast_queries/json_compilation_database.ml  | 93 +++++++++++--------
 1 file changed, 52 insertions(+), 41 deletions(-)

diff --git a/src/kernel_services/ast_queries/json_compilation_database.ml b/src/kernel_services/ast_queries/json_compilation_database.ml
index b887b1c358a..7e44d03cd5a 100644
--- a/src/kernel_services/ast_queries/json_compilation_database.ml
+++ b/src/kernel_services/ast_queries/json_compilation_database.ml
@@ -131,37 +131,8 @@ let split_command_args s =
     never need quotes. *)
 let quote_define_argument arg = Format.sprintf "%S" arg
 
-let parse_entry jcdb_dir r =
-  let open Yojson.Basic.Util in
-  let filename = r |> member "file" |> to_string in
-  let dirname  = r |> member "directory" |> to_string_option |> Option.value ~default:jcdb_dir in
-  let dirname =
-    if Filename.is_relative dirname then Filename.concat jcdb_dir dirname
-    else dirname
-  in
-  let dirname = Filepath.normalize dirname in
-  let path = Datatype.Filepath.of_string ~base_name:dirname filename in
-
-  (* get the list of arguments, and a flag indicating if the arguments
-     were given via 'command' or 'arguments'; the latter require quoting *)
-  let string_option_list, requote =
-    (* Note: the JSON Compilation Databse specification specifies that
-       "either arguments or command is required", but does NOT specify what
-       happens when both are present. There is a LLVM commit from 2015
-       (https://reviews.llvm.org/D10365) that mentions:
-       "Arguments and Command can now be in the same compilation database for
-        the same file. Arguments are preferred when both are present."
-       The code below follows this behavior. *)
-    try
-      let args = List.map to_string (r |> member "arguments" |> to_list) in
-      args, true
-    with _ ->
-    try
-      let s = r |> member "command" |> to_string in
-      split_command_args s, false
-    with _ ->
-      Kernel.abort "compilation database: expected 'arguments' or 'command'"
-  in
+(* Filters and normalize useful flags: -I, -D, -U, ... *)
+let filter_useful_flags ~dirname ~requote option_list =
   (* conversion for '-I' flags *)
   let convert_path arg =
     if Filename.is_relative arg then Filename.concat dirname arg
@@ -208,24 +179,30 @@ let parse_entry jcdb_dir r =
             let new_arg = process_prefix prefix arg in
             (None, new_arg :: acc_res)
           end
-      ) (None, []) string_option_list
+      ) (None, []) option_list
   in
-  (* Note: the same file may be compiled several times, under different
-     (and possibly incompatible) configurations, leading to multiple
-     occurrences in the list. Since we cannot infer which of them is the
-     "right" one, we replace them with the latest ones found, warning the
-     user if previous flags were different. *)
-  let flags = List.rev res in
+  List.rev res
+
+(* The same file may be compiled several times, under different
+   (and possibly incompatible) configurations, leading to multiple
+   occurrences in the list. Since we cannot infer which of them is the
+   "right" one, we replace them with the latest ones found, warning the
+   user if previous flags were different. *)
+let update_flags_verbosely path flags =
   try
     let previous_flags = Flags.find path in
     if previous_flags <> flags then
-      let removed_flags = List.filter (fun e -> not (List.mem e previous_flags)) flags in
+      let removed_flags =
+        List.filter (fun e -> not (List.mem e previous_flags)) flags
+      in
       let removed_str =
         if removed_flags = [] then "" else
           Format.asprintf "@ Old flags no longer present: %a"
             (Pretty_utils.pp_list ~sep:" " Format.pp_print_string) removed_flags
       in
-      let added_flags = List.filter (fun e -> not (List.mem e flags)) previous_flags in
+      let added_flags =
+        List.filter (fun e -> not (List.mem e flags)) previous_flags
+      in
       let added_str =
         if added_flags = [] then "" else
           Format.asprintf "@ New flags not previously present: %a"
@@ -239,6 +216,40 @@ let parse_entry jcdb_dir r =
   | Not_found ->
     Flags.add path flags
 
+let parse_compilation_entry jcdb_dir r =
+  let open Yojson.Basic.Util in
+  let filename = r |> member "file" |> to_string in
+  let dirname  = r |> member "directory" |> to_string_option |> Option.value ~default:jcdb_dir in
+  let dirname =
+    if Filename.is_relative dirname then Filename.concat jcdb_dir dirname
+    else dirname
+  in
+  let dirname = Filepath.normalize dirname in
+  let path = Datatype.Filepath.of_string ~base_name:dirname filename in
+
+  (* get the list of arguments, and a flag indicating if the arguments
+     were given via 'command' or 'arguments'; the latter require quoting *)
+  let string_option_list, requote =
+    (* Note: the JSON Compilation Database specification specifies that
+       "either arguments or command is required", but does NOT specify what
+       happens when both are present. There is a LLVM commit from 2015
+       (https://reviews.llvm.org/D10365) that mentions:
+       "Arguments and Command can now be in the same compilation database for
+        the same file. Arguments are preferred when both are present."
+       The code below follows this behavior. *)
+    try
+      let args = List.map to_string (r |> member "arguments" |> to_list) in
+      args, true
+    with _ ->
+    try
+      let s = r |> member "command" |> to_string in
+      split_command_args s, false
+    with _ ->
+      Kernel.abort "compilation database: expected 'arguments' or 'command'"
+  in
+  let flags = filter_useful_flags ~dirname ~requote string_option_list in
+  update_flags_verbosely path flags
+
 let compute_flags_from_file () =
   let database = (Kernel.JsonCompilationDatabase.get () :> string) in
   let jcdb_dir, jcdb_path =
@@ -253,7 +264,7 @@ let compute_flags_from_file () =
       let r_list =
         Yojson.Basic.from_file jcdb_path |> Yojson.Basic.Util.to_list
       in
-      List.iter (parse_entry jcdb_dir) r_list;
+      List.iter (parse_compilation_entry jcdb_dir) r_list;
     with
     | Sys_error msg
     | Yojson.Json_error msg
-- 
GitLab


From 9bd3e5c1c0f4bc5095c05fd871856c18b74a6e86 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Mon, 11 Jan 2021 21:40:02 +0100
Subject: [PATCH 015/141] [Kernel] remove path normalization for -I/-include
 flags

---
 .../ast_queries/json_compilation_database.ml          | 11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)

diff --git a/src/kernel_services/ast_queries/json_compilation_database.ml b/src/kernel_services/ast_queries/json_compilation_database.ml
index 7e44d03cd5a..1c0975165dc 100644
--- a/src/kernel_services/ast_queries/json_compilation_database.ml
+++ b/src/kernel_services/ast_queries/json_compilation_database.ml
@@ -132,18 +132,13 @@ let split_command_args s =
 let quote_define_argument arg = Format.sprintf "%S" arg
 
 (* Filters and normalize useful flags: -I, -D, -U, ... *)
-let filter_useful_flags ~dirname ~requote option_list =
-  (* conversion for '-I' flags *)
-  let convert_path arg =
-    if Filename.is_relative arg then Filename.concat dirname arg
-    else arg
-  in
+let filter_useful_flags ~requote option_list =
   let convert_define arg =
     if requote then quote_define_argument arg else arg
   in
   let process_prefix prefix suffix =
     match prefix with
-    | Path s -> s ^ convert_path suffix
+    | Path s -> s ^ suffix
     | Define s -> s ^ convert_define suffix
     | Undefine s -> s ^ suffix
   in
@@ -247,7 +242,7 @@ let parse_compilation_entry jcdb_dir r =
     with _ ->
       Kernel.abort "compilation database: expected 'arguments' or 'command'"
   in
-  let flags = filter_useful_flags ~dirname ~requote string_option_list in
+  let flags = filter_useful_flags ~requote string_option_list in
   update_flags_verbosely path flags
 
 let compute_flags_from_file () =
-- 
GitLab


From 5659c6fc75b9dec8fb575497f3bef89780eeca70 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Tue, 12 Jan 2021 11:15:56 +0100
Subject: [PATCH 016/141] [Kernel] add dkey to display logic preprocessing
 command

---
 src/kernel_internals/parsing/logic_preprocess.mll  | 5 ++++-
 src/kernel_services/plugin_entry_points/kernel.ml  | 1 +
 src/kernel_services/plugin_entry_points/kernel.mli | 2 ++
 3 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/src/kernel_internals/parsing/logic_preprocess.mll b/src/kernel_internals/parsing/logic_preprocess.mll
index 765d158daf4..1db7292b1f2 100644
--- a/src/kernel_internals/parsing/logic_preprocess.mll
+++ b/src/kernel_internals/parsing/logic_preprocess.mll
@@ -171,7 +171,10 @@
       Buffer.output_buffer ppfile preprocess_buffer;
       close_out ppfile;
       let cppname = Extlib.temp_file_cleanup_at_exit ~debug "cppannot" suffix in
-      let res = Sys.command (cpp ppname cppname) in
+      let pp_cmd = cpp ppname cppname in
+      Kernel.feedback ~dkey:Kernel.dkey_pp_logic
+        "logic preprocessing with \"%s\"" pp_cmd;
+      let res = Sys.command pp_cmd in
       let result_file =
         if res <> 0 then begin
           abort_preprocess "Preprocessor call exited with an error";
diff --git a/src/kernel_services/plugin_entry_points/kernel.ml b/src/kernel_services/plugin_entry_points/kernel.ml
index 5c30b36f614..d75e4af4d4f 100644
--- a/src/kernel_services/plugin_entry_points/kernel.ml
+++ b/src/kernel_services/plugin_entry_points/kernel.ml
@@ -86,6 +86,7 @@ let dkey_rmtmps = register_category "parser:rmtmps"
 let dkey_referenced = register_category "parser:referenced"
 
 let dkey_pp = register_category "pp"
+let dkey_pp_logic = register_category "pp:logic"
 let dkey_compilation_db = register_category "pp:compilation-db"
 
 let dkey_print_bitfields = register_category "printer:bitfields"
diff --git a/src/kernel_services/plugin_entry_points/kernel.mli b/src/kernel_services/plugin_entry_points/kernel.mli
index 7bc32e34f8d..172ab5ef8db 100644
--- a/src/kernel_services/plugin_entry_points/kernel.mli
+++ b/src/kernel_services/plugin_entry_points/kernel.mli
@@ -83,6 +83,8 @@ val dkey_parser: category
 
 val dkey_pp: category
 
+val dkey_pp_logic: category
+
 val dkey_print_attrs: category
 
 val dkey_print_bitfields: category
-- 
GitLab


From 03ce758da9a7b00264c6ade13f449dbbd2386939 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Tue, 12 Jan 2021 11:28:09 +0100
Subject: [PATCH 017/141] [Kernel] avoid inserting newlines in messages with
 long command lines

---
 src/kernel_services/ast_queries/file.ml | 33 ++++++++++++++-----------
 1 file changed, 19 insertions(+), 14 deletions(-)

diff --git a/src/kernel_services/ast_queries/file.ml b/src/kernel_services/ast_queries/file.ml
index bf305b358d7..41907d8fed0 100644
--- a/src/kernel_services/ast_queries/file.ml
+++ b/src/kernel_services/ast_queries/file.ml
@@ -433,6 +433,15 @@ let replace_in_cpp_cmd cmdl supp_args in_file out_file =
   with Not_found ->
     Format.sprintf "%s %s %s -o %s" cmdl supp_args in_file out_file
 
+(* Note: using Pretty_utils.pp_list without forcing '~pre' and '~suf' to
+   be empty strings can lead to issues when the commands are too long and
+   Format's pretty-printer decides to insert newlines.
+   This concatenation function serves as a reminder to avoid using them.
+*)
+let concat_strs ?(pre="") ?(sep=" ") l =
+  if l = [] then ""
+  else pre ^ (String.concat sep l)
+
 let build_cpp_cmd = function
   | NoCPP _ | External _ -> None
   | NeedCPP (f, cmdl, is_gnu_like) ->
@@ -490,15 +499,13 @@ let build_cpp_cmd = function
     if is_gnu_like = Unknown && not (Kernel.CppCommand.is_set ())
        && unsupported_cpp_arch_args <> [] then
       Kernel.warning ~once:true
-        "your preprocessor is not known to handle option(s) `%a', \
+        "your preprocessor is not known to handle option(s) `%s', \
          considered necessary for machdep `%s'. To ensure compatibility \
          between your preprocessor and the machdep, consider using \
          -cpp-command with the appropriate flags. \
-         Your preprocessor is known to support these flags: %a"
-        (Pretty_utils.pp_list ~sep:" " Format.pp_print_string)
-        unsupported_cpp_arch_args (Kernel.Machdep.get ())
-        (Pretty_utils.pp_list ~sep:" " Format.pp_print_string)
-        Fc_config.preprocessor_supported_arch_options;
+         Your preprocessor is known to support these flags: %s"
+        (concat_strs unsupported_cpp_arch_args) (Kernel.Machdep.get ())
+        (concat_strs Fc_config.preprocessor_supported_arch_options);
     let extra_args =
       if Kernel.ReadAnnot.get () then
         if Kernel.PreprocessAnnot.is_set () then
@@ -510,12 +517,11 @@ let build_cpp_cmd = function
           opt @ extra_args
       else extra_args
     in
-    let pp_str = Format.pp_print_string in
     let string_of_supp_args extra includes defines =
-      Format.asprintf "%a%a%a"
-        (Pretty_utils.pp_list ~pre:" -I" ~sep:" -I" ~empty:"" pp_str) includes
-        (Pretty_utils.pp_list ~pre:" -D" ~sep:" -D" ~empty:"" pp_str) defines
-        (Pretty_utils.pp_list ~pre:" " ~sep:" " ~empty:"" pp_str) extra
+      Format.asprintf "%s%s%s"
+        (concat_strs ~pre:" -I" ~sep:" -I" includes)
+        (concat_strs ~pre:" -D" ~sep:" -D" defines)
+        (concat_strs ~pre:" " ~sep:" " extra)
     in
     let supp_args =
       string_of_supp_args
@@ -582,9 +588,8 @@ let parse_cabs cpp_command_no_output = function
                    preprocessor."; true))
       then begin
         let pp_annot_supp_args =
-          Format.asprintf "-nostdinc %a"
-            (Pretty_utils.pp_list ~sep:" " Format.pp_print_string)
-            supported_cpp_arch_args
+          Format.asprintf "-nostdinc %s"
+            (concat_strs supported_cpp_arch_args)
         in
         let ppf' =
           try Logic_preprocess.file ".c"
-- 
GitLab


From 1bc2cd3daa65ff06d35a6054a29226073b0fefa9 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Tue, 12 Jan 2021 11:28:40 +0100
Subject: [PATCH 018/141] [Kernel] remove extraneous space from preprocessing
 command

---
 src/kernel_services/ast_queries/file.ml      | 2 +-
 tests/syntax/oracle/cpp-command.0.res.oracle | 2 +-
 tests/syntax/oracle/cpp-command.1.res.oracle | 2 +-
 tests/syntax/oracle/cpp-command.4.res.oracle | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/kernel_services/ast_queries/file.ml b/src/kernel_services/ast_queries/file.ml
index 41907d8fed0..8bdc821d652 100644
--- a/src/kernel_services/ast_queries/file.ml
+++ b/src/kernel_services/ast_queries/file.ml
@@ -519,7 +519,7 @@ let build_cpp_cmd = function
     in
     let string_of_supp_args extra includes defines =
       Format.asprintf "%s%s%s"
-        (concat_strs ~pre:" -I" ~sep:" -I" includes)
+        (concat_strs ~pre:"-I" ~sep:" -I" includes)
         (concat_strs ~pre:" -D" ~sep:" -D" defines)
         (concat_strs ~pre:" " ~sep:" " extra)
     in
diff --git a/tests/syntax/oracle/cpp-command.0.res.oracle b/tests/syntax/oracle/cpp-command.0.res.oracle
index 52bfebffa2b..f910fe5ece8 100644
--- a/tests/syntax/oracle/cpp-command.0.res.oracle
+++ b/tests/syntax/oracle/cpp-command.0.res.oracle
@@ -1,2 +1,2 @@
 [kernel] Parsing tests/syntax/cpp-command.c (with preprocessing)
-[cpp-command.c cpp-command.c cpp-command.c cpp-command.c] [TMPDIR/FILE.i TMPDIR/FILE.i TMPDIR/FILE.i TMPDIR/FILE.i] [ -I./share/libc -D__FRAMAC__ -D__FC_MACHDEP_X86_32 -dD -nostdinc]
+[cpp-command.c cpp-command.c cpp-command.c cpp-command.c] [TMPDIR/FILE.i TMPDIR/FILE.i TMPDIR/FILE.i TMPDIR/FILE.i] [-I./share/libc -D__FRAMAC__ -D__FC_MACHDEP_X86_32 -dD -nostdinc]
diff --git a/tests/syntax/oracle/cpp-command.1.res.oracle b/tests/syntax/oracle/cpp-command.1.res.oracle
index 9fa845eca34..4d07269a88d 100644
--- a/tests/syntax/oracle/cpp-command.1.res.oracle
+++ b/tests/syntax/oracle/cpp-command.1.res.oracle
@@ -1,2 +1,2 @@
 [kernel] Parsing tests/syntax/cpp-command.c (with preprocessing)
-%1 = cpp-command.c %2 = TMPDIR/FILE.i %args =  -I./share/libc -D__FRAMAC__ -D__FC_MACHDEP_X86_32 -dD -nostdinc
+%1 = cpp-command.c %2 = TMPDIR/FILE.i %args = -I./share/libc -D__FRAMAC__ -D__FC_MACHDEP_X86_32 -dD -nostdinc
diff --git a/tests/syntax/oracle/cpp-command.4.res.oracle b/tests/syntax/oracle/cpp-command.4.res.oracle
index 2008e719f9d..2f8d187fc5e 100644
--- a/tests/syntax/oracle/cpp-command.4.res.oracle
+++ b/tests/syntax/oracle/cpp-command.4.res.oracle
@@ -1,2 +1,2 @@
 [kernel] Preprocessing command:
-  gcc -E -C -I.  -I./share/libc -D__FRAMAC__ -D__FC_MACHDEP_X86_32 -dD -nostdinc 'tests/syntax/cpp-command.c' -o 'TMPDIR/FILE.i'
+  gcc -E -C -I. -I./share/libc -D__FRAMAC__ -D__FC_MACHDEP_X86_32 -dD -nostdinc 'tests/syntax/cpp-command.c' -o 'TMPDIR/FILE.i'
-- 
GitLab


From 8523b080b968f98f7469b578e72dc367fe91432c Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Tue, 12 Jan 2021 12:14:21 +0100
Subject: [PATCH 019/141] [kernel] minor refactoring

---
 src/kernel_services/ast_queries/file.ml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/kernel_services/ast_queries/file.ml b/src/kernel_services/ast_queries/file.ml
index 8bdc821d652..8ba8366645a 100644
--- a/src/kernel_services/ast_queries/file.ml
+++ b/src/kernel_services/ast_queries/file.ml
@@ -139,7 +139,7 @@ let from_filename ?cpp f =
         | Some cpp -> cpp, cpp_opt_kind ()
       in
       let flags = if extra_flags <> "" then [extra_flags] else jcdb_flags in
-      (if flags = [] then cpp else cpp ^ " " ^ String.concat " " flags), gnu
+      String.concat " " (cpp :: flags), gnu
   in
   if Filename.check_suffix (f:>string) ".i" then begin
     NoCPP f
-- 
GitLab


From 1a79f5e3c617068c409b6d9a6ef57c061a38fb63 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Tue, 12 Jan 2021 16:28:06 +0100
Subject: [PATCH 020/141] [Kernel] more refactoring of File

---
 src/kernel_services/ast_queries/file.ml  | 36 +++++++++++-------------
 src/kernel_services/ast_queries/file.mli |  6 ++--
 2 files changed, 20 insertions(+), 22 deletions(-)

diff --git a/src/kernel_services/ast_queries/file.ml b/src/kernel_services/ast_queries/file.ml
index 8ba8366645a..1ed6443cfd7 100644
--- a/src/kernel_services/ast_queries/file.ml
+++ b/src/kernel_services/ast_queries/file.ml
@@ -99,6 +99,14 @@ let cpp_opt_kind () =
     if Kernel.CppGnuLike.get () then Gnu else Not_gnu
   else Unknown
 
+let is_cpp_gnu_like () =
+  let open Fc_config in
+  let cpp_cmd = Kernel.CppCommand.get () in
+  match cpp_cmd = "", using_default_cpp, preprocessor_is_gnu_like with
+  | true, true, true -> Gnu
+  | true, true, false -> Not_gnu
+  | _, _, _ -> cpp_opt_kind ()
+
 (* the preprocessor command is:
    If the program has an explicit argument -cpp-command "XX -Y"
    (quotes are required by the shell)
@@ -106,22 +114,12 @@ let cpp_opt_kind () =
    else use the command in [Fc_config.preprocessor].*)
 let get_preprocessor_command () =
   let cmdline = Kernel.CppCommand.get() in
-  if cmdline <> "" then begin
-    (cmdline, cpp_opt_kind ())
-  end else begin
-    let gnu =
-      if Fc_config.using_default_cpp then
-        if Fc_config.preprocessor_is_gnu_like then Gnu else Not_gnu
-      else cpp_opt_kind ()
-    in
-    Fc_config.preprocessor, gnu
-  end
+  if cmdline <> "" then cmdline else Fc_config.preprocessor
 
 let from_filename ?cpp f =
-  let cpp, is_gnu_like =
+  let cpp =
     let cmdline = Kernel.CppCommand.get() in
-    if cmdline <> "" then
-      cmdline, cpp_opt_kind ()
+    if cmdline <> "" then cmdline
     else
       let extra_flags =
         try Kernel.CppExtraArgsPerFile.find f
@@ -133,13 +131,11 @@ let from_filename ?cpp f =
           "found flags for file %a@ both in -cpp-extra-args-per-file and@ \
            in the json compilation database;@ the latter will be ignored"
           Filepath.Normalized.pretty f;
-      let cpp, gnu =
-        match cpp with
-        | None -> get_preprocessor_command ()
-        | Some cpp -> cpp, cpp_opt_kind ()
+      let cpp =
+        if cpp = None then get_preprocessor_command () else Option.get cpp
       in
       let flags = if extra_flags <> "" then [extra_flags] else jcdb_flags in
-      String.concat " " (cpp :: flags), gnu
+      String.concat " " (cpp :: flags)
   in
   if Filename.check_suffix (f:>string) ".i" then begin
     NoCPP f
@@ -158,7 +154,7 @@ let from_filename ?cpp f =
         Kernel.warning ~once:true
           "Default pre-processor does not keep comments. Any ACSL annotation \
            on non-pre-processed file will be discarded.";
-      NeedCPP (f, cpp, is_gnu_like)
+      NeedCPP (f, cpp, is_cpp_gnu_like ())
     end else
       Kernel.abort "No working pre-processor found. You can only analyze \
                     pre-processed .i files."
@@ -645,7 +641,7 @@ let to_cil_cabs cpp_cmds_and_args f =
 let () =
   let handle f =
     let preprocess =
-      replace_in_cpp_cmd (fst (get_preprocessor_command ())) "-nostdinc"
+      replace_in_cpp_cmd (get_preprocessor_command ()) "-nostdinc"
     in
     let ppf =
       try Logic_preprocess.file ".c" preprocess f
diff --git a/src/kernel_services/ast_queries/file.mli b/src/kernel_services/ast_queries/file.mli
index 0498ef145a6..979ee3d7721 100644
--- a/src/kernel_services/ast_queries/file.mli
+++ b/src/kernel_services/ast_queries/file.mli
@@ -142,8 +142,10 @@ val get_suffixes: unit -> string list
 val get_name: t -> string
 (** File name (not normalized). *)
 
-val get_preprocessor_command: unit -> string * cpp_opt_kind
-(** Return the preprocessor command to use. *)
+val get_preprocessor_command: unit -> string
+(** Return the preprocessor command to use.
+    @modify Frama-C+dev return type now contains only the command
+*)
 
 val pre_register: t -> unit
 (** Register some file as source file before command-line files *)
-- 
GitLab


From fdc4e2c37def26875d2ce2d08be363854cef542d Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Tue, 12 Jan 2021 16:32:39 +0100
Subject: [PATCH 021/141] [kernel] refactoring: rename variable

---
 src/kernel_services/ast_queries/file.ml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/kernel_services/ast_queries/file.ml b/src/kernel_services/ast_queries/file.ml
index 1ed6443cfd7..fc071506d47 100644
--- a/src/kernel_services/ast_queries/file.ml
+++ b/src/kernel_services/ast_queries/file.ml
@@ -121,12 +121,12 @@ let from_filename ?cpp f =
     let cmdline = Kernel.CppCommand.get() in
     if cmdline <> "" then cmdline
     else
-      let extra_flags =
+      let extra_by_file =
         try Kernel.CppExtraArgsPerFile.find f
         with Not_found -> ""
       in
       let jcdb_flags = Json_compilation_database.get_flags f in
-      if extra_flags <> "" && jcdb_flags <> [] then
+      if extra_by_file <> "" && jcdb_flags <> [] then
         Kernel.warning ~wkey:Kernel.wkey_jcdb
           "found flags for file %a@ both in -cpp-extra-args-per-file and@ \
            in the json compilation database;@ the latter will be ignored"
@@ -134,7 +134,7 @@ let from_filename ?cpp f =
       let cpp =
         if cpp = None then get_preprocessor_command () else Option.get cpp
       in
-      let flags = if extra_flags <> "" then [extra_flags] else jcdb_flags in
+      let flags = if extra_by_file <> "" then [extra_by_file] else jcdb_flags in
       String.concat " " (cpp :: flags)
   in
   if Filename.check_suffix (f:>string) ".i" then begin
-- 
GitLab


From 91baf7bdceae8cbd1078090c37f043282976e1c1 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Tue, 12 Jan 2021 16:50:17 +0100
Subject: [PATCH 022/141] [kernel] more File refactoring

---
 src/kernel_services/ast_queries/file.ml | 28 ++++++++++++-------------
 1 file changed, 13 insertions(+), 15 deletions(-)

diff --git a/src/kernel_services/ast_queries/file.ml b/src/kernel_services/ast_queries/file.ml
index fc071506d47..402bf50a070 100644
--- a/src/kernel_services/ast_queries/file.ml
+++ b/src/kernel_services/ast_queries/file.ml
@@ -479,10 +479,6 @@ let build_cpp_cmd = function
       then [machdep_macro (Kernel.Machdep.get ())]
       else []
     in
-    let extra_args =
-      if Kernel.FramaCStdLib.get() then add_if_gnu "-nostdinc"
-      else []
-    in
     let define_args = "__FRAMAC__" :: define_args in
     (* Hypothesis: the preprocessor does support the arch-related
        options tested when 'configure' was run. *)
@@ -502,17 +498,19 @@ let build_cpp_cmd = function
          Your preprocessor is known to support these flags: %s"
         (concat_strs unsupported_cpp_arch_args) (Kernel.Machdep.get ())
         (concat_strs Fc_config.preprocessor_supported_arch_options);
-    let extra_args =
-      if Kernel.ReadAnnot.get () then
-        if Kernel.PreprocessAnnot.is_set () then
-          if Kernel.PreprocessAnnot.get () then
-            "-dD" :: extra_args
-          else extra_args
-        else
-          let opt = add_if_gnu "-dD" in
-          opt @ extra_args
-      else extra_args
+    let nostdinc_arg =
+      if Kernel.FramaCStdLib.get() then add_if_gnu "-nostdinc"
+      else []
+    in
+    let output_defines_arg =
+      let open Kernel in
+      match ReadAnnot.get (), PreprocessAnnot.is_set (), PreprocessAnnot.get () with
+      | true, true, true -> ["-dD"] (* keep '#defines' in preprocessed output *)
+      | true, true, false -> []
+      | true, false, _ -> add_if_gnu "-dD"
+      | _, _, _ -> []
     in
+    let gnu_implicit_args = output_defines_arg @ nostdinc_arg in
     let string_of_supp_args extra includes defines =
       Format.asprintf "%s%s%s"
         (concat_strs ~pre:"-I" ~sep:" -I" includes)
@@ -521,7 +519,7 @@ let build_cpp_cmd = function
     in
     let supp_args =
       string_of_supp_args
-        (Kernel.CppExtraArgs.get () @ extra_args @ supported_cpp_arch_args)
+        (Kernel.CppExtraArgs.get () @ gnu_implicit_args @ supported_cpp_arch_args)
         include_args define_args
     in
     let cpp_command = replace_in_cpp_cmd cmdl supp_args (f:>string) (ppf:>string) in
-- 
GitLab


From 51c067ea0ccccae3bd0323749af3c8a0baa2659f Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Tue, 12 Jan 2021 17:06:16 +0100
Subject: [PATCH 023/141] [Kernel] separate preprocessing command and extra
 args; fixes #@1003

---
 src/kernel_services/ast_queries/file.ml       | 72 +++++++++----------
 src/kernel_services/ast_queries/file.mli      | 12 ++--
 tests/jcdb/jcdb.c                             |  1 +
 .../logic-pp-include/compile_commands.json    | 11 +++
 tests/jcdb/logic-pp-include/no-stdio.c        |  5 ++
 tests/jcdb/oracle/logic-pp-include.err        |  0
 tests/jcdb/oracle/logic-pp-include.res        | 15 ++++
 7 files changed, 75 insertions(+), 41 deletions(-)
 create mode 100644 tests/jcdb/logic-pp-include/compile_commands.json
 create mode 100644 tests/jcdb/logic-pp-include/no-stdio.c
 create mode 100644 tests/jcdb/oracle/logic-pp-include.err
 create mode 100644 tests/jcdb/oracle/logic-pp-include.res

diff --git a/src/kernel_services/ast_queries/file.ml b/src/kernel_services/ast_queries/file.ml
index 402bf50a070..77f6394a474 100644
--- a/src/kernel_services/ast_queries/file.ml
+++ b/src/kernel_services/ast_queries/file.ml
@@ -36,9 +36,11 @@ let pretty_cpp_opt_kind fmt =
 type file =
   | NeedCPP of
       Filepath.Normalized.t (* filename of the [.c] to preprocess *)
-      * string (* Preprocessor command.
-                  [filename.c -o tempfilname.i] will be appended at the
-                    end.*)
+      * string (* Preprocessing command, as given by -cpp-command, or
+                  the default value, but without extra arguments *)
+      * string list (* Extra arguments to be given to the preprocessing
+                       command, as given by -cpp-extra-args-per-file or
+                       a JSON Compilation Database. *)
       * cpp_opt_kind
   | NoCPP of Filepath.Normalized.t (** filename of a preprocessed [.c] *)
   | External of Filepath.Normalized.t * string
@@ -51,7 +53,7 @@ module D =
       type t = file
       let name = "File"
       let reprs =
-        [ NeedCPP(Filepath.Normalized.unknown, "", Unknown);
+        [ NeedCPP(Filepath.Normalized.unknown, "", [], Unknown);
           NoCPP Filepath.Normalized.unknown;
           External(Filepath.Normalized.unknown, "")
         ]
@@ -65,11 +67,12 @@ module D =
           | External (f,p) ->
             Format.fprintf fmt "@[File.External (%a,%S)@]"
               Filepath.Normalized.pretty f p
-          | NeedCPP (f,cmd,kind) ->
+          | NeedCPP (f,cmd,extra,kind) ->
             Format.fprintf
-              fmt "@[File.NeedCPP (%a,%S,%a)@]"
+              fmt "@[File.NeedCPP (%a,%S,%S,%a)@]"
               Filepath.Normalized.pretty f
               cmd
+              (String.concat " " extra)
               pretty_cpp_opt_kind kind
         in
         Type.par p_caller Type.Call fmt pp
@@ -85,7 +88,7 @@ let get_suffixes () =
     [ ".c"; ".i"; ".h" ]
 
 let get_name s =
-  let file = match s with  NeedCPP (s,_,_) | NoCPP s | External (s,_) -> s in
+  let file = match s with  NeedCPP (s,_,_,_) | NoCPP s | External (s,_) -> s in
   Filepath.Normalized.to_pretty_string file
 
 (* ************************************************************************* *)
@@ -118,24 +121,23 @@ let get_preprocessor_command () =
 
 let from_filename ?cpp f =
   let cpp =
-    let cmdline = Kernel.CppCommand.get() in
-    if cmdline <> "" then cmdline
-    else
-      let extra_by_file =
-        try Kernel.CppExtraArgsPerFile.find f
-        with Not_found -> ""
-      in
-      let jcdb_flags = Json_compilation_database.get_flags f in
-      if extra_by_file <> "" && jcdb_flags <> [] then
-        Kernel.warning ~wkey:Kernel.wkey_jcdb
-          "found flags for file %a@ both in -cpp-extra-args-per-file and@ \
-           in the json compilation database;@ the latter will be ignored"
-          Filepath.Normalized.pretty f;
-      let cpp =
-        if cpp = None then get_preprocessor_command () else Option.get cpp
-      in
-      let flags = if extra_by_file <> "" then [extra_by_file] else jcdb_flags in
-      String.concat " " (cpp :: flags)
+    let cpp_command = Kernel.CppCommand.get() in
+    if cpp_command <> "" then cpp_command
+    else if cpp = None then get_preprocessor_command ()
+    else Option.get cpp
+  in
+  let extra =
+    let extra_by_file =
+      try Kernel.CppExtraArgsPerFile.find f
+      with Not_found -> ""
+    in
+    let jcdb_flags = Json_compilation_database.get_flags f in
+    if extra_by_file <> "" && jcdb_flags <> [] then
+      Kernel.warning ~wkey:Kernel.wkey_jcdb
+        "found flags for file %a@ both in -cpp-extra-args-per-file and@ \
+         in the json compilation database;@ the latter will be ignored"
+        Filepath.Normalized.pretty f;
+    if extra_by_file <> "" then [extra_by_file] else jcdb_flags
   in
   if Filename.check_suffix (f:>string) ".i" then begin
     NoCPP f
@@ -154,7 +156,7 @@ let from_filename ?cpp f =
         Kernel.warning ~once:true
           "Default pre-processor does not keep comments. Any ACSL annotation \
            on non-pre-processed file will be discarded.";
-      NeedCPP (f, cpp, is_cpp_gnu_like ())
+      NeedCPP (f, cpp, extra, is_cpp_gnu_like ())
     end else
       Kernel.abort "No working pre-processor found. You can only analyze \
                     pre-processed .i files."
@@ -440,7 +442,7 @@ let concat_strs ?(pre="") ?(sep=" ") l =
 
 let build_cpp_cmd = function
   | NoCPP _ | External _ -> None
-  | NeedCPP (f, cmdl, is_gnu_like) ->
+  | NeedCPP (f, cmdl, extra, is_gnu_like) ->
     if not (Sys.file_exists (f :> string)) then
       Kernel.abort "source file %a does not exist"
         Filepath.Normalized.pretty f;
@@ -519,16 +521,16 @@ let build_cpp_cmd = function
     in
     let supp_args =
       string_of_supp_args
-        (Kernel.CppExtraArgs.get () @ gnu_implicit_args @ supported_cpp_arch_args)
+        (Kernel.CppExtraArgs.get () @ gnu_implicit_args @ supported_cpp_arch_args @ extra)
         include_args define_args
     in
     let cpp_command = replace_in_cpp_cmd cmdl supp_args (f:>string) (ppf:>string) in
     Kernel.feedback ~dkey:Kernel.dkey_pp
       "@{<i>preprocessing@} with \"%s\""
       cpp_command;
-    Some (cpp_command, ppf, supported_cpp_arch_args)
+    Some (cpp_command, ppf, supp_args)
 
-let parse_cabs cpp_command_no_output = function
+let parse_cabs cpp_command = function
   | NoCPP f ->
     if not (Sys.file_exists (f:>string)) then
       Kernel.abort "preprocessed file %a does not exist"
@@ -536,8 +538,8 @@ let parse_cabs cpp_command_no_output = function
     Kernel.feedback "Parsing %a (no preprocessing)"
       Datatype.Filepath.pretty f;
     Frontc.parse f ()
-  | NeedCPP (f, cmdl, is_gnu_like) ->
-    let cpp_command, ppf, supported_cpp_arch_args = Option.get cpp_command_no_output in
+  | NeedCPP (f, cmdl, _extra, is_gnu_like) ->
+    let cpp_command, ppf, supp_args = Option.get cpp_command in
     Kernel.feedback "Parsing %a (with preprocessing)"
       Datatype.Filepath.pretty f;
     if Sys.command cpp_command <> 0 then begin
@@ -581,13 +583,9 @@ let parse_cabs cpp_command_no_output = function
                   "trying to preprocess annotation with an unknown \
                    preprocessor."; true))
       then begin
-        let pp_annot_supp_args =
-          Format.asprintf "-nostdinc %s"
-            (concat_strs supported_cpp_arch_args)
-        in
         let ppf' =
           try Logic_preprocess.file ".c"
-                (replace_in_cpp_cmd cmdl pp_annot_supp_args)
+                (replace_in_cpp_cmd cmdl supp_args)
                 (ppf : Filepath.Normalized.t :> string)
           with Sys_error _ as e ->
             safe_remove_file ppf;
diff --git a/src/kernel_services/ast_queries/file.mli b/src/kernel_services/ast_queries/file.mli
index 979ee3d7721..5cbfef57263 100644
--- a/src/kernel_services/ast_queries/file.mli
+++ b/src/kernel_services/ast_queries/file.mli
@@ -30,10 +30,14 @@ type cpp_opt_kind = Gnu | Not_gnu | Unknown
     Note: [string] is used here instead of [Filepath], to preserve
           names given on the command line, without normalization. *)
 type file =
-  | NeedCPP of Filepath.Normalized.t * string * cpp_opt_kind
-  (** The first string is the filename of the [.c] to preprocess.
-      The second one is the preprocessor command ([filename.c -o
-      tempfilname.i] will be appended at the end).*)
+  | NeedCPP of Filepath.Normalized.t * string * string list * cpp_opt_kind
+  (** File which needs preprocessing.
+      NeedCPP(filepath, cmd, extra, cpp_opt_kind):
+      - filepath: source file to be preprocessed;
+      - cmd: preprocessing command, before replacement of '%'-arguments;
+      - extra: list of extra arguments (e.g. from a JCDB);
+      - cpp_opt_kind: whether the preprocessor supports GNU options
+        such as -I/-D. *)
   | NoCPP of Filepath.Normalized.t
   (** Already pre-processed file [.i] *)
   | External of Filepath.Normalized.t * string
diff --git a/tests/jcdb/jcdb.c b/tests/jcdb/jcdb.c
index f2389fe2e8a..caf9e83a152 100644
--- a/tests/jcdb/jcdb.c
+++ b/tests/jcdb/jcdb.c
@@ -4,6 +4,7 @@ OPT: -json-compilation-database @PTEST_DIR@ -print
 OPT: @PTEST_DIR@/jcdb2.c -json-compilation-database @PTEST_DIR@/with_arguments.json -print
 OPT: -json-compilation-database @PTEST_DIR@/with_arguments.json -no-autoload-plugins -load-module @PTEST_DIR@/@PTEST_NAME@.cmxs
 EXECNOW: LOG list_files.res LOG list_files.err share/analysis-scripts/list_files.py @PTEST_DIR@/compile_commands_working.json > @PTEST_DIR@/result/list_files.res 2> @PTEST_DIR@/result/list_files.err
+EXECNOW: LOG logic-pp-include.res LOG logic-pp-include.err @frama-c@ -json-compilation-database @PTEST_DIR@/logic-pp-include @PTEST_DIR@/logic-pp-include/no-stdio.c -print -no-autoload-plugins > @PTEST_DIR@/result/logic-pp-include.res 2> @PTEST_DIR@/result/logic-pp-include.err
 */
 #include <stdio.h>
 
diff --git a/tests/jcdb/logic-pp-include/compile_commands.json b/tests/jcdb/logic-pp-include/compile_commands.json
new file mode 100644
index 00000000000..9e4246444d3
--- /dev/null
+++ b/tests/jcdb/logic-pp-include/compile_commands.json
@@ -0,0 +1,11 @@
+[
+    {
+        "arguments": [
+            "-include",
+            "stdio.h",
+            "-DZERO=0"
+        ],
+        "directory": ".",
+        "file": "no-stdio.c"
+    }
+]
diff --git a/tests/jcdb/logic-pp-include/no-stdio.c b/tests/jcdb/logic-pp-include/no-stdio.c
new file mode 100644
index 00000000000..78444816bb2
--- /dev/null
+++ b/tests/jcdb/logic-pp-include/no-stdio.c
@@ -0,0 +1,5 @@
+// compile_commands.json must have "-includestdio.h" and define ZERO
+int main(){
+  printf("bla\n");
+  return ZERO;
+}
diff --git a/tests/jcdb/oracle/logic-pp-include.err b/tests/jcdb/oracle/logic-pp-include.err
new file mode 100644
index 00000000000..e69de29bb2d
diff --git a/tests/jcdb/oracle/logic-pp-include.res b/tests/jcdb/oracle/logic-pp-include.res
new file mode 100644
index 00000000000..a6aedf5c3dd
--- /dev/null
+++ b/tests/jcdb/oracle/logic-pp-include.res
@@ -0,0 +1,15 @@
+[kernel] Parsing tests/jcdb/logic-pp-include/no-stdio.c (with preprocessing)
+/* Generated by Frama-C */
+#include "errno.h"
+#include "stdarg.h"
+#include "stddef.h"
+#include "stdio.h"
+int main(void)
+{
+  int __retres;
+  printf("bla\n");
+  __retres = 0;
+  return __retres;
+}
+
+
-- 
GitLab


From f786e99de759893c2922f2893e29374fdbbda21a Mon Sep 17 00:00:00 2001
From: Valentin Perrelle <valentin.perrelle@cea.fr>
Date: Wed, 12 Dec 2018 20:51:00 +0100
Subject: [PATCH 024/141] [Aorai] Add a list of observables

- add an "observables" option at the begining of ya files
- multiple "observables" options merges together (union of symbols)
- check that every function referred to is inside the observable list
- remove the initial curOperation and curOpStatus : the main function is
  not necessarily observable and the pre/post function will set those
  variables anyway
- ignore unobservables functions inside the relevant visitors
---
 src/plugins/aorai/aorai_dataflow.ml           |  12 +-
 src/plugins/aorai/aorai_utils.ml              |  56 ++----
 src/plugins/aorai/aorai_visitors.ml           | 176 +++++++++---------
 src/plugins/aorai/data_for_aorai.ml           |  82 ++++----
 src/plugins/aorai/data_for_aorai.mli          |  18 +-
 src/plugins/aorai/promelaast.mli              |   1 +
 src/plugins/aorai/promelaparser.mly           |  11 +-
 src/plugins/aorai/promelaparser_withexps.mly  |  11 +-
 .../aorai/tests/ltl/oracle/goto.res.oracle    |   4 +-
 .../tests/ltl/oracle/test_boucle.res.oracle   |   4 +-
 .../tests/ltl/oracle/test_boucle1.res.oracle  |   4 +-
 .../tests/ltl/oracle/test_boucle2.res.oracle  |   4 +-
 .../tests/ltl/oracle/test_boucle3.res.oracle  |   4 +-
 .../ltl/oracle/test_factorial.res.oracle      |   4 +-
 .../ltl/oracle/test_recursion1.res.oracle     |   4 +-
 .../ltl/oracle/test_recursion2.0.res.oracle   |   4 +-
 .../ltl/oracle/test_recursion2.1.res.oracle   |   4 +-
 .../tests/ltl/oracle/test_switch2.res.oracle  |   4 +-
 .../tests/ltl/oracle/test_switch3.res.oracle  |   4 +-
 .../test_switch3_et_recursion.res.oracle      |   4 +-
 .../ltl/oracle/test_switch3_if.res.oracle     |   4 +-
 .../ltl/oracle/test_switch3_return.res.oracle |   4 +-
 .../tests/ya/oracle/assigns.0.res.oracle      |   4 +-
 .../tests/ya/oracle/assigns.1.res.oracle      |   4 +-
 .../tests/ya/oracle/bts1289.0.res.oracle      |   4 +-
 .../tests/ya/oracle/bts1289.1.res.oracle      |   4 +-
 .../ya/oracle/declared_function.res.oracle    |   4 +-
 .../tests/ya/oracle/deterministic.res.oracle  |   4 +-
 .../aorai/tests/ya/oracle/formals.res.oracle  |   4 +-
 .../generate_assigns_bts1290.res.oracle       |   4 +-
 .../tests/ya/oracle/hoare_seq.res.oracle      |   4 +-
 .../tests/ya/oracle/incorrect.res.oracle      |   4 +-
 .../tests/ya/oracle/loop_bts1050.res.oracle   |   4 +-
 .../ya/oracle/metavariables-right.res.oracle  |   4 +-
 .../tests/ya/oracle/monostate.res.oracle      |   4 +-
 .../aorai/tests/ya/oracle/not_prm.res.oracle  |   4 +-
 .../aorai/tests/ya/oracle/other.res.oracle    |   4 +-
 .../aorai/tests/ya/oracle/seq.res.oracle      |   4 +-
 .../aorai/tests/ya/oracle/seq_loop.res.oracle |   4 +-
 .../tests/ya/oracle/single_call.res.oracle    |   4 +-
 .../oracle/singleassignment-right.res.oracle  |   4 +-
 .../aorai/tests/ya/oracle/stack.res.oracle    |   4 +-
 .../ya/oracle/test_acces_params.res.oracle    |   4 +-
 .../ya/oracle/test_acces_params2.res.oracle   |   4 +-
 .../test_boucle_rechercheTableau.res.oracle   |   4 +-
 .../tests/ya/oracle/test_factorial.res.oracle |   4 +-
 .../ya/oracle/test_recursion4.res.oracle      |   4 +-
 .../ya/oracle/test_recursion5.res.oracle      |   4 +-
 .../tests/ya/oracle/test_struct.res.oracle    |   4 +-
 src/plugins/aorai/yaparser.mly                |  30 ++-
 50 files changed, 299 insertions(+), 262 deletions(-)

diff --git a/src/plugins/aorai/aorai_dataflow.ml b/src/plugins/aorai/aorai_dataflow.ml
index 13bf13719f7..35cd5f132a0 100644
--- a/src/plugins/aorai/aorai_dataflow.ml
+++ b/src/plugins/aorai/aorai_dataflow.ml
@@ -430,7 +430,7 @@ module Computer(I: Init) = struct
 
   let do_call s f args (state,loops as d) =
     let kf = Globals.Functions.get f in
-    if Data_for_aorai.isIgnoredFunction (Kernel_function.get_name kf)
+    if Data_for_aorai.isIgnoredFunction kf
     then d (* we simply skip ignored functions. *)
     else begin
       set_call_state s state;
@@ -532,7 +532,7 @@ module Computer(I: Init) = struct
 end
 
 let compute_func_aux stack call_site kf init_state =
-  if Data_for_aorai.isIgnoredFunction (Kernel_function.get_name kf) then
+  if Data_for_aorai.isIgnoredFunction kf then
     Aorai_option.fatal "compute_func on function %a which is ignored by Aorai"
       Kernel_function.pretty kf
   else if List.mem_assq kf stack then begin
@@ -620,7 +620,7 @@ let () = compute_func := compute_func_aux
 
 let compute_forward () =
   let kf = Globals.Functions.find_by_name (Kernel.MainFunction.get()) in
-  if Data_for_aorai.isIgnoredFunction (Kernel_function.get_name kf) then
+  if Data_for_aorai.isIgnoredFunction kf then
     Aorai_option.abort "Main function %a is ignored by Aorai"
       Kernel_function.pretty kf;
   let (states,_) = Data_for_aorai.getGraph () in
@@ -757,7 +757,7 @@ struct
 
   let do_call s f state =
     let kf = Globals.Functions.get f in
-    if Data_for_aorai.isIgnoredFunction (Kernel_function.get_name kf)
+    if Data_for_aorai.isIgnoredFunction kf
     then Dataflow2.Default (* we simply skip ignored functions. *)
     else begin
       try
@@ -912,7 +912,7 @@ let filter_init_state restrict initial map acc =
   with Not_found -> acc
 
 let backward_analysis_aux stack kf ret_state =
-  if (Data_for_aorai.isIgnoredFunction (Kernel_function.get_name kf)) then
+  if Data_for_aorai.isIgnoredFunction kf then
     Aorai_option.fatal 
       "Call backward analysis on ignored function %a" Kernel_function.pretty kf
   else if List.memq kf stack then begin
@@ -1002,7 +1002,7 @@ let () = backward_analysis := backward_analysis_aux
 
 let compute_backward () =
   let kf = Globals.Functions.find_by_name (Kernel.MainFunction.get()) in
-  if Data_for_aorai.isIgnoredFunction (Kernel_function.get_name kf) then
+  if Data_for_aorai.isIgnoredFunction kf then
     Aorai_option.abort "Main function %a is ignored by Aorai"
       Kernel_function.pretty kf;
   let final_state = Data_for_aorai.get_kf_return_state kf in
diff --git a/src/plugins/aorai/aorai_utils.ml b/src/plugins/aorai/aorai_utils.ml
index 341fb420f6d..7615b72d83c 100644
--- a/src/plugins/aorai/aorai_utils.ml
+++ b/src/plugins/aorai/aorai_utils.ml
@@ -629,6 +629,16 @@ let crosscond_to_exp generated_kf curr_f curr_status loc cond res =
 (** Local copy of the file pointer *)
 let file = ref Cil.dummyFile
 
+let initFunction kf =
+  let fname = Kernel_function.get_name kf in
+  List.iter
+    (fun vi -> set_paraminfo fname vi.vname vi)
+    (Kernel_function.get_formals kf);
+  match (Kernel_function.find_return kf).skind with
+  | Cil_types.Return (Some { enode = Lval (Var vi,NoOffset) },_) ->
+    set_returninfo fname vi (* Add the vi of return stmt *)
+  | exception Kernel_function.No_Statement | _ -> () (* function without returned value *)
+
 (** Copy the file pointer locally in the class in order to ease globals
     management and initializes some tables. *)
 let initFile f =
@@ -636,27 +646,7 @@ let initFile f =
   Data_for_aorai.setCData ();
   (* Adding C variables into our hashtable *)
   Globals.Vars.iter (fun vi _ -> set_varinfo vi.vname vi);
-  Globals.Functions.iter
-    (fun kf ->
-       let fname = Kernel_function.get_name kf in
-       List.iter
-         (fun vi -> set_paraminfo fname vi.vname vi)
-         (Kernel_function.get_formals kf);
-       if not (Data_for_aorai.isIgnoredFunction fname) then
-         begin
-           try
-             let ret  = Kernel_function.find_return kf in
-             match ret.skind with
-             | Cil_types.Return (Some e,_) ->
-               (match e.enode with
-                | Lval (Var vi,NoOffset) ->
-                  set_returninfo fname vi (* Add the vi of return stmt *)
-                | _ -> () (* function without returned value *))
-             | _ -> () (* function without returned value *)
-           with Kernel_function.No_Statement ->
-             Aorai_option.fatal
-               "Don't know what to do with a function declaration"
-         end)
+  Globals.Functions.iter initFunction
 
 (** List of globals awaiting for adding into C file globals *)
 let globals_queue = ref []
@@ -760,6 +750,11 @@ let mk_global_c_enum_type name elements =
 let mk_global_c_initialized_enum name name_enuminfo ini =
   mk_global_c_initialized_vars name (TEnum(get_usedinfo name_enuminfo,[])) ini
 
+let mk_global_c_enum name name_enuminfo =
+  let init = {Cil_types.init=None} in
+  mk_global_c_initialized_enum name name_enuminfo init
+
+
 (* ************************************************************************* *)
 (** {b Terms management / computation} *)
 
@@ -913,15 +908,6 @@ let mk_global_states_init root =
        mk_global_var_init var { Cil_types.init = Some init})
     states
 
-let func_to_init name =
-  {Cil_types.init=
-     Some(SingleInit(
-         new_exp ~loc:(CurrentLoc.get()) (Const(func_to_cenum (name)))))}
-
-let funcStatus_to_init st =
-  {Cil_types.init=Some(SingleInit(new_exp ~loc:(CurrentLoc.get())
-                                    (Const(op_status_to_cenum (st)))))}
-
 class visit_decl_loops_init () =
   object(self)
     inherit Visitor.frama_c_inplace
@@ -1138,13 +1124,11 @@ let initGlobals root complete =
   mk_global_c_enum_type
     listOp
     (List.map
-       (fun e -> func_to_op_func e)
-       (getFunctions_from_c() @ getIgnoredFunctions()));
-  mk_global_c_initialized_enum curOp listOp
-    (func_to_init (Kernel_function.get_name root));
+       (fun kf -> func_to_op_func (Kernel_function.get_name kf))
+       (getObservablesFunctions() @ getIgnoredFunctions()));
+  mk_global_c_enum curOp listOp;
   mk_global_c_enum_type  listStatus (callStatus::[termStatus]);
-  mk_global_c_initialized_enum
-    curOpStatus listStatus (funcStatus_to_init Promelaast.Call);
+  mk_global_c_enum curOpStatus listStatus;
 
   mk_global_comment "//* ";
   mk_global_comment "//* States and Trans Variables";
diff --git a/src/plugins/aorai/aorai_visitors.ml b/src/plugins/aorai/aorai_visitors.ml
index f771e840669..7ceadc22a61 100644
--- a/src/plugins/aorai/aorai_visitors.ml
+++ b/src/plugins/aorai/aorai_visitors.ml
@@ -118,100 +118,106 @@ class visit_adding_code_for_synchronisation =
 
     val aux_post_table = Kernel_function.Hashtbl.create 17
 
+    method do_fundec fundec loc =
+      let kf = Extlib.the self#current_kf in
+      let vi = Kernel_function.get_vi kf in
+      let vi_pre = Cil_const.copy_with_new_vid vi in
+      vi_pre.vname <- Data_for_aorai.get_fresh (vi_pre.vname ^ "_pre_func");
+      vi_pre.vdefined <- true;
+      vi_pre.vghost <- true;
+      Cil_datatype.Varinfo.Hashtbl.add func_orig_table vi_pre (Pre_func kf);
+      (* TODO:
+         - what about protos that have no specified args
+           (NB: cannot be identified here because of implem of Kernel_function).
+         - what about varargs?
+      *)
+      let (rettype,args,varargs,_) = Cil.splitFunctionTypeVI vi_pre in
+      Cil.update_var_type vi_pre (TFun(Cil.voidType, args, varargs,[]));
+      vi_pre.vattr <- [];
+
+      (* in particular get rid of __no_return if set in vi*)
+
+      let arg =
+        if Cil.isVoidType rettype
+        then []
+        else ["res",rettype,[]]
+      in
+      let vi_post =
+        Cil.makeGlobalVar ~ghost:true
+          (Data_for_aorai.get_fresh (vi.vname ^ "_post_func"))
+          (TFun(voidType,Some arg,false,[]))
+      in
+      Kernel_function.Hashtbl.add aux_post_table kf vi_post;
+      Cil_datatype.Varinfo.Hashtbl.add func_orig_table vi_post (Post_func kf);
+      let fun_dec_pre = Cil.emptyFunctionFromVI vi_pre in
+      let fun_dec_post = Cil.emptyFunctionFromVI vi_post in
+      (* For a future analysis of function arguments,
+         we have to update the function's formals. Search
+         for LBLsformals. *)
+      Cil.setFunctionTypeMakeFormals
+        fun_dec_pre (TFun(Cil.voidType, args, varargs,[]));
+      Cil.setFunctionTypeMakeFormals
+        fun_dec_post (TFun(voidType,Some arg,false,[]));
+      (* We will now fill the function with the result
+         of the automaton's analysis. *)
+      Globals.Functions.replace_by_definition
+        (Cil.empty_funspec()) fun_dec_pre loc;
+      Globals.Functions.replace_by_definition
+        (Cil.empty_funspec()) fun_dec_post loc;
+      let kf_pre = Globals.Functions.get vi_pre in
+      let kf_post = Globals.Functions.get vi_post in
+      let aux_func_pre, pre_block,pre_locals = mk_pre_fct_block kf_pre kf in
+      let aux_func_post, post_block,post_locals =
+        mk_post_fct_block
+          kf_post kf (Extlib.opt_of_list fun_dec_post.sformals)
+      in
+      fun_dec_pre.slocals <- pre_locals;
+      fun_dec_pre.sbody <- pre_block;
+      fun_dec_pre.svar.vdefined <- true;
+      fun_dec_post.slocals <- post_locals;
+      fun_dec_post.sbody <- post_block;
+      fun_dec_post.svar.vdefined <- true;
+      let aux_funcs =
+        Cil_datatype.Varinfo.Set.union aux_func_pre aux_func_post
+      in
+      let globs =
+        Cil_datatype.Varinfo.Set.fold
+          (fun x acc ->
+             GFunDecl(Cil.empty_funspec(),x,loc) :: acc) aux_funcs
+          [ GFun(fun_dec_pre,loc); GFun(fun_dec_post,loc)]
+      in
+      Cil_datatype.Varinfo.Set.iter (add_aux_bhv kf) aux_funcs;
+      fundec.sbody.bstmts <-
+        Cil.mkStmtOneInstr ~ghost:true
+          (Call(None,Cil.evar ~loc vi_pre,
+                List.map (fun x -> Cil.evar ~loc x)
+                  (Kernel_function.get_formals kf),
+                loc))
+        :: fundec.sbody.bstmts;
+      (* Finally, we update the CFG for the new fundec *)
+      let keepSwitch = Kernel.KeepSwitch.get() in
+      Cfg.prepareCFG ~keepSwitch fun_dec_pre;
+      Cfg.cfgFun fun_dec_pre;
+      Cfg.prepareCFG ~keepSwitch fun_dec_post;
+      Cfg.cfgFun fun_dec_post;
+      globs
+
     method! vglob_aux g =
       match g with
       | GFun (fundec,loc) ->
-        let kf = Option.get self#current_kf in
-        let vi = Kernel_function.get_vi kf in
-        let vi_pre = Cil_const.copy_with_new_vid vi in
-        vi_pre.vname <- Data_for_aorai.get_fresh (vi_pre.vname ^ "_pre_func");
-        vi_pre.vdefined <- true;
-        vi_pre.vghost <- true;
-        Cil_datatype.Varinfo.Hashtbl.add func_orig_table vi_pre (Pre_func kf);
-        (* TODO:
-           - what about protos that have no specified args
-             (NB: cannot be identified here because of implem of Kernel_function).
-           - what about varargs?
-        *)
-        let (rettype,args,varargs,_) = Cil.splitFunctionTypeVI vi_pre in
-        Cil.update_var_type vi_pre (TFun(Cil.voidType, args, varargs,[]));
-        vi_pre.vattr <- [];
-
-        (* in particular get rid of __no_return if set in vi*)
-
-        let arg =
-          if Cil.isVoidType rettype
-          then []
-          else ["res",rettype,[]]
-        in
-        let vi_post =
-          Cil.makeGlobalVar ~ghost:true
-            (Data_for_aorai.get_fresh (vi.vname ^ "_post_func"))
-            (TFun(voidType,Some arg,false,[]))
-        in
-        Kernel_function.Hashtbl.add aux_post_table kf vi_post;
-        Cil_datatype.Varinfo.Hashtbl.add func_orig_table vi_post (Post_func kf);
-        let fun_dec_pre = Cil.emptyFunctionFromVI vi_pre in
-        let fun_dec_post = Cil.emptyFunctionFromVI vi_post in
-        (* For a future analysis of function arguments,
-           we have to update the function's formals. Search
-           for LBLsformals. *)
-        Cil.setFunctionTypeMakeFormals
-          fun_dec_pre (TFun(Cil.voidType, args, varargs,[]));
-        Cil.setFunctionTypeMakeFormals
-          fun_dec_post (TFun(voidType,Some arg,false,[]));
-        (* We will now fill the function with the result
-           of the automaton's analysis. *)
-        Globals.Functions.replace_by_definition
-          (Cil.empty_funspec()) fun_dec_pre loc;
-        Globals.Functions.replace_by_definition
-          (Cil.empty_funspec()) fun_dec_post loc;
-        let kf_pre = Globals.Functions.get vi_pre in
-        let kf_post = Globals.Functions.get vi_post in
-        let aux_func_pre, pre_block,pre_locals = mk_pre_fct_block kf_pre kf in
-        let aux_func_post, post_block,post_locals =
-          mk_post_fct_block
-            kf_post kf (Extlib.opt_of_list fun_dec_post.sformals)
-        in
-        fun_dec_pre.slocals <- pre_locals;
-        fun_dec_pre.sbody <- pre_block;
-        fun_dec_pre.svar.vdefined <- true;
-        fun_dec_post.slocals <- post_locals;
-        fun_dec_post.sbody <- post_block;
-        fun_dec_post.svar.vdefined <- true;
-        let aux_funcs =
-          Cil_datatype.Varinfo.Set.union aux_func_pre aux_func_post
-        in
-        let globs =
-          Cil_datatype.Varinfo.Set.fold
-            (fun x acc ->
-               GFunDecl(Cil.empty_funspec(),x,loc) :: acc) aux_funcs
-            [ GFun(fun_dec_pre,loc); GFun(fun_dec_post,loc)]
-        in
-        Cil_datatype.Varinfo.Set.iter (add_aux_bhv kf) aux_funcs;
-        fundec.sbody.bstmts <-
-          Cil.mkStmtOneInstr ~ghost:true
-            (Call(None,Cil.evar ~loc vi_pre,
-                  List.map (fun x -> Cil.evar ~loc x)
-                    (Kernel_function.get_formals kf),
-                  loc))
-          :: fundec.sbody.bstmts;
-        (* Finally, we update the CFG for the new fundec *)
-        let keepSwitch = Kernel.KeepSwitch.get() in
-        Cfg.prepareCFG ~keepSwitch fun_dec_pre;
-        Cfg.cfgFun fun_dec_pre;
-        Cfg.prepareCFG ~keepSwitch fun_dec_post;
-        Cfg.cfgFun fun_dec_post;
-        ChangeDoChildrenPost([g], fun x -> globs @ x)
+        let kf = Globals.Functions.get fundec.svar in
+        if Data_for_aorai.isObservableFunction kf then
+          let globs = self#do_fundec fundec loc in
+          ChangeDoChildrenPost([g], fun x -> globs @ x)
+        else
+          DoChildren
       | _ -> DoChildren
 
     method! vstmt_aux stmt =
       match stmt.skind with
       | Return (res,loc)  ->
         let kf = Option.get self#current_kf in
-        let vi = Kernel_function.get_vi kf in
-        let current_function = vi.vname in
-        if not (Data_for_aorai.isIgnoredFunction current_function) then begin
+        if Data_for_aorai.isObservableFunction kf then begin
           let args = match res with
             | None -> []
             | Some exp -> [Cil.copy_exp exp]
diff --git a/src/plugins/aorai/data_for_aorai.ml b/src/plugins/aorai/data_for_aorai.ml
index ec4242b8b79..157f44778f2 100644
--- a/src/plugins/aorai/data_for_aorai.ml
+++ b/src/plugins/aorai/data_for_aorai.ml
@@ -211,11 +211,9 @@ let automata = ref None
 (* Each transition with a parametrized cross condition (call param access or return value access) has its parametrized part stored in this array. *)
 let cond_of_parametrizedTransitions = ref (Array.make (1) [[]])
 
-(* List of variables name observed in the C file *)
-let variables_from_c = ref []
-(* List of functions name observed in the C file *)
-let functions_from_c = ref []
-(* List of functions call observed in the C file without declaration *)
+(* List of functions defined in the C file *)
+let defined_functions = ref []
+(* List of functions without declaration *)
 let ignored_functions = ref []
 
 (** Return the buchi automata as stored after parsing *)
@@ -1545,6 +1543,27 @@ let checkMetavariableCompatibility auto =
       "The use of metavariables is incompatible with non-deterministic \
        automata, such as automa using extended transitions."
 
+let check_observables auto =
+ match auto.observables with
+ | None -> () (* No observable list set, everything is observable *)
+ | Some set ->
+   let is_relevant name =
+     try
+       ignore (Globals.Functions.find_by_name name)
+     with Not_found ->
+       Aorai_option.fatal "Observable %s doesn't match any function" name
+   in
+   let rec check = function
+     | TAnd (c1,c2) | TOr (c1,c2) -> check c1; check c2
+     | TNot (c) -> check c
+     | TRel _ | TTrue | TFalse -> ()
+     | TCall (kf,_) | TReturn kf ->
+       let name = Kernel_function.get_name kf in
+       if not (Datatype.String.Set.mem name set) then
+         Aorai_option.fatal "Function %s is not observable" name
+   in
+   Datatype.String.Set.iter is_relevant set;
+   List.iter (fun tr -> check tr.cross) auto.trans
 
 (** Stores the buchi automaton and its variables and
     functions as it is returned by the parsing *)
@@ -1553,6 +1572,7 @@ let setAutomata auto =
   let auto = type_cond_auto auto in
   automata:=Some auto;
   check_states "typed automata";
+  check_observables auto;
   if Aorai_option.debug_atleast 1 then
     Promelaoutput.Typed.output_dot_automata auto "aorai_debug_reduced.dot";
   if (Array.length !cond_of_parametrizedTransitions) <
@@ -1577,41 +1597,39 @@ let setCData () =
   let (f_decl,f_def) =
     Globals.Functions.fold
       (fun f (lf_decl,lf_def) ->
-         let name = (Kernel_function.get_name f) in
          match f.fundec with
-           | Definition _ -> (lf_decl,name::lf_def)
-           | Declaration _ -> (name::lf_decl,lf_def))
+           | Definition _  -> (lf_decl, f :: lf_def)
+           | Declaration _ -> (f :: lf_decl, lf_def))
       ([],[])
   in
-  functions_from_c:=f_def;
-  ignored_functions:=f_decl;
-  variables_from_c:=
-    Globals.Vars.fold
-    (fun v _ lv ->
-      Format.asprintf "%a" Cil_datatype.Varinfo.pretty v :: lv)
-    []
+  defined_functions := f_def;
+  ignored_functions := f_decl
 
-(** Return the list of all function name observed in the C file, except ignored functions. *)
-let getFunctions_from_c () =
-  (!functions_from_c)
+let addIgnoredFunction kf =
+  ignored_functions := kf :: !ignored_functions
 
-(** Return the list of all variables name observed in the C file. *)
-let getVariables_from_c () =
-  (!variables_from_c)
+(** Return true if and only if the given string fname denotes an ignored function. *)
+let isIgnoredFunction kf =
+  List.exists (Kernel_function.equal kf) !ignored_functions
 
-(** Return the list of names of all ignored functions. A function is ignored if it is used in C file and if its declaration is unavailable. *)
-let getIgnoredFunctions () =
-  (!ignored_functions)
+let isDeclaredObservable kf =
+  let auto = getAutomata () in
+  let fname = Kernel_function.get_name kf in
+  match auto.observables with
+  | None -> true
+  | Some set ->
+    Datatype.String.Set.mem fname set
 
-(** Return the list of names of all ignored functions. A function is ignored if it is used in C file and if its declaration is unavailable. *)
-let addIgnoredFunction fname =
-  ignored_functions:=fname::(!ignored_functions)
+let isObservableFunction kf =
+  not (isIgnoredFunction kf) && isDeclaredObservable kf
 
-(** Return true if and only if the given string fname denotes an ignored function. *)
-let isIgnoredFunction fname =
-  List.exists
-    (fun s -> (String.compare fname s)=0)
-    (!ignored_functions)
+(** Return the list of all function name observed in the C file, except ignored functions. *)
+let getObservablesFunctions () =
+  List.filter isDeclaredObservable !defined_functions
+
+(** Return the list of names of observable but ignored functions. A function is ignored if it is used in C file and if its declaration is unavailable. *)
+let getIgnoredFunctions () =
+  List.filter isDeclaredObservable !ignored_functions
 
 let is_reject_state state =
   match Reject_state.get_option () with
diff --git a/src/plugins/aorai/data_for_aorai.mli b/src/plugins/aorai/data_for_aorai.mli
index 8c7ed586075..786ca7217fb 100644
--- a/src/plugins/aorai/data_for_aorai.mli
+++ b/src/plugins/aorai/data_for_aorai.mli
@@ -218,20 +218,20 @@ val getNumberOfTransitions : unit -> int
 (** return the number of states of the automata *)
 val getNumberOfStates : unit -> int
 
-(** Return the list of all function name observed in the C file. *)
-val getFunctions_from_c : unit -> string list
+(** Return the list of all function name observed in the C file, except ignored functions. *)
+val getObservablesFunctions : unit -> Cil_types.kernel_function list
 
-(** Return the list of all variables name observed in the C file. *)
-val getVariables_from_c : unit -> string list
+(** Return the list of names of observable but ignored functions. A function is ignored if it is used in C file and if its declaration is unavailable. *)
+val getIgnoredFunctions : unit -> Cil_types.kernel_function list
 
 (** Return the list of names of all ignored functions. A function is ignored if it is used in C file and if its declaration is unavailable. *)
-val getIgnoredFunctions : unit -> string list
-
-(** Return the list of names of all ignored functions. A function is ignored if it is used in C file and if its declaration is unavailable. *)
-val addIgnoredFunction : string -> unit
+val addIgnoredFunction : Cil_types.kernel_function -> unit
 
 (** Return true if and only if the given string fname denotes an ignored function. *)
-val isIgnoredFunction : string -> bool
+val isIgnoredFunction : Cil_types.kernel_function -> bool
+
+(** Return true if and onfly if the given function can be observed *)
+val isObservableFunction : Cil_types.kernel_function -> bool
 
 (** returns the state of given index.
     @since Nitrogen-20111001
diff --git a/src/plugins/aorai/promelaast.mli b/src/plugins/aorai/promelaast.mli
index fe0bdcfe677..833e13eddde 100644
--- a/src/plugins/aorai/promelaast.mli
+++ b/src/plugins/aorai/promelaast.mli
@@ -142,6 +142,7 @@ type ('c,'a) automaton = {
   states: state list;
   trans: (('c,'a) trans) list;
   metavariables: Cil_types.varinfo Datatype.String.Map.t;
+  observables: Datatype.String.Set.t option;
 }
 
 type parsed_automaton = (guard, action) automaton
diff --git a/src/plugins/aorai/promelaparser.mly b/src/plugins/aorai/promelaparser.mly
index 4bcac643722..1badbbe38a9 100644
--- a/src/plugins/aorai/promelaparser.mly
+++ b/src/plugins/aorai/promelaparser.mly
@@ -77,7 +77,10 @@ promela
                 st::l
               ) observed_states []
             in
-            { states; trans = $3; metavariables = Datatype.String.Map.empty }
+            { states; trans = $3;
+              metavariables = Datatype.String.Map.empty;
+              observables = None;
+            }
         }
         | PROMELA_NEVER PROMELA_LBRACE states PROMELA_SEMICOLON 
             PROMELA_RBRACE EOF {
@@ -91,7 +94,11 @@ promela
                   st::l
                 ) observed_states []
               in
-              { states; trans = $3; metavariables = Datatype.String.Map.empty } }
+              { states; trans = $3;
+                metavariables = Datatype.String.Map.empty;
+                observables = None;
+              }
+          }
   ;
 
 states   
diff --git a/src/plugins/aorai/promelaparser_withexps.mly b/src/plugins/aorai/promelaparser_withexps.mly
index bf852a65f37..4f8abab8a0e 100644
--- a/src/plugins/aorai/promelaparser_withexps.mly
+++ b/src/plugins/aorai/promelaparser_withexps.mly
@@ -88,7 +88,10 @@ promela
                 st::l
               ) observed_states []
             in
-            { states; trans = $3; metavariables = Datatype.String.Map.empty }
+            { states; trans = $3;
+              metavariables = Datatype.String.Map.empty;
+              observables = None;
+            }
         }
         | PROMELA_NEVER PROMELA_LBRACE states 
             PROMELA_SEMICOLON PROMELA_RBRACE EOF {
@@ -102,7 +105,11 @@ promela
                 st::l
               ) observed_states []
             in
-            { states; trans = $3; metavariables = Datatype.String.Map.empty } }
+            { states; trans = $3;
+              metavariables = Datatype.String.Map.empty;
+              observables = None;
+            }
+        }
   ;
 
 states   
diff --git a/src/plugins/aorai/tests/ltl/oracle/goto.res.oracle b/src/plugins/aorai/tests/ltl/oracle/goto.res.oracle
index c1554953000..265c294b60c 100644
--- a/src/plugins/aorai/tests/ltl/oracle/goto.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/goto.res.oracle
@@ -18,8 +18,8 @@ int status = 0;
 int rr = 1;
 /*@ global invariant inv: 0 ≤ rr ≤ 5000;
  */
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int accept_S2 = 0; */
 /*@ ghost int accept_S3 = 0; */
 /*@ ghost int accept_S4 = 0; */
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_boucle.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_boucle.res.oracle
index af9bc71a2b3..84419238102 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_boucle.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_boucle.res.oracle
@@ -16,8 +16,8 @@ enum aorai_OpStatusList {
 };
 extern int call_to_an_undefined_function(void);
 
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int T0_S2 = 0; */
 /*@ ghost int T0_init = 1; */
 /*@ ghost int accept_S1 = 0; */
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_boucle1.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_boucle1.res.oracle
index 9da27b6622e..d48aaf2d91e 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_boucle1.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_boucle1.res.oracle
@@ -17,8 +17,8 @@ int cpt = 3;
 int status = 0;
 /*@ global invariant inv_status: 0 ≤ status ≤ 1;
  */
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int accept_S1 = 0; */
 /*@ ghost int accept_S2 = 0; */
 /*@ ghost int accept_S3 = 0; */
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_boucle2.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_boucle2.res.oracle
index 3b6f510bb85..8491e8c23ed 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_boucle2.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_boucle2.res.oracle
@@ -15,8 +15,8 @@ int status = 0;
 int rr = 1;
 /*@ global invariant inv: 0 ≤ rr ≤ 50;
  */
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int T0_S2 = 0; */
 /*@ ghost int T0_init = 1; */
 /*@ ghost int accept_S3 = 0; */
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_boucle3.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_boucle3.res.oracle
index 0e2861364d6..4521080b3e1 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_boucle3.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_boucle3.res.oracle
@@ -15,8 +15,8 @@ int status = 0;
 int rr = 1;
 /*@ global invariant inv: 0 ≤ rr ≤ 50;
  */
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int T0_S4 = 0; */
 /*@ ghost int T0_init = 1; */
 /*@ ghost int T1_S2 = 0; */
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_factorial.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_factorial.res.oracle
index 76309462d15..c1aac176071 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_factorial.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_factorial.res.oracle
@@ -11,8 +11,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int accept_S1 = 0; */
 /*@ ghost int accept_S2 = 0; */
 /*@ ghost int accept_init = 1; */
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_recursion1.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_recursion1.res.oracle
index c3757b98233..eaaac90fdb2 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_recursion1.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_recursion1.res.oracle
@@ -45,8 +45,8 @@ axiomatic string_len {
 predicate valid_string{L}(char *s) =
   \valid(s) ∧ \valid(s + (0 .. string_len(s)));
  */
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int T0_S2 = 0; */
 /*@ ghost int T0_init = 1; */
 /*@ ghost int accept_S1 = 0; */
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_recursion2.0.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_recursion2.0.res.oracle
index fd43837e998..eb681fba1c9 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_recursion2.0.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_recursion2.0.res.oracle
@@ -60,8 +60,8 @@ axiomatic sum_tab {
   }
  */
 int global_argc = 0;
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int S1 = 0; */
 /*@ ghost int T0_init = 1; */
 /*@ ghost int T1 = 0; */
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_recursion2.1.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_recursion2.1.res.oracle
index a40a3eae304..e92778bcb0c 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_recursion2.1.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_recursion2.1.res.oracle
@@ -60,8 +60,8 @@ axiomatic sum_tab {
   }
  */
 int global_argc = 0;
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int S1 = 0; */
 /*@ ghost int T0_init = 1; */
 /*@ ghost int T1 = 0; */
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_switch2.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_switch2.res.oracle
index 2ceecc16fc1..41a59d023f0 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_switch2.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_switch2.res.oracle
@@ -20,8 +20,8 @@ int status = 0;
 int rr = 1;
 /*@ global invariant inv: 0 ≤ rr ≤ 50;
  */
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int accept_S2 = 0; */
 /*@ ghost int accept_S3 = 0; */
 /*@ ghost int accept_S4 = 0; */
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_switch3.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_switch3.res.oracle
index d81509eb536..4ed3b4a39a1 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_switch3.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_switch3.res.oracle
@@ -11,8 +11,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int T0_S2 = 0; */
 /*@ ghost int T0_init = 1; */
 /*@ ghost int accept_S1 = 0; */
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_switch3_et_recursion.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_switch3_et_recursion.res.oracle
index e5154fb8581..62566d6ad71 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_switch3_et_recursion.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_switch3_et_recursion.res.oracle
@@ -13,8 +13,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int T0_S2 = 0; */
 /*@ ghost int T0_init = 1; */
 /*@ ghost int accept_S1 = 0; */
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_switch3_if.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_switch3_if.res.oracle
index 5cc019fcad4..88b0352589b 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_switch3_if.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_switch3_if.res.oracle
@@ -11,8 +11,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int T0_S2 = 0; */
 /*@ ghost int T0_init = 1; */
 /*@ ghost int accept_S1 = 0; */
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_switch3_return.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_switch3_return.res.oracle
index 0fb781bb704..9e0438a0e71 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_switch3_return.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_switch3_return.res.oracle
@@ -11,8 +11,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int T0_S2 = 0; */
 /*@ ghost int T0_init = 1; */
 /*@ ghost int accept_S1 = 0; */
diff --git a/src/plugins/aorai/tests/ya/oracle/assigns.0.res.oracle b/src/plugins/aorai/tests/ya/oracle/assigns.0.res.oracle
index 09b37de9a73..f4acc040245 100644
--- a/src/plugins/aorai/tests/ya/oracle/assigns.0.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/assigns.0.res.oracle
@@ -11,8 +11,8 @@ enum aorai_OpStatusList {
     aorai_Called = 0
 };
 int X;
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int S1 = 1; */
 /*@ ghost int S2 = 0; */
 /*@ ghost int S_in_f = 0; */
diff --git a/src/plugins/aorai/tests/ya/oracle/assigns.1.res.oracle b/src/plugins/aorai/tests/ya/oracle/assigns.1.res.oracle
index fd7526444df..28be1b6491e 100644
--- a/src/plugins/aorai/tests/ya/oracle/assigns.1.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/assigns.1.res.oracle
@@ -29,8 +29,8 @@ enum aorai_OpStatusList {
 /*@ check lemma S1_deterministic_trans{L}: \true;
  */
 int X;
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int aorai_CurStates = S1; */
 /*@ ghost
   /@ requires aorai_CurStates ≡ Sf;
diff --git a/src/plugins/aorai/tests/ya/oracle/bts1289.0.res.oracle b/src/plugins/aorai/tests/ya/oracle/bts1289.0.res.oracle
index 74d55944211..ded70303a39 100644
--- a/src/plugins/aorai/tests/ya/oracle/bts1289.0.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/bts1289.0.res.oracle
@@ -11,8 +11,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int S = 0; */
 /*@ ghost
   /@ requires \false;
diff --git a/src/plugins/aorai/tests/ya/oracle/bts1289.1.res.oracle b/src/plugins/aorai/tests/ya/oracle/bts1289.1.res.oracle
index adebb6ca55a..c7ab7fc71c4 100644
--- a/src/plugins/aorai/tests/ya/oracle/bts1289.1.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/bts1289.1.res.oracle
@@ -10,8 +10,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int S = 0; */
 /*@ ghost int T = 0; */
 /*@ ghost int aorai_intermediate_state = 0; */
diff --git a/src/plugins/aorai/tests/ya/oracle/declared_function.res.oracle b/src/plugins/aorai/tests/ya/oracle/declared_function.res.oracle
index 7141a6e1958..9aac8e4561e 100644
--- a/src/plugins/aorai/tests/ya/oracle/declared_function.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/declared_function.res.oracle
@@ -16,8 +16,8 @@ enum aorai_OpStatusList {
 };
 int f(void);
 
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@
 check lemma I_deterministic_trans{L}:
   (∀ int __retres_f;
diff --git a/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle b/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle
index 6b9c9095bc9..eac5b5331de 100644
--- a/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle
@@ -35,8 +35,8 @@ enum aorai_OpStatusList {
  */
 int X;
 int Y;
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@
 check lemma S3_deterministic_trans{L}:
   ∀ int x;
diff --git a/src/plugins/aorai/tests/ya/oracle/formals.res.oracle b/src/plugins/aorai/tests/ya/oracle/formals.res.oracle
index 52323f131b7..1b5982df2b9 100644
--- a/src/plugins/aorai/tests/ya/oracle/formals.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/formals.res.oracle
@@ -28,8 +28,8 @@ enum aorai_OpStatusList {
  */
 /*@ check lemma OK_deterministic_trans{L}: \true;
  */
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@
 check lemma main_0_deterministic_trans{L}:
   ∀ int x;
diff --git a/src/plugins/aorai/tests/ya/oracle/generate_assigns_bts1290.res.oracle b/src/plugins/aorai/tests/ya/oracle/generate_assigns_bts1290.res.oracle
index 6d8dc5b0067..a409f76aa7a 100644
--- a/src/plugins/aorai/tests/ya/oracle/generate_assigns_bts1290.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/generate_assigns_bts1290.res.oracle
@@ -9,8 +9,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int S = 1; */
 /*@ ghost
   /@ requires 1 ≡ S;
diff --git a/src/plugins/aorai/tests/ya/oracle/hoare_seq.res.oracle b/src/plugins/aorai/tests/ya/oracle/hoare_seq.res.oracle
index ea603b7e865..b8271b7f370 100644
--- a/src/plugins/aorai/tests/ya/oracle/hoare_seq.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/hoare_seq.res.oracle
@@ -10,8 +10,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int S0 = 1; */
 /*@ ghost int Sf = 0; */
 /*@ ghost int aorai_intermediate_state = 0; */
diff --git a/src/plugins/aorai/tests/ya/oracle/incorrect.res.oracle b/src/plugins/aorai/tests/ya/oracle/incorrect.res.oracle
index ccfb249eba5..bcd7dddbbf4 100644
--- a/src/plugins/aorai/tests/ya/oracle/incorrect.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/incorrect.res.oracle
@@ -19,8 +19,8 @@ enum aorai_OpStatusList {
  */
 int f(void);
 
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int aorai_CurStates = s0; */
 /*@ ghost
   /@ requires \false;
diff --git a/src/plugins/aorai/tests/ya/oracle/loop_bts1050.res.oracle b/src/plugins/aorai/tests/ya/oracle/loop_bts1050.res.oracle
index ccc98a41d83..926ceb3efd8 100644
--- a/src/plugins/aorai/tests/ya/oracle/loop_bts1050.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/loop_bts1050.res.oracle
@@ -11,8 +11,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int S0 = 1; */
 /*@ ghost int Sf = 0; */
 /*@ ghost int aorai_intermediate_state = 0; */
diff --git a/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle b/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle
index 39843d1a28e..f9cbea2f85d 100644
--- a/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle
@@ -39,8 +39,8 @@ enum aorai_OpStatusList {
  */
 /*@ check lemma a_deterministic_trans{L}: \true;
  */
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@
 check lemma b_deterministic_trans{L}:
   ¬(\at(aorai_CurOperation,L) ≡ op_g ∧
diff --git a/src/plugins/aorai/tests/ya/oracle/monostate.res.oracle b/src/plugins/aorai/tests/ya/oracle/monostate.res.oracle
index 86ceb3e9912..b0789f55dee 100644
--- a/src/plugins/aorai/tests/ya/oracle/monostate.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/monostate.res.oracle
@@ -21,8 +21,8 @@ enum aorai_OpStatusList {
 };
 /*@ check lemma aorai_reject_deterministic_trans{L}: \true;
  */
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@
 check lemma aorai_intermediate_state_deterministic_trans{L}:
   ¬(\at(aorai_CurOperation,L) ≡ op_main ∧
diff --git a/src/plugins/aorai/tests/ya/oracle/not_prm.res.oracle b/src/plugins/aorai/tests/ya/oracle/not_prm.res.oracle
index 1d964840b06..e2b8af2f5f8 100644
--- a/src/plugins/aorai/tests/ya/oracle/not_prm.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/not_prm.res.oracle
@@ -9,8 +9,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_f; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int S0 = 1; */
 /*@ ghost int Sf = 0; */
 /*@ ghost
diff --git a/src/plugins/aorai/tests/ya/oracle/other.res.oracle b/src/plugins/aorai/tests/ya/oracle/other.res.oracle
index 8f230ecadb2..24195e41f5e 100644
--- a/src/plugins/aorai/tests/ya/oracle/other.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/other.res.oracle
@@ -12,8 +12,8 @@ enum aorai_OpStatusList {
     aorai_Called = 0
 };
 int x = 0;
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int init = 1; */
 /*@ ghost int last = 0; */
 /*@ ghost int step1 = 0; */
diff --git a/src/plugins/aorai/tests/ya/oracle/seq.res.oracle b/src/plugins/aorai/tests/ya/oracle/seq.res.oracle
index 506dca121a3..ad8e58e2c0a 100644
--- a/src/plugins/aorai/tests/ya/oracle/seq.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/seq.res.oracle
@@ -11,8 +11,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int S0 = 1; */
 /*@ ghost int Sf = 0; */
 /*@ ghost int aorai_intermediate_state = 0; */
diff --git a/src/plugins/aorai/tests/ya/oracle/seq_loop.res.oracle b/src/plugins/aorai/tests/ya/oracle/seq_loop.res.oracle
index 91097fdf88b..74c4b90d5d2 100644
--- a/src/plugins/aorai/tests/ya/oracle/seq_loop.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/seq_loop.res.oracle
@@ -11,8 +11,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int S0 = 1; */
 /*@ ghost int Sf = 0; */
 /*@ ghost int aorai_intermediate_state = 0; */
diff --git a/src/plugins/aorai/tests/ya/oracle/single_call.res.oracle b/src/plugins/aorai/tests/ya/oracle/single_call.res.oracle
index ee4213fd46c..8140ad900ee 100644
--- a/src/plugins/aorai/tests/ya/oracle/single_call.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/single_call.res.oracle
@@ -9,8 +9,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int S0 = 1; */
 /*@ ghost int Sf = 0; */
 /*@ ghost int aorai_intermediate_state = 0; */
diff --git a/src/plugins/aorai/tests/ya/oracle/singleassignment-right.res.oracle b/src/plugins/aorai/tests/ya/oracle/singleassignment-right.res.oracle
index 47bd37cf3ee..964d18945b2 100644
--- a/src/plugins/aorai/tests/ya/oracle/singleassignment-right.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/singleassignment-right.res.oracle
@@ -21,8 +21,8 @@ enum aorai_OpStatusList {
  */
 /*@ check lemma a_deterministic_trans{L}: \true;
  */
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int aorai_CurStates = a; */
 /*@ ghost int aorai_x = 0; */
 /*@ ghost int aorai_y = 0; */
diff --git a/src/plugins/aorai/tests/ya/oracle/stack.res.oracle b/src/plugins/aorai/tests/ya/oracle/stack.res.oracle
index 6ca094fa00c..9ff7ca0aecd 100644
--- a/src/plugins/aorai/tests/ya/oracle/stack.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/stack.res.oracle
@@ -27,8 +27,8 @@ enum aorai_OpStatusList {
 /*@ check lemma accept_deterministic_trans{L}: \true;
  */
 int g = 0;
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@
 check lemma empty_stack_deterministic_trans{L}:
   ¬(\at(aorai_CurOperation,L) ≡ op_push ∧
diff --git a/src/plugins/aorai/tests/ya/oracle/test_acces_params.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_acces_params.res.oracle
index 89553036d1a..20787049401 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_acces_params.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_acces_params.res.oracle
@@ -15,8 +15,8 @@ int status = 0;
 int rr = 1;
 /*@ global invariant inv: 0 ≤ rr ≤ 5000;
  */
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int S1 = 0; */
 /*@ ghost int S2 = 0; */
 /*@ ghost int S3 = 0; */
diff --git a/src/plugins/aorai/tests/ya/oracle/test_acces_params2.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_acces_params2.res.oracle
index 16997723976..c6d27622ae3 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_acces_params2.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_acces_params2.res.oracle
@@ -15,8 +15,8 @@ enum aorai_OpStatusList {
 int rr = 1;
 /*@ global invariant inv: 0 ≤ rr ≤ 5000;
  */
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int S1 = 1; */
 /*@ ghost int S2 = 0; */
 /*@ ghost int S3 = 0; */
diff --git a/src/plugins/aorai/tests/ya/oracle/test_boucle_rechercheTableau.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_boucle_rechercheTableau.res.oracle
index 6bd1a0b39b8..6bb7bed4d31 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_boucle_rechercheTableau.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_boucle_rechercheTableau.res.oracle
@@ -15,8 +15,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int End = 0; */
 /*@ ghost int Idle = 1; */
 /*@ ghost int WillDoFoo = 0; */
diff --git a/src/plugins/aorai/tests/ya/oracle/test_factorial.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_factorial.res.oracle
index 009f14f70dd..ef459e69225 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_factorial.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_factorial.res.oracle
@@ -11,8 +11,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int S1 = 0; */
 /*@ ghost int S2 = 0; */
 /*@ ghost int main_0 = 1; */
diff --git a/src/plugins/aorai/tests/ya/oracle/test_recursion4.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_recursion4.res.oracle
index cdfe4aba74b..9ff8daac4d0 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_recursion4.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_recursion4.res.oracle
@@ -12,8 +12,8 @@ enum aorai_OpStatusList {
     aorai_Called = 0
 };
 #pragma JessieIntegerModel(math)
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int End = 0; */
 /*@ ghost int Idle = 1; */
 /*@ ghost int WillDoFoo = 0; */
diff --git a/src/plugins/aorai/tests/ya/oracle/test_recursion5.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_recursion5.res.oracle
index bc9334eec11..6510597aa4d 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_recursion5.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_recursion5.res.oracle
@@ -16,8 +16,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int End = 0; */
 /*@ ghost int Idle = 1; */
 /*@ ghost int IgnoreFoo = 0; */
diff --git a/src/plugins/aorai/tests/ya/oracle/test_struct.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_struct.res.oracle
index 0e102ceda96..b73119bb700 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_struct.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_struct.res.oracle
@@ -16,8 +16,8 @@ enum aorai_OpStatusList {
 };
 struct People nobody;
 int myAge = 0;
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int S1 = 0; */
 /*@ ghost int main_0 = 1; */
 /*@ ghost
diff --git a/src/plugins/aorai/yaparser.mly b/src/plugins/aorai/yaparser.mly
index 3a88ed02f8f..699489687f3 100644
--- a/src/plugins/aorai/yaparser.mly
+++ b/src/plugins/aorai/yaparser.mly
@@ -32,7 +32,11 @@ open Logic_ptree
 open Promelaast
 open Bool3
 
-type options = Deterministic | Init of string list | Accept of string list
+type options =
+  | Deterministic
+  | Init of string list
+  | Accept of string list
+  | Observables of string list
 
 let to_seq c =
   [{ condition = Some c;
@@ -104,13 +108,22 @@ let check_state st =
    Aorai_option.abort
     "Error: the state '%s' is used but never defined." st.name
 
-let interpret_option = function
+let interpret_option auto = function
   | Init states ->
-    List.iter set_init_state states
+    List.iter set_init_state states; auto
   | Accept states ->
-    List.iter set_accept_state states
+    List.iter set_accept_state states; auto
   | Deterministic ->
-    Aorai_option.Deterministic.set true
+    Aorai_option.Deterministic.set true; auto
+  | Observables names ->
+    let module Set = Datatype.String.Set in
+    let new_set = Set.of_list names in
+    let observables =
+      match auto.observables with
+      | None -> Some new_set
+      | Some set -> Some (Set.union set new_set)
+    in
+    { auto with observables }
 
 let build_automaton options metavariables trans =
   let htable_to_list table = Hashtbl.fold (fun _ st l -> st :: l) table [] in
@@ -119,15 +132,15 @@ let build_automaton options metavariables trans =
   and metavariables =
     List.fold_left add_metavariable Datatype.String.Map.empty metavariables
   in
-  List.iter interpret_option options;
+  let auto = { states; trans; metavariables; observables = None } in
+  let auto = List.fold_left interpret_option auto options in
   List.iter check_state states;
   if not (List.exists (fun st -> st.init=True) states) then
     Aorai_option.abort "Automaton does not declare an initial state";
   if undefined_states <> [] then
     Aorai_option.abort "Error: the state(s) %a are used but never defined."
       (Pretty_utils.pp_list ~sep:"," Format.pp_print_string) undefined_states;
-  { states; trans; metavariables }
-
+  auto
 
 type pre_cond = Behavior of string | Pre of Promelaast.condition
 
@@ -169,6 +182,7 @@ option
     | "init" -> Init $3
     | "accept" -> Accept $3
     | "deterministic" -> Deterministic
+    | "observables" -> Observables $3
     | _ ->  Aorai_option.abort "unknown option: '%s'" $2
   }
 
-- 
GitLab


From 3b035d24ec7d43b653073e97c8a811b4677344b3 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Fri, 29 Jan 2021 11:47:53 +0100
Subject: [PATCH 025/141] [aorai] update against kernel API change

---
 src/plugins/aorai/aorai_visitors.ml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/plugins/aorai/aorai_visitors.ml b/src/plugins/aorai/aorai_visitors.ml
index 7ceadc22a61..16434bbb772 100644
--- a/src/plugins/aorai/aorai_visitors.ml
+++ b/src/plugins/aorai/aorai_visitors.ml
@@ -119,7 +119,7 @@ class visit_adding_code_for_synchronisation =
     val aux_post_table = Kernel_function.Hashtbl.create 17
 
     method do_fundec fundec loc =
-      let kf = Extlib.the self#current_kf in
+      let kf = Option.get self#current_kf in
       let vi = Kernel_function.get_vi kf in
       let vi_pre = Cil_const.copy_with_new_vid vi in
       vi_pre.vname <- Data_for_aorai.get_fresh (vi_pre.vname ^ "_pre_func");
-- 
GitLab


From 9869b38e82ebe4596a6e6716a8ebcd1b40e409c0 Mon Sep 17 00:00:00 2001
From: Valentin Perrelle <valentin.perrelle@cea.fr>
Date: Tue, 27 Nov 2018 19:33:30 +0100
Subject: [PATCH 026/141] [Aorai] Add an history for Aorai current state
 variable

---
 src/plugins/aorai/aorai_option.ml    | 10 ++++++++++
 src/plugins/aorai/aorai_option.mli   |  2 ++
 src/plugins/aorai/aorai_utils.ml     | 25 +++++++++++++++++++++----
 src/plugins/aorai/data_for_aorai.ml  |  8 +++++++-
 src/plugins/aorai/data_for_aorai.mli |  5 +++--
 5 files changed, 43 insertions(+), 7 deletions(-)

diff --git a/src/plugins/aorai/aorai_option.ml b/src/plugins/aorai/aorai_option.ml
index 1dfe1a0504a..c31e0137a17 100644
--- a/src/plugins/aorai/aorai_option.ml
+++ b/src/plugins/aorai/aorai_option.ml
@@ -160,6 +160,16 @@ module Deterministic=
         let default () = false
      end)
 
+module InstrumentationHistory =
+  Int
+    (struct
+      let option_name = "-aorai-instrumentation-history"
+      let arg_name = "N"
+      let help = "the instrumentation will keep an history of the N last states"
+      let default = 0
+    end)
+
+
 let is_on () =
   not (Ltl_File.is_default () && To_Buchi.is_default () &&
        Buchi.is_default ()    && Ya.is_default () )
diff --git a/src/plugins/aorai/aorai_option.mli b/src/plugins/aorai/aorai_option.mli
index 111cf0e74ea..636b793b218 100644
--- a/src/plugins/aorai/aorai_option.mli
+++ b/src/plugins/aorai/aorai_option.mli
@@ -43,6 +43,8 @@ module AddingOperationNameAndStatusInSpecification: Parameter_sig.Bool
 (** [true] if the user declares that its ya automaton is deterministic. *)
 module Deterministic: State_builder.Ref with type data = bool
 
+module InstrumentationHistory: Parameter_sig.Int
+
 val is_on : unit -> bool
 val promela_file: unit -> Filepath.Normalized.t
 val advance_abstract_interpretation: unit -> bool
diff --git a/src/plugins/aorai/aorai_utils.ml b/src/plugins/aorai/aorai_utils.ml
index 7615b72d83c..9d1f4b36412 100644
--- a/src/plugins/aorai/aorai_utils.ml
+++ b/src/plugins/aorai/aorai_utils.ml
@@ -1132,9 +1132,12 @@ let initGlobals root complete =
 
   mk_global_comment "//* ";
   mk_global_comment "//* States and Trans Variables";
-  if Aorai_option.Deterministic.get () then
-    mk_global_c_var_init curState (getInitialState())
-  else
+  if Aorai_option.Deterministic.get () then begin
+    mk_global_c_var_init curState (getInitialState());
+    let init = getInitialState() (* TODO a distinct initial value for history *)
+    and history = Data_for_aorai.whole_history () in
+    List.iter (fun name -> mk_global_c_var_init name init) history
+  end else
     mk_global_states_init root;
 
   if complete then begin
@@ -2120,6 +2123,20 @@ let auto_func_block generated_kf loc f st status res =
            (Const (Data_for_aorai.func_to_cenum (Kernel_function.get_name f))))
         loc
     ]
+  and stmt_history_update =
+    if Aorai_option.Deterministic.get () then
+      let history = Data_for_aorai.whole_history ()
+      and cur_state = Data_for_aorai.(get_varinfo curState) in
+      let add_stmt (src,acc) dst_name =
+        let dst = Data_for_aorai.get_varinfo dst_name in
+        let stmt = equalsStmt (Cil.var dst) (Cil.evar ~loc src) loc in
+        dst, stmt :: acc
+      in
+      snd (List.fold_left add_stmt (cur_state,[]) history)
+    else if Aorai_option.InstrumentationHistory.get () > 0 then
+      Aorai_option.fatal "history is not implemented for non-deterministic \
+                          automaton"
+    else []
   in
   let new_funcs, local_var, main_stmt =
     if Aorai_option.Deterministic.get() then
@@ -2130,7 +2147,7 @@ let auto_func_block generated_kf loc f st status res =
   let ret = [ Cil.mkStmt ~ghost:true (Cil_types.Return(None,loc)) ] in
   let res_block =
     (Cil.mkBlock
-       ( stmt_begin_list @ main_stmt @ ret))
+       ( stmt_begin_list @ stmt_history_update @ main_stmt @ ret))
   in
   res_block.blocals <- local_var;
   Aorai_option.debug ~dkey "Generated body is:@\n%a"
diff --git a/src/plugins/aorai/data_for_aorai.ml b/src/plugins/aorai/data_for_aorai.ml
index 157f44778f2..f4e4d3a64c0 100644
--- a/src/plugins/aorai/data_for_aorai.ml
+++ b/src/plugins/aorai/data_for_aorai.ml
@@ -177,7 +177,13 @@ let loopInit    = "aorai_Loop_Init"                      (* OK *)
 
 (* C variables *)
 let curState    = "aorai_CurStates"                      (* OK *)
-let curStateOld = "aorai_CurStates_old"                  (* OK *)
+let history n   = "aorai_StatesHistory_" ^ string_of_int n (* OK *)
+let whole_history () =
+  let rec aux acc n =
+    if n > 0 then aux (history n :: acc) (n - 1) else acc
+  in
+  aux [] (Aorai_option.InstrumentationHistory.get ())
+
 let curTrans    = "aorai_CurTrans"                       (* OK *)
 (*let curTransTmp = "aorai_CurTrans_tmp"                   (* OK *)*)
 let curOp       = "aorai_CurOperation"                   (* OK *)
diff --git a/src/plugins/aorai/data_for_aorai.mli b/src/plugins/aorai/data_for_aorai.mli
index 786ca7217fb..b5869d06117 100644
--- a/src/plugins/aorai/data_for_aorai.mli
+++ b/src/plugins/aorai/data_for_aorai.mli
@@ -130,8 +130,9 @@ val curOpStatus  : string
 (** Name of curState C generated variable (Table of states that can be synchronized with the program) *)
 val curState     : string
 
-(** Name of curStateOld C generated variable (Last value of curState) *)
-val curStateOld  : string
+(** Name of the history variables (History of previous states) *)
+val history  : int -> string
+val whole_history  : unit -> string list
 
 (** Name of curTrans C generated variable (Last transitions that can be crossed) *)
 val curTrans     : string
-- 
GitLab


From bb5ffaeb457fc70bff055054fe4093f268bc0e8c Mon Sep 17 00:00:00 2001
From: Valentin Perrelle <valentin.perrelle@cea.fr>
Date: Tue, 18 Dec 2018 14:22:58 +0100
Subject: [PATCH 027/141] [Aorai] Simplify the smart constructors handling
 global variables

- use more Cil smart constructors
- use an optional parameter for global variable initial values
- factorisation of common code
---
 src/plugins/aorai/aorai_utils.ml | 78 ++++++++++++--------------------
 1 file changed, 28 insertions(+), 50 deletions(-)

diff --git a/src/plugins/aorai/aorai_utils.ml b/src/plugins/aorai/aorai_utils.ml
index 9d1f4b36412..274932dd15c 100644
--- a/src/plugins/aorai/aorai_utils.ml
+++ b/src/plugins/aorai/aorai_utils.ml
@@ -674,46 +674,28 @@ let flush_globals () =
   Kernel_function.clear_sid_info ();
   globals_queue := []
 
-let mk_global glob = globals_queue := glob :: !globals_queue
+let add_global glob = globals_queue := glob :: !globals_queue
 
 (* Utilities for global variables *)
-let mk_global_c_initialized_vars name ty ini=
-  let vi = (Cil.makeGlobalVar name ty) in
-  vi.vghost<-true;
-  mk_global (GVar(vi,ini,vi.vdecl));
-  Globals.Vars.add vi ini;
-  set_varinfo name vi
-
-let mk_global_var_init vi ini =
-  vi.vghost<-true;
-  mk_global (GVar(vi,ini,vi.vdecl));
-  Globals.Vars.add vi ini;
+let add_gvar ?init vi =
+  let initinfo = {Cil_types.init} in
+  vi.vghost <- true;
+  add_global (GVar(vi,initinfo,vi.vdecl));
+  Globals.Vars.add vi initinfo;
   set_varinfo vi.vname vi
 
-let mk_global_var vi =
-  let ini =
-    {Cil_types.init=Some(Cil.makeZeroInit ~loc:(CurrentLoc.get()) vi.vtype)}
-  in
-  mk_global_var_init vi ini
+let add_gvar_zeroinit vi =
+  add_gvar ~init:(Cil.makeZeroInit ~loc:(CurrentLoc.get()) vi.vtype) vi
 
-let mk_global_c_var_init name init =
-  let ty = Cil.typeOf init in
+let mk_gvar ?init ~ty name =
   let vi = Cil.makeGlobalVar name ty in
-  vi.vghost <- true;
-  let ini = { Cil_types.init = Some(SingleInit init) } in
-  mk_global(GVar(vi,ini,vi.vdecl));
-  Globals.Vars.add vi ini;
-  set_varinfo name vi
-
-let mk_int_const value =
-  new_exp
-    ~loc:(CurrentLoc.get())
-    (Const(
-        CInt64(
-          Integer.of_int (value),
-          IInt,
-          Some(string_of_int(value))
-        )))
+  add_gvar ?init vi
+
+let mk_gvar_scalar ~init ?(ty = Cil.typeOf init) name =
+  mk_gvar ~init:(SingleInit init) ~ty name
+
+let mk_integer value =
+  Cil.integer ~loc:(CurrentLoc.get()) value
 
 (* Utilities for global enumerations *)
 let mk_global_c_enum_type_tagged name elements_l =
@@ -730,14 +712,14 @@ let mk_global_c_enum_type_tagged name elements_l =
       (fun (e,i) ->
          { eiorig_name = e;
            einame = e;
-           eival = mk_int_const i;
+           eival = mk_integer i;
            eiloc = Location.unknown;
            eihost = einfo})
       elements_l
   in
   einfo.eitems <- l;
   set_usedinfo name einfo;
-  mk_global (GEnumTag(einfo, Location.unknown));
+  add_global (GEnumTag(einfo, Location.unknown));
   einfo
 
 let mk_global_c_enum_type name elements =
@@ -747,12 +729,8 @@ let mk_global_c_enum_type name elements =
   (* no need to rev the list, as the elements got their value already *)
   ignore (mk_global_c_enum_type_tagged name elements)
 
-let mk_global_c_initialized_enum name name_enuminfo ini =
-  mk_global_c_initialized_vars name (TEnum(get_usedinfo name_enuminfo,[])) ini
-
-let mk_global_c_enum name name_enuminfo =
-  let init = {Cil_types.init=None} in
-  mk_global_c_initialized_enum name name_enuminfo init
+let mk_gvar_enum ?init name name_enuminfo =
+  mk_gvar ?init ~ty:(TEnum(get_usedinfo name_enuminfo,[])) name
 
 
 (* ************************************************************************* *)
@@ -885,7 +863,7 @@ let is_out_of_state_exp state loc =
 
 (* Utilities for other globals *)
 
-let mk_global_comment txt = mk_global (GText (txt))
+let mk_global_comment txt = add_global (GText (txt))
 
 (* ************************************************************************* *)
 (** {b Initialization management / computation} *)
@@ -905,7 +883,7 @@ let mk_global_states_init root =
        in
        let init = SingleInit init in
        let var = Data_for_aorai.get_state_var state in
-       mk_global_var_init var { Cil_types.init = Some init})
+       add_gvar ~init var)
     states
 
 class visit_decl_loops_init () =
@@ -1126,17 +1104,17 @@ let initGlobals root complete =
     (List.map
        (fun kf -> func_to_op_func (Kernel_function.get_name kf))
        (getObservablesFunctions() @ getIgnoredFunctions()));
-  mk_global_c_enum curOp listOp;
+  mk_gvar_enum curOp listOp;
   mk_global_c_enum_type  listStatus (callStatus::[termStatus]);
-  mk_global_c_enum curOpStatus listStatus;
+  mk_gvar_enum curOpStatus listStatus;
 
   mk_global_comment "//* ";
   mk_global_comment "//* States and Trans Variables";
   if Aorai_option.Deterministic.get () then begin
-    mk_global_c_var_init curState (getInitialState());
+    mk_gvar_scalar ~init:(getInitialState()) curState;
     let init = getInitialState() (* TODO a distinct initial value for history *)
     and history = Data_for_aorai.whole_history () in
-    List.iter (fun name -> mk_global_c_var_init name init) history
+    List.iter (fun name -> mk_gvar_scalar ~init name) history
   end else
     mk_global_states_init root;
 
@@ -1150,14 +1128,14 @@ let initGlobals root complete =
   mk_global_comment "//****************** ";
   mk_global_comment "//* Auxiliary variables used in transition conditions";
   mk_global_comment "//*";
-  List.iter mk_global_var (Data_for_aorai.aux_variables());
+  List.iter add_gvar_zeroinit (Data_for_aorai.aux_variables());
 
   let auto = Data_for_aorai.getAutomata () in
   mk_global_comment "//* ";
   mk_global_comment "//****************** ";
   mk_global_comment "//* Metavariables";
   mk_global_comment "//*";
-  Datatype.String.Map.iter (fun _ -> mk_global_var) auto.metavariables;
+  Datatype.String.Map.iter (fun _ -> add_gvar_zeroinit) auto.metavariables;
 
   if Aorai_option.Deterministic.get () then begin
     (* must flush now previous globals which are used in the lemmas in order to
-- 
GitLab


From feaa6b09d9aadffd552736e00543d0309d3eabeb Mon Sep 17 00:00:00 2001
From: Valentin Perrelle <valentin.perrelle@cea.fr>
Date: Tue, 18 Dec 2018 15:28:11 +0100
Subject: [PATCH 028/141] [Aorai] Add aorai.h header file to be able to
 Frama_C_show_each states variables.

---
 Makefile                               |  2 +-
 headers/header_spec.txt                |  1 +
 share/libc/aorai/aorai.h               | 33 ++++++++++++++++++++++++++
 src/plugins/aorai/aorai_utils.ml       | 15 +++++++++++-
 tests/libc/oracle/fc_libc.2.res.oracle |  1 +
 tests/libc/oracle/fc_libc.5.res.oracle |  1 +
 6 files changed, 51 insertions(+), 2 deletions(-)
 create mode 100644 share/libc/aorai/aorai.h

diff --git a/Makefile b/Makefile
index 0f4ac62279f..930b19a61c5 100644
--- a/Makefile
+++ b/Makefile
@@ -191,7 +191,7 @@ THEME_ICONS_FLAT:= \
   $(addprefix share/theme/flat/,$(THEME_ICON_NAMES))
 
 ROOT_LIBC_DIR:= share/libc
-LIBC_SUBDIRS:= sys netinet net arpa
+LIBC_SUBDIRS:= sys netinet net arpa aorai
 LIBC_DIR:= $(ROOT_LIBC_DIR) $(addprefix $(ROOT_LIBC_DIR)/,$(LIBC_SUBDIRS))
 LIBC_FILES:= \
 	$(wildcard share/*.h share/*.c) \
diff --git a/headers/header_spec.txt b/headers/header_spec.txt
index d1b383e76b2..69a036f5610 100644
--- a/headers/header_spec.txt
+++ b/headers/header_spec.txt
@@ -208,6 +208,7 @@ share/libc/__fc_runtime.c: CEA_LGPL
 share/libc/__fc_select.h: CEA_LGPL
 share/libc/__fc_string_axiomatic.h: CEA_LGPL
 share/libc/alloca.h: CEA_LGPL
+share/libc/aorai/aorai.h: CEA_LGPL
 share/libc/arpa/inet.h: CEA_LGPL
 share/libc/assert.c: CEA_LGPL
 share/libc/assert.h: CEA_LGPL
diff --git a/share/libc/aorai/aorai.h b/share/libc/aorai/aorai.h
new file mode 100644
index 00000000000..b2f5eeb733f
--- /dev/null
+++ b/share/libc/aorai/aorai.h
@@ -0,0 +1,33 @@
+/**************************************************************************/
+/*                                                                        */
+/*  This file is part of Frama-C.                                         */
+/*                                                                        */
+/*  Copyright (C) 2007-2020                                               */
+/*    CEA (Commissariat à l'énergie atomique et aux énergies              */
+/*         alternatives)                                                  */
+/*                                                                        */
+/*  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).            */
+/*                                                                        */
+/**************************************************************************/
+
+#ifndef __FC_AORAI
+#define __FC_AORAI
+
+/*@ ghost extern int aorai_CurStates; */
+/*@ ghost extern int aorai_StatesHistory1; */
+/*@ ghost extern int aorai_StatesHistory2; */
+/*@ ghost extern int aorai_StatesHistory3; */
+/*@ ghost extern int aorai_StatesHistory4; */
+
+
+#endif
diff --git a/src/plugins/aorai/aorai_utils.ml b/src/plugins/aorai/aorai_utils.ml
index 274932dd15c..14530aceb21 100644
--- a/src/plugins/aorai/aorai_utils.ml
+++ b/src/plugins/aorai/aorai_utils.ml
@@ -680,6 +680,7 @@ let add_global glob = globals_queue := glob :: !globals_queue
 let add_gvar ?init vi =
   let initinfo = {Cil_types.init} in
   vi.vghost <- true;
+  vi.vstorage <- NoStorage;
   add_global (GVar(vi,initinfo,vi.vdecl));
   Globals.Vars.add vi initinfo;
   set_varinfo vi.vname vi
@@ -688,7 +689,19 @@ let add_gvar_zeroinit vi =
   add_gvar ~init:(Cil.makeZeroInit ~loc:(CurrentLoc.get()) vi.vtype) vi
 
 let mk_gvar ?init ~ty name =
-  let vi = Cil.makeGlobalVar name ty in
+  (* See if the variable is already declared *)
+  let vi =
+    try
+      let ty' = typeAddAttributes [Attr ("ghost", [])] ty in
+      let vi = Globals.Vars.find_from_astinfo name VGlobal in
+      if not (Cil_datatype.Typ.equal vi.vtype ty') then
+        Aorai_option.abort "Global %s is declared with type %a instead of %a"
+          name Cil_printer.pp_typ vi.vtype Cil_printer.pp_typ ty';
+      Globals.Vars.remove vi;
+      vi
+    with Not_found ->
+      Cil.makeGlobalVar name ty
+  in
   add_gvar ?init vi
 
 let mk_gvar_scalar ~init ?(ty = Cil.typeOf init) name =
diff --git a/tests/libc/oracle/fc_libc.2.res.oracle b/tests/libc/oracle/fc_libc.2.res.oracle
index b1e1247a436..852a3378808 100644
--- a/tests/libc/oracle/fc_libc.2.res.oracle
+++ b/tests/libc/oracle/fc_libc.2.res.oracle
@@ -42,6 +42,7 @@ skipping share/libc/__fc_machdep_linux_shared.h
 [kernel] Parsing share/libc/__fc_select.h (with preprocessing)
 [kernel] Parsing share/libc/__fc_string_axiomatic.h (with preprocessing)
 [kernel] Parsing share/libc/alloca.h (with preprocessing)
+[kernel] Parsing share/libc/aorai/aorai.h (with preprocessing)
 [kernel] Parsing share/libc/arpa/inet.h (with preprocessing)
 [kernel] Parsing share/libc/assert.h (with preprocessing)
 [kernel] Parsing share/libc/byteswap.h (with preprocessing)
diff --git a/tests/libc/oracle/fc_libc.5.res.oracle b/tests/libc/oracle/fc_libc.5.res.oracle
index 73dac90425a..3c89feea03b 100644
--- a/tests/libc/oracle/fc_libc.5.res.oracle
+++ b/tests/libc/oracle/fc_libc.5.res.oracle
@@ -1 +1,2 @@
 #include "__fc_integer.h"
+#include "aorai/aorai.h"
-- 
GitLab


From e58f880c55236ec8a0778ffe3386a03b4ba41583 Mon Sep 17 00:00:00 2001
From: Valentin Perrelle <valentin.perrelle@cea.fr>
Date: Thu, 6 Dec 2018 18:10:09 +0100
Subject: [PATCH 029/141] [Aorai] Add an option to not generate ACSL
 annotations

- Remove unused Output_Spec
- Add GenerateAnnotations and GenerateDeterministicLemmas
  true by default to preserve default behavior
- Move change_formals and change_result classes higher in the
  file to apply them as soon as possible in the pre/post generation
  phase
- This last step ensures that add_pre_post_from_buch actually only deals
  with specification, it is not responsible for remapping formals and
  return value anymore
- Now add_pre_post_from_buch can safely be disabled when
  GenerateAnnotations is false
---
 src/kernel_services/ast_queries/cil.ml |  2 +-
 src/plugins/aorai/aorai_option.ml      | 31 ++++++----
 src/plugins/aorai/aorai_option.mli     |  3 +-
 src/plugins/aorai/aorai_register.ml    | 12 ++--
 src/plugins/aorai/aorai_utils.ml       |  3 +-
 src/plugins/aorai/aorai_visitors.ml    | 78 +++++++++++++-------------
 6 files changed, 73 insertions(+), 56 deletions(-)

diff --git a/src/kernel_services/ast_queries/cil.ml b/src/kernel_services/ast_queries/cil.ml
index b8d33a9ece3..e60f431c9a2 100644
--- a/src/kernel_services/ast_queries/cil.ml
+++ b/src/kernel_services/ast_queries/cil.ml
@@ -665,7 +665,7 @@ let update_var_type v t =
   v.vtype <- if v.vghost then typeAddGhost t else t;
   match v.vlogic_var_assoc with
   | None -> ()
-  | Some lv -> lv.lv_type <- Ctype t
+  | Some lv -> lv.lv_type <- Ctype v.vtype
 
 (* Make a varinfo. Used mostly as a helper function below  *)
 let makeVarinfo
diff --git a/src/plugins/aorai/aorai_option.ml b/src/plugins/aorai/aorai_option.ml
index c31e0137a17..2bcf7c8129b 100644
--- a/src/plugins/aorai/aorai_option.ml
+++ b/src/plugins/aorai/aorai_option.ml
@@ -73,14 +73,6 @@ module Ya =
                    (in Ya language) from file <f>."
      end)
 
-
-module Output_Spec =
-  False(struct
-          let option_name = "-aorai-show-op-spec"
-          let help =
-            "displays computed pre and post-condition of each operation"
-        end)
-
 module Output_C_File =
   Filepath
     (struct
@@ -122,6 +114,21 @@ module Axiomatization =
          let help = "if set, does not axiomatize automata"
        end)
 
+module GenerateAnnotations =
+  True
+    (struct
+      let option_name = "-aorai-generate-annotations"
+      let help = "generate computed ACSL annotations for the program"
+    end)
+
+module GenerateDeterministicLemmas =
+  True
+    (struct
+      let option_name = "-aorai-generate-deterministic-lemmas"
+      let help = "generate lemmas to be proven in order to prove that an \
+                  automaton is indeed deterministic"
+    end)
+
 module ConsiderAcceptance =
   False(struct
          let option_name = "-aorai-acceptance"
@@ -186,11 +193,15 @@ let emitter =
     [ Emitter.Code_annot; Emitter.Funspec; Emitter.Global_annot ] 
     ~correctness:
     [ Ltl_File.parameter; To_Buchi.parameter; Buchi.parameter;
-      Ya.parameter; Axiomatization.parameter; ConsiderAcceptance.parameter;
+      Ya.parameter; Axiomatization.parameter;
+      ConsiderAcceptance.parameter;
       AutomataSimplification.parameter ]
     ~tuning:
     [ AbstractInterpretation.parameter;
-      AddingOperationNameAndStatusInSpecification.parameter ]
+      AddingOperationNameAndStatusInSpecification.parameter;
+      InstrumentationHistory.parameter;
+      GenerateAnnotations.parameter ]
+
 
 (*
   Local Variables:
diff --git a/src/plugins/aorai/aorai_option.mli b/src/plugins/aorai/aorai_option.mli
index 636b793b218..79482fd5f3b 100644
--- a/src/plugins/aorai/aorai_option.mli
+++ b/src/plugins/aorai/aorai_option.mli
@@ -29,12 +29,13 @@ module Ltl_File: Parameter_sig.Filepath
 module To_Buchi: Parameter_sig.Filepath
 module Buchi: Parameter_sig.Filepath
 module Ya: Parameter_sig.Filepath
-module Output_Spec: Parameter_sig.Bool
 module Output_C_File: Parameter_sig.Filepath
 module Dot: Parameter_sig.Bool
 module DotSeparatedLabels: Parameter_sig.Bool
 module AbstractInterpretation: Parameter_sig.Bool
 module Axiomatization: Parameter_sig.Bool
+module GenerateAnnotations: Parameter_sig.Bool
+module GenerateDeterministicLemmas: Parameter_sig.Bool
 module ConsiderAcceptance: Parameter_sig.Bool
 module AutomataSimplification: Parameter_sig.Bool
 module Test: Parameter_sig.Int
diff --git a/src/plugins/aorai/aorai_register.ml b/src/plugins/aorai/aorai_register.ml
index d60095bb840..3c9e51b03d5 100644
--- a/src/plugins/aorai/aorai_register.ml
+++ b/src/plugins/aorai/aorai_register.ml
@@ -323,7 +323,8 @@ let work () =
 
       (*let _ = Path_analysis.test (Data_for_aorai.getAutomata())in*)
       let root = fst (Globals.entry_point ()) in
-      if (Aorai_option.Axiomatization.get()) then
+      let axiomatization = Aorai_option.Axiomatization.get() in
+      if axiomatization then
         begin
             (* Step 5 : incrementing pre/post
                conditions with states and transitions information *)
@@ -350,10 +351,11 @@ let work () =
           if automaton_has_states then begin
             (* Step 7 : Labeling abstract file *)
             (* Finally the information is added into the Cil automata. *)
-            Aorai_utils.initGlobals root (Aorai_option.Axiomatization.get());
+            Aorai_utils.initGlobals root axiomatization;
             Aorai_visitors.add_sync_with_buch file;
-            Aorai_visitors.add_pre_post_from_buch file
-              (Aorai_option.advance_abstract_interpretation ());
+            if Aorai_option.GenerateAnnotations.get () then
+              Aorai_visitors.add_pre_post_from_buch file
+                (Aorai_option.advance_abstract_interpretation ());
             printverb "Annotation of Cil      : done\n";
           end
         end
@@ -372,7 +374,7 @@ let work () =
 
             (* Step 7 : Labeling abstract file *)
             (* Finally the information is added into the Cil automata. *)
-          Aorai_utils.initGlobals root (Aorai_option.Axiomatization.get());
+          Aorai_utils.initGlobals root axiomatization;
           Aorai_visitors.add_sync_with_buch file;
           printverb "Annotation of Cil      : partial\n"
         end;
diff --git a/src/plugins/aorai/aorai_utils.ml b/src/plugins/aorai/aorai_utils.ml
index 14530aceb21..7f31429c31e 100644
--- a/src/plugins/aorai/aorai_utils.ml
+++ b/src/plugins/aorai/aorai_utils.ml
@@ -1150,7 +1150,8 @@ let initGlobals root complete =
   mk_global_comment "//*";
   Datatype.String.Map.iter (fun _ -> add_gvar_zeroinit) auto.metavariables;
 
-  if Aorai_option.Deterministic.get () then begin
+  if Aorai_option.Deterministic.get () &&
+     Aorai_option.GenerateDeterministicLemmas.get () then begin
     (* must flush now previous globals which are used in the lemmas in order to
        be able to put these last ones in the right places in the AST. *)
     flush_globals ();
diff --git a/src/plugins/aorai/aorai_visitors.ml b/src/plugins/aorai/aorai_visitors.ml
index 16434bbb772..d5bbcfd954e 100644
--- a/src/plugins/aorai/aorai_visitors.ml
+++ b/src/plugins/aorai/aorai_visitors.ml
@@ -105,6 +105,43 @@ let mk_post_fct_block kf_post kf res =
     (Data_for_aorai.get_kf_return_state kf)
     res
 
+(* update from formals of original C function to one of the auxiliary
+   function (f_aux or f_pre)
+*)
+class change_formals old_kf new_kf =
+  let old_formals = Kernel_function.get_formals old_kf in
+  let new_formals = Kernel_function.get_formals new_kf in
+  let formals = List.combine old_formals new_formals in
+  object
+    inherit Visitor.frama_c_inplace
+    method! vlogic_var_use lv =
+      match lv.lv_origin with
+      | None -> SkipChildren
+      | Some vi ->
+        try
+          let vi'= List.assq vi formals in
+          ChangeTo (Cil.cvar_to_lvar vi')
+        with Not_found -> SkipChildren
+
+    method! vvrbl vi =
+      try
+        let vi' = List.assq vi formals in
+        ChangeTo vi'
+      with Not_found -> SkipChildren
+  end
+
+(* update \result to param of f_post when it exists. Must not be called if
+   f_post has no parameter (original f returns void). *)
+class change_result new_kf =
+  let v = List.hd (Kernel_function.get_formals new_kf) in
+  object
+    inherit Visitor.frama_c_inplace
+    method! vterm_lhost lh =
+      match lh with
+        TResult _ -> ChangeTo (TVar (Cil.cvar_to_lvar v))
+      | _ -> DoChildren
+  end
+
 (**
    This visitor adds an auxiliary function for each C function which takes
    care of setting the automaton in a correct state before calling the
@@ -171,8 +208,9 @@ class visit_adding_code_for_synchronisation =
         mk_post_fct_block
           kf_post kf (Extlib.opt_of_list fun_dec_post.sformals)
       in
+      let vis = new change_formals kf kf_pre in (* Replace original formals *)
       fun_dec_pre.slocals <- pre_locals;
-      fun_dec_pre.sbody <- pre_block;
+      fun_dec_pre.sbody <- Visitor.visitFramacBlock vis pre_block;
       fun_dec_pre.svar.vdefined <- true;
       fun_dec_post.slocals <- post_locals;
       fun_dec_post.sbody <- post_block;
@@ -244,42 +282,7 @@ class visit_adding_code_for_synchronisation =
 
 (*********************************************************************)
 
-(* update from formals of original C function to one of the auxiliary
-   function (f_aux or f_pre)
-*)
-class change_formals old_kf new_kf =
-  let old_formals = Kernel_function.get_formals old_kf in
-  let new_formals = Kernel_function.get_formals new_kf in
-  let formals = List.combine old_formals new_formals in
-  object
-    inherit Visitor.frama_c_inplace
-    method! vlogic_var_use lv =
-      match lv.lv_origin with
-      | None -> SkipChildren
-      | Some vi ->
-        try
-          let vi'= List.assq vi formals in
-          ChangeTo (Cil.cvar_to_lvar vi')
-        with Not_found -> SkipChildren
-
-    method! vvrbl vi =
-      try
-        let vi' = List.assq vi formals in
-        ChangeTo vi'
-      with Not_found -> SkipChildren
-  end
 
-(* update \result to param of f_post when it exists. Must not be called if
-   f_post has no parameter (original f returns void). *)
-class change_result new_kf =
-  let v = List.hd (Kernel_function.get_formals new_kf) in
-  object
-    inherit Visitor.frama_c_inplace
-    method! vterm_lhost lh =
-      match lh with
-        TResult _ -> ChangeTo (TVar (Cil.cvar_to_lvar v))
-      | _ -> DoChildren
-  end
 
 let post_treatment_loops = Hashtbl.create 97
 
@@ -945,7 +948,7 @@ class visit_adding_pre_post_from_buch treatloops =
 
     method! vglob_aux g =
       match g with
-      | GFun(f,_)  ->
+      | GFun _ ->
         let my_kf = Option.get self#current_kf in
         (* don't use get_spec, as we'd generate default assigns,
            while we'll fill the spec just below. *)
@@ -959,7 +962,6 @@ class visit_adding_pre_post_from_buch treatloops =
              Visitor.visitFramacBehaviors vis bhvs
            in
            Annotations.add_behaviors Aorai_option.emitter my_kf bhvs;
-           f.sbody <- Visitor.visitFramacBlock vis f.sbody;
            SkipChildren
          | Post_func kf ->
            (* must advance the automaton according to return event. *)
-- 
GitLab


From f4e23690d20d28b611e2ba9675b81a3d337cccda Mon Sep 17 00:00:00 2001
From: Valentin Perrelle <valentin.perrelle@cea.fr>
Date: Wed, 18 Nov 2020 19:43:24 +0100
Subject: [PATCH 030/141] [Aorai] Use Eva as an optional dependency

---
 headers/header_spec.txt                       |  3 +++
 src/plugins/aorai/.gitignore                  |  1 +
 src/plugins/aorai/Makefile.in                 | 26 ++++++++++++++++++-
 .../aorai/aorai_eva_analysis.disabled.ml      | 26 +++++++++++++++++++
 .../aorai/aorai_eva_analysis.enabled.ml       | 26 +++++++++++++++++++
 src/plugins/aorai/aorai_eva_analysis.mli      | 26 +++++++++++++++++++
 src/plugins/aorai/aorai_register.ml           |  1 +
 7 files changed, 108 insertions(+), 1 deletion(-)
 create mode 100644 src/plugins/aorai/aorai_eva_analysis.disabled.ml
 create mode 100644 src/plugins/aorai/aorai_eva_analysis.enabled.ml
 create mode 100644 src/plugins/aorai/aorai_eva_analysis.mli

diff --git a/headers/header_spec.txt b/headers/header_spec.txt
index 69a036f5610..06b913c3cc7 100644
--- a/headers/header_spec.txt
+++ b/headers/header_spec.txt
@@ -718,6 +718,9 @@ src/plugins/aorai/VERSIONS.txt: .ignore
 src/plugins/aorai/YA.README: .ignore
 src/plugins/aorai/aorai_dataflow.ml: AORAI_LGPL
 src/plugins/aorai/aorai_dataflow.mli: AORAI_LGPL
+src/plugins/aorai/aorai_eva_analysis.disabled.ml: AORAI_LGPL
+src/plugins/aorai/aorai_eva_analysis.enabled.ml: AORAI_LGPL
+src/plugins/aorai/aorai_eva_analysis.mli: AORAI_LGPL
 src/plugins/aorai/aorai_graph.ml: AORAI_LGPL
 src/plugins/aorai/aorai_graph.mli: AORAI_LGPL
 src/plugins/aorai/aorai_metavariables.ml: AORAI_LGPL
diff --git a/src/plugins/aorai/.gitignore b/src/plugins/aorai/.gitignore
index dbc3d247b66..6e2440c7d50 100644
--- a/src/plugins/aorai/.gitignore
+++ b/src/plugins/aorai/.gitignore
@@ -1,4 +1,5 @@
 /tests/ptests_config
+/aorai_eva_analysis.ml
 /Makefile
 /ltllexer.ml
 /ltlparser.ml
diff --git a/src/plugins/aorai/Makefile.in b/src/plugins/aorai/Makefile.in
index c39a616ce7e..dfb9ab78cc8 100644
--- a/src/plugins/aorai/Makefile.in
+++ b/src/plugins/aorai/Makefile.in
@@ -41,6 +41,7 @@ PLUGIN_DIR ?=.
 PLUGIN_ENABLE:=@ENABLE_AORAI@
 PLUGIN_NAME:=Aorai
 PLUGIN_GENERATED:= $(addprefix ${PLUGIN_DIR}/, \
+		aorai_eva_analysis.ml \
 		promelalexer_withexps.ml promelaparser_withexps.ml \
 		promelaparser_withexps.mli \
 		promelalexer.ml promelaparser.ml promelaparser.mli \
@@ -67,13 +68,36 @@ PLUGIN_CMO:= bool3 \
 	promelalexer_withexps \
 	aorai_dataflow \
 	aorai_visitors \
+	aorai_eva_analysis \
 	aorai_register
 PLUGIN_CMI:= ltlast promelaast
 
 PLUGIN_DISTRIBUTED:=$(PLUGIN_ENABLE)
-PLUGIN_DISTRIB_EXTERNAL:= Makefile.in configure.ac configure
+PLUGIN_DISTRIB_EXTERNAL:= \
+	aorai_eva_analysis.enabled.ml aorai_eva_analysis.disabled.ml \
+	Makefile.in configure.ac configure
 PLUGIN_HAS_EXT_DOC:=no # [JS 2010/07/28] was 'yes'
                        # but prevent 'make src-distrib to work
+PLUGIN_DEPENDENCIES:=
+	
+# Dynamic dependencies
+
+$(PLUGIN_DIR)/aorai_eva_analysis.ml:
+	$(PRINT_MAKING) $@
+	$(CP) $< $@
+	$(CHMOD_RO) $@
+
+ifneq "$(ENABLE_EVA)" "no"
+PLUGIN_DEPENDENCIES+= Eva
+$(PLUGIN_DIR)/aorai_eva_analysis.ml: $(PLUGIN_DIR)/aorai_eva_analysis.enabled.ml
+else
+$(PLUGIN_DIR)/aorai_eva_analysis.ml: $(PLUGIN_DIR)/aorai_eva_analysis.disabled.ml
+endif
+
+$(PLUGIN_DIR)/aorai_eva_analysis.ml: $(PLUGIN_DIR)/Makefile share/Makefile.config
+
+
+# Tests
 
 # aorai_ya can always be run
 PLUGIN_TESTS_DIRS:=ya
diff --git a/src/plugins/aorai/aorai_eva_analysis.disabled.ml b/src/plugins/aorai/aorai_eva_analysis.disabled.ml
new file mode 100644
index 00000000000..b17dd3dae1b
--- /dev/null
+++ b/src/plugins/aorai/aorai_eva_analysis.disabled.ml
@@ -0,0 +1,26 @@
+(**************************************************************************)
+(*                                                                        *)
+(*  This file is part of Aorai plug-in of Frama-C.                        *)
+(*                                                                        *)
+(*  Copyright (C) 2007-2020                                               *)
+(*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
+(*         alternatives)                                                  *)
+(*    INRIA (Institut National de Recherche en Informatique et en         *)
+(*           Automatique)                                                 *)
+(*    INSA  (Institut National des Sciences Appliquees)                   *)
+(*                                                                        *)
+(*  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).            *)
+(*                                                                        *)
+(**************************************************************************)
+
+let setup () = ()
diff --git a/src/plugins/aorai/aorai_eva_analysis.enabled.ml b/src/plugins/aorai/aorai_eva_analysis.enabled.ml
new file mode 100644
index 00000000000..b17dd3dae1b
--- /dev/null
+++ b/src/plugins/aorai/aorai_eva_analysis.enabled.ml
@@ -0,0 +1,26 @@
+(**************************************************************************)
+(*                                                                        *)
+(*  This file is part of Aorai plug-in of Frama-C.                        *)
+(*                                                                        *)
+(*  Copyright (C) 2007-2020                                               *)
+(*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
+(*         alternatives)                                                  *)
+(*    INRIA (Institut National de Recherche en Informatique et en         *)
+(*           Automatique)                                                 *)
+(*    INSA  (Institut National des Sciences Appliquees)                   *)
+(*                                                                        *)
+(*  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).            *)
+(*                                                                        *)
+(**************************************************************************)
+
+let setup () = ()
diff --git a/src/plugins/aorai/aorai_eva_analysis.mli b/src/plugins/aorai/aorai_eva_analysis.mli
new file mode 100644
index 00000000000..8f6790f45f5
--- /dev/null
+++ b/src/plugins/aorai/aorai_eva_analysis.mli
@@ -0,0 +1,26 @@
+(**************************************************************************)
+(*                                                                        *)
+(*  This file is part of Aorai plug-in of Frama-C.                        *)
+(*                                                                        *)
+(*  Copyright (C) 2007-2020                                               *)
+(*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
+(*         alternatives)                                                  *)
+(*    INRIA (Institut National de Recherche en Informatique et en         *)
+(*           Automatique)                                                 *)
+(*    INSA  (Institut National des Sciences Appliquees)                   *)
+(*                                                                        *)
+(*  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).            *)
+(*                                                                        *)
+(**************************************************************************)
+
+val setup : unit -> unit
diff --git a/src/plugins/aorai/aorai_register.ml b/src/plugins/aorai/aorai_register.ml
index 3c9e51b03d5..6bd2ed39407 100644
--- a/src/plugins/aorai/aorai_register.ml
+++ b/src/plugins/aorai/aorai_register.ml
@@ -356,6 +356,7 @@ let work () =
             if Aorai_option.GenerateAnnotations.get () then
               Aorai_visitors.add_pre_post_from_buch file
                 (Aorai_option.advance_abstract_interpretation ());
+            Aorai_eva_analysis.setup ();
             printverb "Annotation of Cil      : done\n";
           end
         end
-- 
GitLab


From e00de35e282943bf3fd8b07f23daa21f72281390 Mon Sep 17 00:00:00 2001
From: Valentin Perrelle <valentin.perrelle@cea.fr>
Date: Tue, 18 Dec 2018 16:08:32 +0100
Subject: [PATCH 031/141] [Aorai] Generate slevel annotations

- Isolate all auxiliary functions registring/finding/iterating
  operations in their own module
---
 .../aorai/aorai_eva_analysis.enabled.ml       | 16 ++++-
 src/plugins/aorai/aorai_visitors.ml           | 72 +++++++++++--------
 .../aorai/tests/ltl/oracle/goto.res.oracle    |  8 +++
 .../tests/ltl/oracle/test_boucle.res.oracle   |  6 ++
 .../tests/ltl/oracle/test_boucle1.res.oracle  |  6 ++
 .../tests/ltl/oracle/test_boucle2.res.oracle  |  6 ++
 .../tests/ltl/oracle/test_boucle3.res.oracle  |  6 ++
 .../ltl/oracle/test_factorial.res.oracle      |  6 ++
 .../ltl/oracle/test_recursion1.res.oracle     |  6 ++
 .../ltl/oracle/test_recursion2.0.res.oracle   |  6 ++
 .../ltl/oracle/test_recursion2.1.res.oracle   |  6 ++
 .../tests/ltl/oracle/test_switch2.res.oracle  |  8 +++
 .../tests/ltl/oracle/test_switch3.res.oracle  |  6 ++
 .../test_switch3_et_recursion.res.oracle      |  6 ++
 .../ltl/oracle/test_switch3_if.res.oracle     |  6 ++
 .../ltl/oracle/test_switch3_return.res.oracle |  6 ++
 .../ltl/oracle_prove/test_boucle.res.oracle   |  2 +-
 .../tests/ya/oracle/assigns.0.res.oracle      |  4 ++
 .../tests/ya/oracle/assigns.1.res.oracle      |  4 ++
 .../tests/ya/oracle/bts1289.0.res.oracle      |  4 ++
 .../tests/ya/oracle/bts1289.1.res.oracle      |  4 ++
 .../ya/oracle/declared_function.res.oracle    |  2 +
 .../tests/ya/oracle/deterministic.res.oracle  |  8 +++
 .../aorai/tests/ya/oracle/formals.res.oracle  |  6 ++
 .../generate_assigns_bts1290.res.oracle       |  2 +
 .../tests/ya/oracle/hoare_seq.res.oracle      |  4 ++
 .../tests/ya/oracle/incorrect.res.oracle      |  2 +
 .../tests/ya/oracle/loop_bts1050.res.oracle   |  6 ++
 .../ya/oracle/metavariables-right.res.oracle  | 10 +++
 .../tests/ya/oracle/monostate.res.oracle      |  4 ++
 .../aorai/tests/ya/oracle/not_prm.res.oracle  |  2 +
 .../aorai/tests/ya/oracle/other.res.oracle    |  6 ++
 .../aorai/tests/ya/oracle/seq.res.oracle      |  6 ++
 .../aorai/tests/ya/oracle/seq_loop.res.oracle |  6 ++
 .../tests/ya/oracle/single_call.res.oracle    |  2 +
 .../oracle/singleassignment-right.res.oracle  |  2 +
 .../aorai/tests/ya/oracle/stack.res.oracle    |  6 ++
 .../ya/oracle/test_acces_params.res.oracle    |  6 ++
 .../ya/oracle/test_acces_params2.res.oracle   |  8 +++
 .../test_boucle_rechercheTableau.res.oracle   |  6 ++
 .../tests/ya/oracle/test_factorial.res.oracle |  6 ++
 .../ya/oracle/test_recursion4.res.oracle      |  6 ++
 .../ya/oracle/test_recursion5.res.oracle      |  8 +++
 .../tests/ya/oracle/test_struct.res.oracle    |  4 ++
 .../ya/oracle_prove/incorrect.res.oracle      |  2 +-
 45 files changed, 281 insertions(+), 33 deletions(-)

diff --git a/src/plugins/aorai/aorai_eva_analysis.enabled.ml b/src/plugins/aorai/aorai_eva_analysis.enabled.ml
index b17dd3dae1b..85aaa035683 100644
--- a/src/plugins/aorai/aorai_eva_analysis.enabled.ml
+++ b/src/plugins/aorai/aorai_eva_analysis.enabled.ml
@@ -23,4 +23,18 @@
 (*                                                                        *)
 (**************************************************************************)
 
-let setup () = ()
+let add_slevel_annotation vi kind =
+  match kind with
+  | Aorai_visitors.Aux_funcs.(Pre _ | Post _) ->
+    let kf = Globals.Functions.get vi in
+    let stmt = Kernel_function.find_first_stmt kf
+    and loc = Kernel_function.get_location kf
+    and emitter = Aorai_option.emitter in
+    Eva.Eva_annotations.(add_slevel_annot ~emitter ~loc stmt SlevelFull)
+  | _ -> ()
+
+let add_slevel_annotations () =
+  Aorai_visitors.Aux_funcs.iter add_slevel_annotation
+
+let setup () =
+  add_slevel_annotations ()
diff --git a/src/plugins/aorai/aorai_visitors.ml b/src/plugins/aorai/aorai_visitors.ml
index d5bbcfd954e..7011f12d520 100644
--- a/src/plugins/aorai/aorai_visitors.ml
+++ b/src/plugins/aorai/aorai_visitors.ml
@@ -61,26 +61,37 @@ let get_call_name exp = match exp.enode with
    not be projectified.
 *)
 
-(* the various kinds of auxiliary functions. *)
-type func_auto_mode =
-  | Not_auto_func (* original C function. *)
-  | Aux_func of kernel_function
-  (* Checks whether we are in the corresponding behavior of the function. *)
-  | Pre_func of kernel_function
-  (* Pre_func f denotes a function updating the automaton when f is called. *)
-  | Post_func of kernel_function
-  (* Post_func f denotes a function updating the automaton
-     when returning from f. *)
-
-(* table from auxiliary functions to the corresponding original one. *)
-let func_orig_table = Cil_datatype.Varinfo.Hashtbl.create 17
-
-let add_aux_bhv orig_kf vi =
-  Cil_datatype.Varinfo.Hashtbl.add func_orig_table vi (Aux_func orig_kf)
-
-let kind_of_func vi =
-  try Cil_datatype.Varinfo.Hashtbl.find func_orig_table vi
-  with Not_found -> Not_auto_func
+module Aux_funcs =
+struct
+  (* the various kinds of auxiliary functions. *)
+  type kind =
+    | Not_aux_func (* original C function. *)
+    | Aux of kernel_function
+    (* Checks whether we are in the corresponding behavior of the function. *)
+    | Pre of kernel_function
+    (* Pre_func f denotes a function updating the automaton when f is called. *)
+    | Post of kernel_function
+    (* Post_func f denotes a function updating the automaton
+       when returning from f. *)
+
+  module Table = Cil_datatype.Varinfo.Hashtbl
+
+  (* table from auxiliary functions to the corresponding original one. *)
+  let table = Table.create 17
+
+  let add vi kind =
+    Table.add table vi kind
+
+  let add_aux kf vi =
+    add vi (Aux kf)
+
+  let kind vi =
+    try Table.find table vi with Not_found -> Not_aux_func
+
+  let iter f =
+    Table.iter f table
+end
+
 
 (* The following functions will be used to generate C code for pre & post
    functions. *)
@@ -162,7 +173,7 @@ class visit_adding_code_for_synchronisation =
       vi_pre.vname <- Data_for_aorai.get_fresh (vi_pre.vname ^ "_pre_func");
       vi_pre.vdefined <- true;
       vi_pre.vghost <- true;
-      Cil_datatype.Varinfo.Hashtbl.add func_orig_table vi_pre (Pre_func kf);
+      Aux_funcs.(add vi_pre (Pre kf));
       (* TODO:
          - what about protos that have no specified args
            (NB: cannot be identified here because of implem of Kernel_function).
@@ -185,7 +196,7 @@ class visit_adding_code_for_synchronisation =
           (TFun(voidType,Some arg,false,[]))
       in
       Kernel_function.Hashtbl.add aux_post_table kf vi_post;
-      Cil_datatype.Varinfo.Hashtbl.add func_orig_table vi_post (Post_func kf);
+      Aux_funcs.(add vi_post (Post kf));
       let fun_dec_pre = Cil.emptyFunctionFromVI vi_pre in
       let fun_dec_post = Cil.emptyFunctionFromVI vi_post in
       (* For a future analysis of function arguments,
@@ -224,7 +235,7 @@ class visit_adding_code_for_synchronisation =
              GFunDecl(Cil.empty_funspec(),x,loc) :: acc) aux_funcs
           [ GFun(fun_dec_pre,loc); GFun(fun_dec_post,loc)]
       in
-      Cil_datatype.Varinfo.Set.iter (add_aux_bhv kf) aux_funcs;
+      Cil_datatype.Varinfo.Set.iter (Aux_funcs.add_aux kf) aux_funcs;
       fundec.sbody.bstmts <-
         Cil.mkStmtOneInstr ~ghost:true
           (Call(None,Cil.evar ~loc vi_pre,
@@ -280,6 +291,7 @@ class visit_adding_code_for_synchronisation =
 
   end
 
+
 (*********************************************************************)
 
 
@@ -920,9 +932,9 @@ class visit_adding_pre_post_from_buch treatloops =
       let vi = Kernel_function.get_vi my_kf in
       let spec = Annotations.funspec my_kf in
       let loc = Kernel_function.get_location my_kf in
-      (match kind_of_func vi with
-       | Pre_func _ | Post_func _ | Aux_func _ -> ()
-       | Not_auto_func -> (* Normal C function *)
+      (match Aux_funcs.kind vi with
+       | Aux_funcs.Pre _ | Post _ | Aux _ -> ()
+       | Not_aux_func -> (* Normal C function *)
          let bhvs = mk_post my_kf in
          let my_state = Data_for_aorai.get_kf_init_state my_kf in
          let requires = needs_zero_one_choice my_state in
@@ -953,8 +965,8 @@ class visit_adding_pre_post_from_buch treatloops =
         (* don't use get_spec, as we'd generate default assigns,
            while we'll fill the spec just below. *)
         let vi = Kernel_function.get_vi my_kf in
-        (match kind_of_func vi with
-         | Pre_func kf ->
+        (match Aux_funcs.kind vi with
+         | Aux_funcs.Pre kf ->
            (* must advance the automaton according to current call. *)
            let bhvs = mk_pre_fct_spec kf in
            let vis = new change_formals kf my_kf in
@@ -963,7 +975,7 @@ class visit_adding_pre_post_from_buch treatloops =
            in
            Annotations.add_behaviors Aorai_option.emitter my_kf bhvs;
            SkipChildren
-         | Post_func kf ->
+         | Post kf ->
            (* must advance the automaton according to return event. *)
            let (rt, _, _, _) =
              Cil.splitFunctionTypeVI (Kernel_function.get_vi kf)
@@ -983,7 +995,7 @@ class visit_adding_pre_post_from_buch treatloops =
            in
            Annotations.add_behaviors Aorai_option.emitter my_kf bhvs;
            SkipChildren
-         | Aux_func _ | Not_auto_func ->
+         | Aux _ | Not_aux_func ->
            DoChildren (* they are not considered here. *))
 
       | _ -> DoChildren;
diff --git a/src/plugins/aorai/tests/ltl/oracle/goto.res.oracle b/src/plugins/aorai/tests/ltl/oracle/goto.res.oracle
index 265c294b60c..e06220b829a 100644
--- a/src/plugins/aorai/tests/ltl/oracle/goto.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/goto.res.oracle
@@ -72,6 +72,7 @@ int rr = 1;
     int accept_S6_tmp;
     int accept_all_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_opa;
     accept_S2_tmp = accept_S2;
@@ -145,6 +146,7 @@ int rr = 1;
     int accept_S6_tmp;
     int accept_all_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_opa;
     accept_S2_tmp = accept_S2;
@@ -241,6 +243,7 @@ void opa(void)
     int accept_S6_tmp;
     int accept_all_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_opb;
     accept_S2_tmp = accept_S2;
@@ -314,6 +317,7 @@ void opa(void)
     int accept_S6_tmp;
     int accept_all_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_opb;
     accept_S2_tmp = accept_S2;
@@ -398,6 +402,7 @@ void opb(void)
     int accept_S6_tmp;
     int accept_all_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_opc;
     accept_S2_tmp = accept_S2;
@@ -463,6 +468,7 @@ void opb(void)
     int accept_S6_tmp;
     int accept_all_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_opc;
     accept_S2_tmp = accept_S2;
@@ -567,6 +573,7 @@ void opc(void)
     int accept_S6_tmp;
     int accept_all_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     accept_S2_tmp = accept_S2;
@@ -640,6 +647,7 @@ void opc(void)
     int accept_S6_tmp;
     int accept_all_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     accept_S2_tmp = accept_S2;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_boucle.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_boucle.res.oracle
index 84419238102..7504f14db91 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_boucle.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_boucle.res.oracle
@@ -47,6 +47,7 @@ extern int call_to_an_undefined_function(void);
     int T0_S2_tmp;
     int T0_init_tmp;
     int accept_S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_a;
     T0_S2_tmp = T0_S2;
@@ -90,6 +91,7 @@ extern int call_to_an_undefined_function(void);
     int T0_S2_tmp;
     int T0_init_tmp;
     int accept_S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_a;
     T0_S2_tmp = T0_S2;
@@ -151,6 +153,7 @@ int a(void)
     int T0_S2_tmp;
     int T0_init_tmp;
     int accept_S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_b;
     T0_S2_tmp = T0_S2;
@@ -193,6 +196,7 @@ int a(void)
     int T0_S2_tmp;
     int T0_init_tmp;
     int accept_S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_b;
     T0_S2_tmp = T0_S2;
@@ -255,6 +259,7 @@ int b(void)
     int T0_S2_tmp;
     int T0_init_tmp;
     int accept_S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     T0_S2_tmp = T0_S2;
@@ -297,6 +302,7 @@ int b(void)
     int T0_S2_tmp;
     int T0_init_tmp;
     int accept_S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     T0_S2_tmp = T0_S2;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_boucle1.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_boucle1.res.oracle
index d48aaf2d91e..810cc3f996f 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_boucle1.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_boucle1.res.oracle
@@ -60,6 +60,7 @@ int status = 0;
     int accept_S3_tmp;
     int accept_S4_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_commit_trans;
     accept_S1_tmp = accept_S1;
@@ -118,6 +119,7 @@ int status = 0;
     int accept_S3_tmp;
     int accept_S4_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_commit_trans;
     accept_S1_tmp = accept_S1;
@@ -199,6 +201,7 @@ int commit_trans(void)
     int accept_S3_tmp;
     int accept_S4_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_init_trans;
     accept_S1_tmp = accept_S1;
@@ -263,6 +266,7 @@ int commit_trans(void)
     int accept_S3_tmp;
     int accept_S4_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_init_trans;
     accept_S1_tmp = accept_S1;
@@ -349,6 +353,7 @@ int init_trans(void)
     int accept_S3_tmp;
     int accept_S4_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     accept_S1_tmp = accept_S1;
@@ -417,6 +422,7 @@ int init_trans(void)
     int accept_S3_tmp;
     int accept_S4_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     accept_S1_tmp = accept_S1;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_boucle2.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_boucle2.res.oracle
index 8491e8c23ed..bf069fb7cfc 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_boucle2.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_boucle2.res.oracle
@@ -63,6 +63,7 @@ int rr = 1;
     int accept_S4_tmp;
     int accept_S5_tmp;
     int accept_all_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_opa;
     T0_S2_tmp = T0_S2;
@@ -133,6 +134,7 @@ int rr = 1;
     int accept_S4_tmp;
     int accept_S5_tmp;
     int accept_all_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_opa;
     T0_S2_tmp = T0_S2;
@@ -223,6 +225,7 @@ void opa(void)
     int accept_S4_tmp;
     int accept_S5_tmp;
     int accept_all_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_opb;
     T0_S2_tmp = T0_S2;
@@ -288,6 +291,7 @@ void opa(void)
     int accept_S4_tmp;
     int accept_S5_tmp;
     int accept_all_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_opb;
     T0_S2_tmp = T0_S2;
@@ -371,6 +375,7 @@ void opb(void)
     int accept_S4_tmp;
     int accept_S5_tmp;
     int accept_all_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     T0_S2_tmp = T0_S2;
@@ -436,6 +441,7 @@ void opb(void)
     int accept_S4_tmp;
     int accept_S5_tmp;
     int accept_all_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     T0_S2_tmp = T0_S2;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_boucle3.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_boucle3.res.oracle
index 4521080b3e1..bbf09f7914a 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_boucle3.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_boucle3.res.oracle
@@ -63,6 +63,7 @@ int rr = 1;
     int T1_S2_tmp;
     int accept_S3_tmp;
     int accept_all_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_opa;
     T0_S4_tmp = T0_S4;
@@ -126,6 +127,7 @@ int rr = 1;
     int T1_S2_tmp;
     int accept_S3_tmp;
     int accept_all_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_opa;
     T0_S4_tmp = T0_S4;
@@ -228,6 +230,7 @@ void opa(void)
     int T1_S2_tmp;
     int accept_S3_tmp;
     int accept_all_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_opb;
     T0_S4_tmp = T0_S4;
@@ -286,6 +289,7 @@ void opa(void)
     int T1_S2_tmp;
     int accept_S3_tmp;
     int accept_all_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_opb;
     T0_S4_tmp = T0_S4;
@@ -363,6 +367,7 @@ void opb(void)
     int T1_S2_tmp;
     int accept_S3_tmp;
     int accept_all_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     T0_S4_tmp = T0_S4;
@@ -426,6 +431,7 @@ void opb(void)
     int T1_S2_tmp;
     int accept_S3_tmp;
     int accept_all_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     T0_S4_tmp = T0_S4;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_factorial.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_factorial.res.oracle
index c1aac176071..d434d1ddf70 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_factorial.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_factorial.res.oracle
@@ -42,6 +42,7 @@ enum aorai_OpStatusList {
     int accept_S1_tmp;
     int accept_S2_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_decode_int;
     accept_S1_tmp = accept_S1;
@@ -89,6 +90,7 @@ enum aorai_OpStatusList {
     int accept_S1_tmp;
     int accept_S2_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_decode_int;
     accept_S1_tmp = accept_S1;
@@ -211,6 +213,7 @@ int decode_int(char *s)
     int accept_S1_tmp;
     int accept_S2_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_factorial;
     accept_S1_tmp = accept_S1;
@@ -259,6 +262,7 @@ int decode_int(char *s)
     int accept_S1_tmp;
     int accept_S2_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_factorial;
     accept_S1_tmp = accept_S1;
@@ -330,6 +334,7 @@ int factorial(int value)
     int accept_S1_tmp;
     int accept_S2_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     accept_S1_tmp = accept_S1;
@@ -377,6 +382,7 @@ int factorial(int value)
     int accept_S1_tmp;
     int accept_S2_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     accept_S1_tmp = accept_S1;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_recursion1.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_recursion1.res.oracle
index eaaac90fdb2..28c0b50dbab 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_recursion1.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_recursion1.res.oracle
@@ -76,6 +76,7 @@ predicate valid_string{L}(char *s) =
     int T0_S2_tmp;
     int T0_init_tmp;
     int accept_S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_countOne;
     T0_S2_tmp = T0_S2;
@@ -118,6 +119,7 @@ predicate valid_string{L}(char *s) =
     int T0_S2_tmp;
     int T0_init_tmp;
     int accept_S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_countOne;
     T0_S2_tmp = T0_S2;
@@ -189,6 +191,7 @@ int countOne(char *argv)
     int T0_S2_tmp;
     int T0_init_tmp;
     int accept_S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_count;
     T0_S2_tmp = T0_S2;
@@ -231,6 +234,7 @@ int countOne(char *argv)
     int T0_S2_tmp;
     int T0_init_tmp;
     int accept_S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_count;
     T0_S2_tmp = T0_S2;
@@ -296,6 +300,7 @@ int count(int argc, char **argv)
     int T0_S2_tmp;
     int T0_init_tmp;
     int accept_S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     T0_S2_tmp = T0_S2;
@@ -343,6 +348,7 @@ int count(int argc, char **argv)
     int T0_S2_tmp;
     int T0_init_tmp;
     int accept_S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     T0_S2_tmp = T0_S2;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_recursion2.0.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_recursion2.0.res.oracle
index eb681fba1c9..0c38acfaa75 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_recursion2.0.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_recursion2.0.res.oracle
@@ -97,6 +97,7 @@ int global_argc = 0;
     int T0_init_tmp;
     int T1_tmp;
     int accept_T2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_count;
     S1_tmp = S1;
@@ -146,6 +147,7 @@ int global_argc = 0;
     int T0_init_tmp;
     int T1_tmp;
     int accept_T2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_count;
     S1_tmp = S1;
@@ -223,6 +225,7 @@ int count(char *argv)
     int T0_init_tmp;
     int T1_tmp;
     int accept_T2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_sumOne;
     S1_tmp = S1;
@@ -272,6 +275,7 @@ int count(char *argv)
     int T0_init_tmp;
     int T1_tmp;
     int accept_T2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_sumOne;
     S1_tmp = S1;
@@ -355,6 +359,7 @@ int sumOne(char *t, int length)
     int T0_init_tmp;
     int T1_tmp;
     int accept_T2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     S1_tmp = S1;
@@ -409,6 +414,7 @@ int sumOne(char *t, int length)
     int T0_init_tmp;
     int T1_tmp;
     int accept_T2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     S1_tmp = S1;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_recursion2.1.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_recursion2.1.res.oracle
index e92778bcb0c..97d6decf1f8 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_recursion2.1.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_recursion2.1.res.oracle
@@ -97,6 +97,7 @@ int global_argc = 0;
     int T0_init_tmp;
     int T1_tmp;
     int accept_T2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_count;
     S1_tmp = S1;
@@ -146,6 +147,7 @@ int global_argc = 0;
     int T0_init_tmp;
     int T1_tmp;
     int accept_T2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_count;
     S1_tmp = S1;
@@ -223,6 +225,7 @@ int count(char *argv)
     int T0_init_tmp;
     int T1_tmp;
     int accept_T2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_sumOne;
     S1_tmp = S1;
@@ -272,6 +275,7 @@ int count(char *argv)
     int T0_init_tmp;
     int T1_tmp;
     int accept_T2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_sumOne;
     S1_tmp = S1;
@@ -355,6 +359,7 @@ int sumOne(char *t, int length)
     int T0_init_tmp;
     int T1_tmp;
     int accept_T2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     S1_tmp = S1;
@@ -409,6 +414,7 @@ int sumOne(char *t, int length)
     int T0_init_tmp;
     int T1_tmp;
     int accept_T2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     S1_tmp = S1;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_switch2.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_switch2.res.oracle
index 41a59d023f0..b3c85addc01 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_switch2.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_switch2.res.oracle
@@ -74,6 +74,7 @@ int rr = 1;
     int accept_S6_tmp;
     int accept_all_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_opa;
     accept_S2_tmp = accept_S2;
@@ -147,6 +148,7 @@ int rr = 1;
     int accept_S6_tmp;
     int accept_all_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_opa;
     accept_S2_tmp = accept_S2;
@@ -243,6 +245,7 @@ void opa(void)
     int accept_S6_tmp;
     int accept_all_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_opb;
     accept_S2_tmp = accept_S2;
@@ -316,6 +319,7 @@ void opa(void)
     int accept_S6_tmp;
     int accept_all_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_opb;
     accept_S2_tmp = accept_S2;
@@ -400,6 +404,7 @@ void opb(void)
     int accept_S6_tmp;
     int accept_all_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_opc;
     accept_S2_tmp = accept_S2;
@@ -465,6 +470,7 @@ void opb(void)
     int accept_S6_tmp;
     int accept_all_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_opc;
     accept_S2_tmp = accept_S2;
@@ -569,6 +575,7 @@ void opc(void)
     int accept_S6_tmp;
     int accept_all_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     accept_S2_tmp = accept_S2;
@@ -642,6 +649,7 @@ void opc(void)
     int accept_S6_tmp;
     int accept_all_tmp;
     int accept_init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     accept_S2_tmp = accept_S2;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_switch3.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_switch3.res.oracle
index 4ed3b4a39a1..4d74ec69aeb 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_switch3.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_switch3.res.oracle
@@ -49,6 +49,7 @@ enum aorai_OpStatusList {
     int T0_init_tmp;
     int accept_S1_tmp;
     int accept_S2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_countOne;
     T0_S2_tmp = T0_S2;
@@ -99,6 +100,7 @@ enum aorai_OpStatusList {
     int T0_init_tmp;
     int accept_S1_tmp;
     int accept_S2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_countOne;
     T0_S2_tmp = T0_S2;
@@ -180,6 +182,7 @@ int countOne(char *argv)
     int T0_init_tmp;
     int accept_S1_tmp;
     int accept_S2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_count;
     T0_S2_tmp = T0_S2;
@@ -241,6 +244,7 @@ int countOne(char *argv)
     int T0_init_tmp;
     int accept_S1_tmp;
     int accept_S2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_count;
     T0_S2_tmp = T0_S2;
@@ -329,6 +333,7 @@ int count(int argc, char **argv)
     int T0_init_tmp;
     int accept_S1_tmp;
     int accept_S2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     T0_S2_tmp = T0_S2;
@@ -384,6 +389,7 @@ int count(int argc, char **argv)
     int T0_init_tmp;
     int accept_S1_tmp;
     int accept_S2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     T0_S2_tmp = T0_S2;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_switch3_et_recursion.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_switch3_et_recursion.res.oracle
index 62566d6ad71..96b9dc90c1e 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_switch3_et_recursion.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_switch3_et_recursion.res.oracle
@@ -44,6 +44,7 @@ enum aorai_OpStatusList {
     int T0_S2_tmp;
     int T0_init_tmp;
     int accept_S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_countOne;
     T0_S2_tmp = T0_S2;
@@ -81,6 +82,7 @@ enum aorai_OpStatusList {
     int T0_S2_tmp;
     int T0_init_tmp;
     int accept_S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_countOne;
     T0_S2_tmp = T0_S2;
@@ -149,6 +151,7 @@ int countOne(char *argv)
     int T0_S2_tmp;
     int T0_init_tmp;
     int accept_S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_count;
     T0_S2_tmp = T0_S2;
@@ -191,6 +194,7 @@ int countOne(char *argv)
     int T0_S2_tmp;
     int T0_init_tmp;
     int accept_S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_count;
     T0_S2_tmp = T0_S2;
@@ -258,6 +262,7 @@ int count(int argc, char **argv)
     int T0_S2_tmp;
     int T0_init_tmp;
     int accept_S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     T0_S2_tmp = T0_S2;
@@ -305,6 +310,7 @@ int count(int argc, char **argv)
     int T0_S2_tmp;
     int T0_init_tmp;
     int accept_S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     T0_S2_tmp = T0_S2;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_switch3_if.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_switch3_if.res.oracle
index 88b0352589b..23495bc09b5 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_switch3_if.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_switch3_if.res.oracle
@@ -49,6 +49,7 @@ enum aorai_OpStatusList {
     int T0_init_tmp;
     int accept_S1_tmp;
     int accept_S2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_countOne;
     T0_S2_tmp = T0_S2;
@@ -99,6 +100,7 @@ enum aorai_OpStatusList {
     int T0_init_tmp;
     int accept_S1_tmp;
     int accept_S2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_countOne;
     T0_S2_tmp = T0_S2;
@@ -178,6 +180,7 @@ int countOne(char *argv)
     int T0_init_tmp;
     int accept_S1_tmp;
     int accept_S2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_count;
     T0_S2_tmp = T0_S2;
@@ -239,6 +242,7 @@ int countOne(char *argv)
     int T0_init_tmp;
     int accept_S1_tmp;
     int accept_S2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_count;
     T0_S2_tmp = T0_S2;
@@ -327,6 +331,7 @@ int count(int argc, char **argv)
     int T0_init_tmp;
     int accept_S1_tmp;
     int accept_S2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     T0_S2_tmp = T0_S2;
@@ -382,6 +387,7 @@ int count(int argc, char **argv)
     int T0_init_tmp;
     int accept_S1_tmp;
     int accept_S2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     T0_S2_tmp = T0_S2;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_switch3_return.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_switch3_return.res.oracle
index 9e0438a0e71..1c04d032f84 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_switch3_return.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_switch3_return.res.oracle
@@ -49,6 +49,7 @@ enum aorai_OpStatusList {
     int T0_init_tmp;
     int accept_S1_tmp;
     int accept_S2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_countOne;
     T0_S2_tmp = T0_S2;
@@ -99,6 +100,7 @@ enum aorai_OpStatusList {
     int T0_init_tmp;
     int accept_S1_tmp;
     int accept_S2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_countOne;
     T0_S2_tmp = T0_S2;
@@ -185,6 +187,7 @@ int countOne(char *argv)
     int T0_init_tmp;
     int accept_S1_tmp;
     int accept_S2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_count;
     T0_S2_tmp = T0_S2;
@@ -246,6 +249,7 @@ int countOne(char *argv)
     int T0_init_tmp;
     int accept_S1_tmp;
     int accept_S2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_count;
     T0_S2_tmp = T0_S2;
@@ -334,6 +338,7 @@ int count(int argc, char **argv)
     int T0_init_tmp;
     int accept_S1_tmp;
     int accept_S2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     T0_S2_tmp = T0_S2;
@@ -389,6 +394,7 @@ int count(int argc, char **argv)
     int T0_init_tmp;
     int accept_S1_tmp;
     int accept_S2_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     T0_S2_tmp = T0_S2;
diff --git a/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle.res.oracle b/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle.res.oracle
index 0cf6aa042e8..2d27926df0c 100644
--- a/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle.res.oracle
@@ -4,5 +4,5 @@
 [aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_boucle_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
-[kernel:annot:missing-spec] TMPDIR/aorai_test_boucle_0.i:85: Warning: 
+[kernel:annot:missing-spec] TMPDIR/aorai_test_boucle_0.i:86: Warning: 
   Neither code nor specification for function call_to_an_undefined_function, generating default assigns from the prototype
diff --git a/src/plugins/aorai/tests/ya/oracle/assigns.0.res.oracle b/src/plugins/aorai/tests/ya/oracle/assigns.0.res.oracle
index f4acc040245..8c31757f7be 100644
--- a/src/plugins/aorai/tests/ya/oracle/assigns.0.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/assigns.0.res.oracle
@@ -53,6 +53,7 @@ int X;
     int S_in_f_tmp;
     int Sf_tmp;
     int in_main_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_f;
     S1_tmp = S1;
@@ -110,6 +111,7 @@ int X;
     int S_in_f_tmp;
     int Sf_tmp;
     int in_main_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_f;
     S1_tmp = S1;
@@ -182,6 +184,7 @@ void f(void)
     int S_in_f_tmp;
     int Sf_tmp;
     int in_main_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     S1_tmp = S1;
@@ -239,6 +242,7 @@ void f(void)
     int S_in_f_tmp;
     int Sf_tmp;
     int in_main_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     S1_tmp = S1;
diff --git a/src/plugins/aorai/tests/ya/oracle/assigns.1.res.oracle b/src/plugins/aorai/tests/ya/oracle/assigns.1.res.oracle
index 28be1b6491e..cdb19dd2762 100644
--- a/src/plugins/aorai/tests/ya/oracle/assigns.1.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/assigns.1.res.oracle
@@ -60,6 +60,7 @@ int X;
    @/
   void f_pre_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_f;
     if (3 == aorai_CurStates) aorai_CurStates = S_in_f;
@@ -96,6 +97,7 @@ int X;
    @/
   void f_post_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_f;
     if (2 == aorai_CurStates) aorai_CurStates = in_main;
@@ -145,6 +147,7 @@ void f(void)
    @/
   void main_pre_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     if (0 == aorai_CurStates) aorai_CurStates = Sf;
@@ -181,6 +184,7 @@ void f(void)
    @/
   void main_post_func(int res)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     if (4 == aorai_CurStates) aorai_CurStates = S2;
diff --git a/src/plugins/aorai/tests/ya/oracle/bts1289.0.res.oracle b/src/plugins/aorai/tests/ya/oracle/bts1289.0.res.oracle
index ded70303a39..d694fc99a03 100644
--- a/src/plugins/aorai/tests/ya/oracle/bts1289.0.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/bts1289.0.res.oracle
@@ -26,6 +26,7 @@ enum aorai_OpStatusList {
   void a_pre_func(void)
   {
     int S_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_a;
     S_tmp = S;
@@ -48,6 +49,7 @@ enum aorai_OpStatusList {
   void a_post_func(void)
   {
     int S_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_a;
     S_tmp = S;
@@ -81,6 +83,7 @@ void a(void)
   void main_pre_func(void)
   {
     int S_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     S_tmp = S;
@@ -103,6 +106,7 @@ void a(void)
   void main_post_func(void)
   {
     int S_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     S_tmp = S;
diff --git a/src/plugins/aorai/tests/ya/oracle/bts1289.1.res.oracle b/src/plugins/aorai/tests/ya/oracle/bts1289.1.res.oracle
index c7ab7fc71c4..3c96ba01588 100644
--- a/src/plugins/aorai/tests/ya/oracle/bts1289.1.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/bts1289.1.res.oracle
@@ -58,6 +58,7 @@ enum aorai_OpStatusList {
     int aorai_intermediate_state_tmp;
     int aorai_intermediate_state_0_tmp;
     int init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_a;
     S_tmp = S;
@@ -123,6 +124,7 @@ enum aorai_OpStatusList {
     int aorai_intermediate_state_tmp;
     int aorai_intermediate_state_0_tmp;
     int init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_a;
     S_tmp = S;
@@ -219,6 +221,7 @@ void a(void)
     int aorai_intermediate_state_tmp;
     int aorai_intermediate_state_0_tmp;
     int init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     S_tmp = S;
@@ -277,6 +280,7 @@ void a(void)
     int aorai_intermediate_state_tmp;
     int aorai_intermediate_state_0_tmp;
     int init_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     S_tmp = S;
diff --git a/src/plugins/aorai/tests/ya/oracle/declared_function.res.oracle b/src/plugins/aorai/tests/ya/oracle/declared_function.res.oracle
index 9aac8e4561e..162c17c6430 100644
--- a/src/plugins/aorai/tests/ya/oracle/declared_function.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/declared_function.res.oracle
@@ -61,6 +61,7 @@ check lemma I_deterministic_trans{L}:
    @/
   void main_pre_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     if (0 == aorai_CurStates) aorai_CurStates = I;
@@ -85,6 +86,7 @@ check lemma I_deterministic_trans{L}:
    @/
   void main_post_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     if (0 == aorai_CurStates) aorai_CurStates = I;
diff --git a/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle b/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle
index eac5b5331de..7d3f5aa8877 100644
--- a/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle
@@ -105,6 +105,7 @@ check lemma S0_deterministic_trans{L}:
    @/
   void g_pre_func(int x)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_g;
     if (3 == aorai_CurStates && x == 4) aorai_CurStates = S4;
@@ -157,6 +158,7 @@ check lemma S0_deterministic_trans{L}:
    @/
   void g_post_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_g;
     if (5 == aorai_CurStates) aorai_CurStates = S1;
@@ -224,6 +226,7 @@ void g(int x)
    @/
   void f_pre_func(int x)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_f;
     if (1 == aorai_CurStates && x == 4) aorai_CurStates = S3;
@@ -270,6 +273,7 @@ void g(int x)
    @/
   void f_post_func(int res)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_f;
     if (1 == aorai_CurStates && (res == 0 && X == 5)) aorai_CurStates = S2;
@@ -341,6 +345,7 @@ int f(int x)
    @/
   void real_main_pre_func(int c)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_real_main;
     if (0 == aorai_CurStates && c != 0) aorai_CurStates = S1;
@@ -388,6 +393,7 @@ int f(int x)
    @/
   void real_main_post_func(int res)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_real_main;
     if (2 == aorai_CurStates) aorai_CurStates = Sf;
@@ -449,6 +455,7 @@ int real_main(int c)
    @/
   void main_pre_func(int c)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     if (7 == aorai_CurStates) aorai_CurStates = S0;
@@ -494,6 +501,7 @@ int real_main(int c)
    @/
   void main_post_func(int res)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     if (6 == aorai_CurStates) aorai_CurStates = Sf;
diff --git a/src/plugins/aorai/tests/ya/oracle/formals.res.oracle b/src/plugins/aorai/tests/ya/oracle/formals.res.oracle
index 1b5982df2b9..cbe2ba005be 100644
--- a/src/plugins/aorai/tests/ya/oracle/formals.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/formals.res.oracle
@@ -130,6 +130,7 @@ check lemma aorai_intermediate_state_deterministic_trans{L}:
    @/
   void f_pre_func(int x)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_f;
     if (7 == aorai_CurStates && x == 1) {
@@ -211,6 +212,7 @@ check lemma aorai_intermediate_state_deterministic_trans{L}:
    @/
   void f_post_func(int res)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_f;
     if (4 == aorai_CurStates && aorai_x_0 == 3) aorai_CurStates = OK;
@@ -343,6 +345,7 @@ int f(int x)
    @/
   void g_pre_func(int y)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_g;
     if (0 == aorai_CurStates) aorai_CurStates = OK;
@@ -415,6 +418,7 @@ int f(int x)
    @/
   void g_post_func(int res)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_g;
     if (3 == aorai_CurStates && aorai_y == 2) aorai_CurStates = OK;
@@ -502,6 +506,7 @@ int g(int y)
    @/
   void main_pre_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     if (6 == aorai_CurStates) aorai_CurStates = main_0;
@@ -552,6 +557,7 @@ int g(int y)
    @/
   void main_post_func(int res)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     if (0 == aorai_CurStates) aorai_CurStates = OK;
diff --git a/src/plugins/aorai/tests/ya/oracle/generate_assigns_bts1290.res.oracle b/src/plugins/aorai/tests/ya/oracle/generate_assigns_bts1290.res.oracle
index a409f76aa7a..818442d7618 100644
--- a/src/plugins/aorai/tests/ya/oracle/generate_assigns_bts1290.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/generate_assigns_bts1290.res.oracle
@@ -29,6 +29,7 @@ enum aorai_OpStatusList {
   void main_pre_func(void)
   {
     int S_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     S_tmp = S;
@@ -56,6 +57,7 @@ enum aorai_OpStatusList {
   void main_post_func(void)
   {
     int S_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     S_tmp = S;
diff --git a/src/plugins/aorai/tests/ya/oracle/hoare_seq.res.oracle b/src/plugins/aorai/tests/ya/oracle/hoare_seq.res.oracle
index b8271b7f370..6095d7964e2 100644
--- a/src/plugins/aorai/tests/ya/oracle/hoare_seq.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/hoare_seq.res.oracle
@@ -71,6 +71,7 @@ enum aorai_OpStatusList {
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_reject_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_f;
     S0_tmp = S0;
@@ -153,6 +154,7 @@ enum aorai_OpStatusList {
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_reject_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_f;
     S0_tmp = S0;
@@ -303,6 +305,7 @@ int main_bhv_bhv(int c); */
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_reject_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     S0_tmp = S0;
@@ -397,6 +400,7 @@ int main_bhv_bhv(int c); */
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_reject_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     S0_tmp = S0;
diff --git a/src/plugins/aorai/tests/ya/oracle/incorrect.res.oracle b/src/plugins/aorai/tests/ya/oracle/incorrect.res.oracle
index bcd7dddbbf4..21a5cd9feb5 100644
--- a/src/plugins/aorai/tests/ya/oracle/incorrect.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/incorrect.res.oracle
@@ -33,6 +33,7 @@ int f(void);
    @/
   void main_pre_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     return;
@@ -51,6 +52,7 @@ int f(void);
    @/
   void main_post_func(int res)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     return;
diff --git a/src/plugins/aorai/tests/ya/oracle/loop_bts1050.res.oracle b/src/plugins/aorai/tests/ya/oracle/loop_bts1050.res.oracle
index 926ceb3efd8..14b24d45cdd 100644
--- a/src/plugins/aorai/tests/ya/oracle/loop_bts1050.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/loop_bts1050.res.oracle
@@ -84,6 +84,7 @@ enum aorai_OpStatusList {
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_intermediate_state_3_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_f;
     S0_tmp = S0;
@@ -164,6 +165,7 @@ enum aorai_OpStatusList {
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_intermediate_state_3_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_f;
     S0_tmp = S0;
@@ -274,6 +276,7 @@ void f(void)
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_intermediate_state_3_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_g;
     S0_tmp = S0;
@@ -351,6 +354,7 @@ void f(void)
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_intermediate_state_3_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_g;
     S0_tmp = S0;
@@ -447,6 +451,7 @@ void g(void)
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_intermediate_state_3_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     S0_tmp = S0;
@@ -525,6 +530,7 @@ void g(void)
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_intermediate_state_3_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     S0_tmp = S0;
diff --git a/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle b/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle
index f9cbea2f85d..e753f6649c4 100644
--- a/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle
@@ -109,6 +109,7 @@ check lemma e_deterministic_trans{L}:
    @/
   void f_pre_func(int x)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_f;
     if (1 == aorai_CurStates) {
@@ -161,6 +162,7 @@ check lemma e_deterministic_trans{L}:
    @/
   void f_post_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_f;
     if (2 == aorai_CurStates) aorai_CurStates = e;
@@ -227,6 +229,7 @@ void f(int x)
    @/
   void g_pre_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_g;
     if (1 == aorai_CurStates) aorai_CurStates = d;
@@ -275,6 +278,7 @@ void f(int x)
    @/
   void g_post_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_g;
     if (3 == aorai_CurStates) aorai_CurStates = g_0;
@@ -336,6 +340,7 @@ void g(void)
    @/
   void h_pre_func(int x)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_h;
     if (4 == aorai_CurStates && aorai_x > 0) aorai_CurStates = f_0;
@@ -384,6 +389,7 @@ void g(void)
    @/
   void h_post_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_h;
     if (5 == aorai_CurStates) aorai_CurStates = g_0;
@@ -445,6 +451,7 @@ void h(int x)
    @/
   void i_pre_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_i;
     if (6 == aorai_CurStates) aorai_CurStates = h_0;
@@ -504,6 +511,7 @@ void h(int x)
    @/
   void i_post_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_i;
     if (7 == aorai_CurStates) {
@@ -574,6 +582,7 @@ void i(void)
    @/
   void main_pre_func(int t)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     if (0 == aorai_CurStates) aorai_CurStates = b;
@@ -622,6 +631,7 @@ void i(void)
    @/
   void main_post_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     if (4 == aorai_CurStates) aorai_CurStates = i_0;
diff --git a/src/plugins/aorai/tests/ya/oracle/monostate.res.oracle b/src/plugins/aorai/tests/ya/oracle/monostate.res.oracle
index b0789f55dee..4b5d328fbbe 100644
--- a/src/plugins/aorai/tests/ya/oracle/monostate.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/monostate.res.oracle
@@ -64,6 +64,7 @@ check lemma Init_deterministic_trans{L}:
    @/
   void f_pre_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_f;
     if (2 == aorai_CurStates) aorai_CurStates = aorai_reject;
@@ -96,6 +97,7 @@ check lemma Init_deterministic_trans{L}:
    @/
   void f_post_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_f;
     if (2 == aorai_CurStates) aorai_CurStates = aorai_reject;
@@ -139,6 +141,7 @@ void f(void)
    @/
   void main_pre_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     return;
@@ -163,6 +166,7 @@ void f(void)
    @/
   void main_post_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     return;
diff --git a/src/plugins/aorai/tests/ya/oracle/not_prm.res.oracle b/src/plugins/aorai/tests/ya/oracle/not_prm.res.oracle
index e2b8af2f5f8..a1315a44ec9 100644
--- a/src/plugins/aorai/tests/ya/oracle/not_prm.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/not_prm.res.oracle
@@ -35,6 +35,7 @@ enum aorai_OpStatusList {
   {
     int S0_tmp;
     int Sf_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_f;
     S0_tmp = S0;
@@ -69,6 +70,7 @@ enum aorai_OpStatusList {
   {
     int S0_tmp;
     int Sf_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_f;
     S0_tmp = S0;
diff --git a/src/plugins/aorai/tests/ya/oracle/other.res.oracle b/src/plugins/aorai/tests/ya/oracle/other.res.oracle
index 24195e41f5e..ea8efc3984f 100644
--- a/src/plugins/aorai/tests/ya/oracle/other.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/other.res.oracle
@@ -60,6 +60,7 @@ int x = 0;
     int init_tmp;
     int last_tmp;
     int step1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_f;
     init_tmp = init;
@@ -123,6 +124,7 @@ int x = 0;
     int init_tmp;
     int last_tmp;
     int step1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_f;
     init_tmp = init;
@@ -250,6 +252,7 @@ void f(void)
     int init_tmp;
     int last_tmp;
     int step1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_g;
     init_tmp = init;
@@ -313,6 +316,7 @@ void f(void)
     int init_tmp;
     int last_tmp;
     int step1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_g;
     init_tmp = init;
@@ -427,6 +431,7 @@ void g(void)
     int init_tmp;
     int last_tmp;
     int step1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     init_tmp = init;
@@ -486,6 +491,7 @@ void g(void)
     int init_tmp;
     int last_tmp;
     int step1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     init_tmp = init;
diff --git a/src/plugins/aorai/tests/ya/oracle/seq.res.oracle b/src/plugins/aorai/tests/ya/oracle/seq.res.oracle
index ad8e58e2c0a..8a68e3c2894 100644
--- a/src/plugins/aorai/tests/ya/oracle/seq.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/seq.res.oracle
@@ -69,6 +69,7 @@ enum aorai_OpStatusList {
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_intermediate_state_3_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_f;
     S0_tmp = S0;
@@ -146,6 +147,7 @@ enum aorai_OpStatusList {
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_intermediate_state_3_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_f;
     S0_tmp = S0;
@@ -269,6 +271,7 @@ void f(void)
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_intermediate_state_3_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_g;
     S0_tmp = S0;
@@ -350,6 +353,7 @@ void f(void)
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_intermediate_state_3_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_g;
     S0_tmp = S0;
@@ -470,6 +474,7 @@ void g(void)
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_intermediate_state_3_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     S0_tmp = S0;
@@ -548,6 +553,7 @@ void g(void)
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_intermediate_state_3_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     S0_tmp = S0;
diff --git a/src/plugins/aorai/tests/ya/oracle/seq_loop.res.oracle b/src/plugins/aorai/tests/ya/oracle/seq_loop.res.oracle
index 74c4b90d5d2..241908d1ee5 100644
--- a/src/plugins/aorai/tests/ya/oracle/seq_loop.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/seq_loop.res.oracle
@@ -84,6 +84,7 @@ enum aorai_OpStatusList {
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_intermediate_state_3_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_f;
     S0_tmp = S0;
@@ -164,6 +165,7 @@ enum aorai_OpStatusList {
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_intermediate_state_3_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_f;
     S0_tmp = S0;
@@ -274,6 +276,7 @@ void f(void)
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_intermediate_state_3_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_g;
     S0_tmp = S0;
@@ -351,6 +354,7 @@ void f(void)
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_intermediate_state_3_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_g;
     S0_tmp = S0;
@@ -447,6 +451,7 @@ void g(void)
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_intermediate_state_3_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     S0_tmp = S0;
@@ -525,6 +530,7 @@ void g(void)
     int aorai_intermediate_state_1_tmp;
     int aorai_intermediate_state_2_tmp;
     int aorai_intermediate_state_3_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     S0_tmp = S0;
diff --git a/src/plugins/aorai/tests/ya/oracle/single_call.res.oracle b/src/plugins/aorai/tests/ya/oracle/single_call.res.oracle
index 8140ad900ee..ea9bdd5f8c4 100644
--- a/src/plugins/aorai/tests/ya/oracle/single_call.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/single_call.res.oracle
@@ -40,6 +40,7 @@ enum aorai_OpStatusList {
     int S0_tmp;
     int Sf_tmp;
     int aorai_intermediate_state_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     S0_tmp = S0;
@@ -83,6 +84,7 @@ enum aorai_OpStatusList {
     int S0_tmp;
     int Sf_tmp;
     int aorai_intermediate_state_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     S0_tmp = S0;
diff --git a/src/plugins/aorai/tests/ya/oracle/singleassignment-right.res.oracle b/src/plugins/aorai/tests/ya/oracle/singleassignment-right.res.oracle
index 964d18945b2..e76ec6fc3ca 100644
--- a/src/plugins/aorai/tests/ya/oracle/singleassignment-right.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/singleassignment-right.res.oracle
@@ -59,6 +59,7 @@ enum aorai_OpStatusList {
    @/
   void main_pre_func(int *x, int *y)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     if (0 == aorai_CurStates) {
@@ -104,6 +105,7 @@ enum aorai_OpStatusList {
    @/
   void main_post_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     if (1 == aorai_CurStates) {
diff --git a/src/plugins/aorai/tests/ya/oracle/stack.res.oracle b/src/plugins/aorai/tests/ya/oracle/stack.res.oracle
index 9ff7ca0aecd..b20f875ba14 100644
--- a/src/plugins/aorai/tests/ya/oracle/stack.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/stack.res.oracle
@@ -86,6 +86,7 @@ check lemma emptying_stack_deterministic_trans{L}:
    @/
   void push_pre_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_push;
     if (3 == aorai_CurStates) aorai_CurStates = filling_stack;
@@ -133,6 +134,7 @@ check lemma emptying_stack_deterministic_trans{L}:
    @/
   void push_post_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_push;
     if (4 == aorai_CurStates) {
@@ -202,6 +204,7 @@ void push(void)
    @/
   void pop_pre_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_pop;
     if (3 == aorai_CurStates && aorai_n > 0) aorai_CurStates = emptying_stack;
@@ -255,6 +258,7 @@ void push(void)
    @/
   void pop_post_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_pop;
     if (2 == aorai_CurStates && aorai_n == 1) {
@@ -334,6 +338,7 @@ void pop(void)
    @/
   void main_pre_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     if (5 == aorai_CurStates) {
@@ -376,6 +381,7 @@ void pop(void)
    @/
   void main_post_func(void)
   {
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     if (1 == aorai_CurStates) aorai_CurStates = accept;
diff --git a/src/plugins/aorai/tests/ya/oracle/test_acces_params.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_acces_params.res.oracle
index 20787049401..960ccd88bee 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_acces_params.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_acces_params.res.oracle
@@ -64,6 +64,7 @@ int rr = 1;
     int S4_tmp;
     int SF_tmp;
     int mainst_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_opa;
     S1_tmp = S1;
@@ -129,6 +130,7 @@ int rr = 1;
     int S4_tmp;
     int SF_tmp;
     int mainst_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_opa;
     S1_tmp = S1;
@@ -216,6 +218,7 @@ void opa(int i, int j)
     int S4_tmp;
     int SF_tmp;
     int mainst_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_opb;
     S1_tmp = S1;
@@ -282,6 +285,7 @@ void opa(int i, int j)
     int S4_tmp;
     int SF_tmp;
     int mainst_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_opb;
     S1_tmp = S1;
@@ -367,6 +371,7 @@ int opb(void)
     int S4_tmp;
     int SF_tmp;
     int mainst_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     S1_tmp = S1;
@@ -432,6 +437,7 @@ int opb(void)
     int S4_tmp;
     int SF_tmp;
     int mainst_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     S1_tmp = S1;
diff --git a/src/plugins/aorai/tests/ya/oracle/test_acces_params2.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_acces_params2.res.oracle
index c6d27622ae3..0527f8f7b59 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_acces_params2.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_acces_params2.res.oracle
@@ -69,6 +69,7 @@ int rr = 1;
     int S5_tmp;
     int S6_tmp;
     int S7_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_opa;
     S1_tmp = S1;
@@ -142,6 +143,7 @@ int rr = 1;
     int S5_tmp;
     int S6_tmp;
     int S7_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_opa;
     S1_tmp = S1;
@@ -239,6 +241,7 @@ int opa(int r)
     int S5_tmp;
     int S6_tmp;
     int S7_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_opb;
     S1_tmp = S1;
@@ -311,6 +314,7 @@ int opa(int r)
     int S5_tmp;
     int S6_tmp;
     int S7_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_opb;
     S1_tmp = S1;
@@ -398,6 +402,7 @@ void opb(void)
     int S5_tmp;
     int S6_tmp;
     int S7_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_opc;
     S1_tmp = S1;
@@ -463,6 +468,7 @@ void opb(void)
     int S5_tmp;
     int S6_tmp;
     int S7_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_opc;
     S1_tmp = S1;
@@ -569,6 +575,7 @@ void opc(void)
     int S5_tmp;
     int S6_tmp;
     int S7_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     S1_tmp = S1;
@@ -641,6 +648,7 @@ void opc(void)
     int S5_tmp;
     int S6_tmp;
     int S7_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     S1_tmp = S1;
diff --git a/src/plugins/aorai/tests/ya/oracle/test_boucle_rechercheTableau.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_boucle_rechercheTableau.res.oracle
index 6bb7bed4d31..3e9c2f9103d 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_boucle_rechercheTableau.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_boucle_rechercheTableau.res.oracle
@@ -45,6 +45,7 @@ enum aorai_OpStatusList {
     int End_tmp;
     int Idle_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_isPresent;
     End_tmp = End;
@@ -92,6 +93,7 @@ enum aorai_OpStatusList {
     int End_tmp;
     int Idle_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_isPresent;
     End_tmp = End;
@@ -189,6 +191,7 @@ int isPresent(int *t, int max, int val)
     int End_tmp;
     int Idle_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_foo;
     End_tmp = End;
@@ -230,6 +233,7 @@ int isPresent(int *t, int max, int val)
     int End_tmp;
     int Idle_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_foo;
     End_tmp = End;
@@ -284,6 +288,7 @@ void foo(void)
     int End_tmp;
     int Idle_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     End_tmp = End;
@@ -325,6 +330,7 @@ void foo(void)
     int End_tmp;
     int Idle_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     End_tmp = End;
diff --git a/src/plugins/aorai/tests/ya/oracle/test_factorial.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_factorial.res.oracle
index ef459e69225..70c686c2f89 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_factorial.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_factorial.res.oracle
@@ -41,6 +41,7 @@ enum aorai_OpStatusList {
     int S1_tmp;
     int S2_tmp;
     int main_0_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_decode_int;
     S1_tmp = S1;
@@ -87,6 +88,7 @@ enum aorai_OpStatusList {
     int S1_tmp;
     int S2_tmp;
     int main_0_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_decode_int;
     S1_tmp = S1;
@@ -208,6 +210,7 @@ int decode_int(char *s)
     int S1_tmp;
     int S2_tmp;
     int main_0_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_factorial;
     S1_tmp = S1;
@@ -254,6 +257,7 @@ int decode_int(char *s)
     int S1_tmp;
     int S2_tmp;
     int main_0_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_factorial;
     S1_tmp = S1;
@@ -322,6 +326,7 @@ int factorial(int value)
     int S1_tmp;
     int S2_tmp;
     int main_0_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     S1_tmp = S1;
@@ -368,6 +373,7 @@ int factorial(int value)
     int S1_tmp;
     int S2_tmp;
     int main_0_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     S1_tmp = S1;
diff --git a/src/plugins/aorai/tests/ya/oracle/test_recursion4.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_recursion4.res.oracle
index 9ff8daac4d0..968521d3ad2 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_recursion4.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_recursion4.res.oracle
@@ -42,6 +42,7 @@ enum aorai_OpStatusList {
     int End_tmp;
     int Idle_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_isPresent;
     End_tmp = End;
@@ -95,6 +96,7 @@ enum aorai_OpStatusList {
     int End_tmp;
     int Idle_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_isPresent;
     End_tmp = End;
@@ -185,6 +187,7 @@ int isPresent(int *t, int size, int val)
     int End_tmp;
     int Idle_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_foo;
     End_tmp = End;
@@ -226,6 +229,7 @@ int isPresent(int *t, int size, int val)
     int End_tmp;
     int Idle_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_foo;
     End_tmp = End;
@@ -280,6 +284,7 @@ void foo(void)
     int End_tmp;
     int Idle_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     End_tmp = End;
@@ -321,6 +326,7 @@ void foo(void)
     int End_tmp;
     int Idle_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     End_tmp = End;
diff --git a/src/plugins/aorai/tests/ya/oracle/test_recursion5.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_recursion5.res.oracle
index 6510597aa4d..1a84302afcd 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_recursion5.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_recursion5.res.oracle
@@ -53,6 +53,7 @@ enum aorai_OpStatusList {
     int Idle_tmp;
     int IgnoreFoo_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_isPresentRec;
     End_tmp = End;
@@ -117,6 +118,7 @@ enum aorai_OpStatusList {
     int Idle_tmp;
     int IgnoreFoo_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_isPresentRec;
     End_tmp = End;
@@ -215,6 +217,7 @@ int isPresentRec(int *t, int i, int max, int val)
     int Idle_tmp;
     int IgnoreFoo_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_isPresent;
     End_tmp = End;
@@ -272,6 +275,7 @@ int isPresentRec(int *t, int i, int max, int val)
     int Idle_tmp;
     int IgnoreFoo_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_isPresent;
     End_tmp = End;
@@ -352,6 +356,7 @@ int isPresent(int *t, int max, int val)
     int Idle_tmp;
     int IgnoreFoo_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_foo;
     End_tmp = End;
@@ -402,6 +407,7 @@ int isPresent(int *t, int max, int val)
     int Idle_tmp;
     int IgnoreFoo_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_foo;
     End_tmp = End;
@@ -466,6 +472,7 @@ void foo(void)
     int Idle_tmp;
     int IgnoreFoo_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     End_tmp = End;
@@ -516,6 +523,7 @@ void foo(void)
     int Idle_tmp;
     int IgnoreFoo_tmp;
     int WillDoFoo_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     End_tmp = End;
diff --git a/src/plugins/aorai/tests/ya/oracle/test_struct.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_struct.res.oracle
index b73119bb700..e0b06bd1c0f 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_struct.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_struct.res.oracle
@@ -42,6 +42,7 @@ int myAge = 0;
   {
     int S1_tmp;
     int main_0_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_increment;
     S1_tmp = S1;
@@ -77,6 +78,7 @@ int myAge = 0;
   {
     int S1_tmp;
     int main_0_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_increment;
     S1_tmp = S1;
@@ -129,6 +131,7 @@ void increment(void)
   {
     int S1_tmp;
     int main_0_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     S1_tmp = S1;
@@ -164,6 +167,7 @@ void increment(void)
   {
     int S1_tmp;
     int main_0_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     S1_tmp = S1;
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/incorrect.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/incorrect.res.oracle
index e5437b11cf4..16d8f0409c5 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/incorrect.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/incorrect.res.oracle
@@ -3,5 +3,5 @@
 [aorai] Warning: Call to main does not follow automaton's specification. This path is assumed to be dead
 [kernel] Parsing TMPDIR/aorai_incorrect_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
-[kernel:annot:missing-spec] TMPDIR/aorai_incorrect_0.i:62: Warning: 
+[kernel:annot:missing-spec] TMPDIR/aorai_incorrect_0.i:63: Warning: 
   Neither code nor specification for function f, generating default assigns from the prototype
-- 
GitLab


From f440916e58224fb7c22a301b53dd884acd9bf793 Mon Sep 17 00:00:00 2001
From: Valentin Perrelle <valentin.perrelle@cea.fr>
Date: Wed, 18 Nov 2020 01:16:01 +0100
Subject: [PATCH 032/141] [Eva] Export a function to enable global value
 partitioning

---
 src/plugins/value/Eva.mli              | 4 ++++
 src/plugins/value/value_parameters.ml  | 3 +++
 src/plugins/value/value_parameters.mli | 4 ++++
 3 files changed, 11 insertions(+)

diff --git a/src/plugins/value/Eva.mli b/src/plugins/value/Eva.mli
index dc8c0bae4f7..d71fa98faca 100644
--- a/src/plugins/value/Eva.mli
+++ b/src/plugins/value/Eva.mli
@@ -40,6 +40,10 @@ module Value_parameters: sig
       to interpret calls to function [kf].
       Raises [Not_found] if there is no builtin of name [name]. *)
   val use_builtin: Cil_types.kernel_function -> string -> unit
+
+  (** [use_global_value_partitioning vi] instructs the analysis to use
+      value partitioning on the global variable [vi]. *)
+  val use_global_value_partitioning: Cil_types.varinfo -> unit
 end
 
 module Eval_terms: sig
diff --git a/src/plugins/value/value_parameters.ml b/src/plugins/value/value_parameters.ml
index df4428ee75a..122835c78c2 100644
--- a/src/plugins/value/value_parameters.ml
+++ b/src/plugins/value/value_parameters.ml
@@ -800,6 +800,9 @@ module ValuePartitioning =
     end)
 let () = add_precision_dep ValuePartitioning.parameter
 
+let use_global_value_partitioning vi =
+  ValuePartitioning.add vi.Cil_types.vname
+
 let () = Parameter_customize.set_group precision_tuning
 module SplitLimit =
   Int
diff --git a/src/plugins/value/value_parameters.mli b/src/plugins/value/value_parameters.mli
index 573e922bde5..23816c0c964 100644
--- a/src/plugins/value/value_parameters.mli
+++ b/src/plugins/value/value_parameters.mli
@@ -228,6 +228,10 @@ val enabled_domains: unit -> (string * string) list
     builtin `b`. *)
 val use_builtin: Cil_types.kernel_function -> string -> unit
 
+(** [use_global_value_partitioning vi] enable value partitioning on the global
+    variable `vi`. *)
+val use_global_value_partitioning: Cil_types.varinfo -> unit
+
 (*
 Local Variables:
 compile-command: "make -C ../../.."
-- 
GitLab


From e05741ce02ebe74c368061ea626e12f76451ba5b Mon Sep 17 00:00:00 2001
From: Valentin Perrelle <valentin.perrelle@cea.fr>
Date: Wed, 18 Nov 2020 20:30:36 +0100
Subject: [PATCH 033/141] [Aorai] Setup Eva to automatically use value
 partitioning on aorai state and history

---
 src/plugins/aorai/aorai_eva_analysis.enabled.ml | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/src/plugins/aorai/aorai_eva_analysis.enabled.ml b/src/plugins/aorai/aorai_eva_analysis.enabled.ml
index 85aaa035683..39270cf7b64 100644
--- a/src/plugins/aorai/aorai_eva_analysis.enabled.ml
+++ b/src/plugins/aorai/aorai_eva_analysis.enabled.ml
@@ -36,5 +36,15 @@ let add_slevel_annotation vi kind =
 let add_slevel_annotations () =
   Aorai_visitors.Aux_funcs.iter add_slevel_annotation
 
+let add_partitioning varname =
+  match Data_for_aorai.get_varinfo_option varname with
+  | None -> ()
+  | Some vi -> Eva.Value_parameters.use_global_value_partitioning vi
+
+let add_state_variables_partitioning () =
+  add_partitioning Data_for_aorai.curState;
+  List.iter add_partitioning (Data_for_aorai.whole_history ())
+
 let setup () =
-  add_slevel_annotations ()
+  add_slevel_annotations ();
+  add_state_variables_partitioning ()
-- 
GitLab


From 9fcc7679d72a7bfa61e3bd5a06e3f88ef808c994 Mon Sep 17 00:00:00 2001
From: Valentin Perrelle <valentin.perrelle@cea.fr>
Date: Thu, 26 Nov 2020 00:54:11 +0100
Subject: [PATCH 034/141] [Aorai] register an Eva builtin to show the current
 Aorai state and history (trace)

---
 .../aorai/aorai_eva_analysis.enabled.ml       | 26 +++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/src/plugins/aorai/aorai_eva_analysis.enabled.ml b/src/plugins/aorai/aorai_eva_analysis.enabled.ml
index 39270cf7b64..007c6ed88fe 100644
--- a/src/plugins/aorai/aorai_eva_analysis.enabled.ml
+++ b/src/plugins/aorai/aorai_eva_analysis.enabled.ml
@@ -23,6 +23,32 @@
 (*                                                                        *)
 (**************************************************************************)
 
+let show_aorai_variable state fmt var_name =
+  let vi = Data_for_aorai.(get_varinfo var_name) in
+  let cvalue = !Db.Value.eval_expr state (Cil.evar vi) in
+  try
+    let i = Ival.project_int (Cvalue.V.project_ival cvalue) in
+    let state_name = Data_for_aorai.getStateName (Integer.to_int i) in
+    Format.fprintf fmt "%s" state_name
+  with Cvalue.V.Not_based_on_null | Ival.Not_Singleton_Int |
+       Z.Overflow | Not_found ->
+    Format.fprintf fmt "?"
+
+let builtin_show_aorai_state state _args =
+  let history = Data_for_aorai.(curState :: (whole_history ())) in
+  Aorai_option.result ~current:true "@[<hv>%a@]"
+    (Pretty_utils.pp_list ~sep:" <- " (show_aorai_variable state)) history;
+  (* Return value : returns nothing, changes nothing *)
+  {
+    Value_types.c_values = [None, state];
+    c_clobbered = Base.SetLattice.bottom;
+    c_from = None;
+    c_cacheable = Value_types.Cacheable;
+  }
+
+let () =
+  !Db.Value.register_builtin "Frama_C_show_aorai_state" builtin_show_aorai_state
+
 let add_slevel_annotation vi kind =
   match kind with
   | Aorai_visitors.Aux_funcs.(Pre _ | Post _) ->
-- 
GitLab


From b99bc0985cc0714dd27d12672dd6dc418d412f7e Mon Sep 17 00:00:00 2001
From: Valentin Perrelle <valentin.perrelle@cea.fr>
Date: Tue, 18 Dec 2018 19:37:58 +0100
Subject: [PATCH 035/141] [Aorai] Add a complete test for aorai + eva
 combination

---
 .../aorai/tests/ya/oracle/serial.res.oracle   | 691 ++++++++++++++++++
 .../tests/ya/oracle_prove/serial.res.oracle   | 310 ++++++++
 src/plugins/aorai/tests/ya/serial.c           |  88 +++
 src/plugins/aorai/tests/ya/serial.ya          | 160 ++++
 4 files changed, 1249 insertions(+)
 create mode 100644 src/plugins/aorai/tests/ya/oracle/serial.res.oracle
 create mode 100644 src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle
 create mode 100644 src/plugins/aorai/tests/ya/serial.c
 create mode 100644 src/plugins/aorai/tests/ya/serial.ya

diff --git a/src/plugins/aorai/tests/ya/oracle/serial.res.oracle b/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
new file mode 100644
index 00000000000..0a57509c1c6
--- /dev/null
+++ b/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
@@ -0,0 +1,691 @@
+[kernel] Parsing tests/ya/serial.c (with preprocessing)
+[kernel:typing:implicit-function-declaration] tests/ya/serial.c:81: Warning: 
+  Calling undeclared function Frama_C_show_aorai_state. Old style K&R code?
+[aorai] Welcome to the Aorai plugin
+[kernel:annot:missing-spec] tests/ya/serial.c:45: Warning: 
+  Neither code nor specification for function Frama_C_show_aorai_state, generating default assigns from the prototype
+[eva] Analyzing a complete application starting at main
+[eva] Computing initial state
+[eva] Initial state computed
+[eva:initial-state] Values of globals at initialization
+  indefinitely ∈ [--..--]
+  buffer[0..4] ∈ {0}
+  n ∈ {0}
+  aorai_x1 ∈ {0}
+  aorai_x2 ∈ {0}
+  aorai_y1 ∈ {0}
+  aorai_y2 ∈ {0}
+  aorai_CurOperation ∈ {0}
+  aorai_CurOpStatus ∈ {0}
+  aorai_CurStates ∈ {19}
+  aorai_StatesHistory_1 ∈ {19}
+  aorai_StatesHistory_2 ∈ {19}
+[eva] using specification for function Frama_C_interval
+[eva] tests/ya/serial.c:47: starting to merge loop iterations
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 100 states
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 300 states
+[aorai] tests/ya/serial.c:81: Wait1 <- Wait1 <- Complete
+[aorai] tests/ya/serial.c:81: Error <- Error <- Complete
+[aorai] tests/ya/serial.c:81: Complete <- Complete <- Complete
+[aorai] tests/ya/serial.c:81: Wait1 <- Wait1 <- Complete
+[aorai] tests/ya/serial.c:81: Error <- Error <- Complete
+[aorai] tests/ya/serial.c:81: Complete <- Complete <- Complete
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 500 states
+[eva:alarm] tests/ya/serial.c:54: Warning: 
+  accessing uninitialized left-value. assert \initialized(&status);
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 700 states
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 900 states
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 1200 states
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 1500 states
+[aorai] tests/ya/serial.c:81: Error <- Error <- Error
+[aorai] tests/ya/serial.c:81: Error <- Error <- Error
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 1700 states
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 1900 states
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 2000 states
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 2100 states
+[eva] done for function main
+[eva] ====== VALUES COMPUTED ======
+[eva:final-states] Values at end of function input_data_post_func:
+  aorai_x1 ∈
+          {0; 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}
+  aorai_x2 ∈
+          {0; 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}
+  aorai_y1 ∈
+          {0; 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}
+  aorai_y2 ∈ [0..2147483647]
+  aorai_CurOperation ∈ {2}
+  aorai_CurOpStatus ∈ {1}
+  aorai_CurStates ∈ {0; 7; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 7}
+  aorai_StatesHistory_2 ∈ {7; 8; 9; 10; 11; 12; 13}
+[eva:final-states] Values at end of function input_data_pre_func:
+  aorai_CurOperation ∈ {2}
+  aorai_CurOpStatus ∈ {0}
+  aorai_CurStates ∈ {1; 2; 3; 4; 5; 6; 7}
+  aorai_StatesHistory_1 ∈ {7; 8; 9; 10; 11; 12; 13}
+  aorai_StatesHistory_2 ∈ {7; 14; 15; 16; 17; 18}
+[eva:final-states] Values at end of function input_data:
+  Frama_C_entropy_source ∈ [--..--]
+  aorai_x1 ∈
+          {0; 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}
+  aorai_x2 ∈
+          {0; 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}
+  aorai_y1 ∈
+          {0; 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}
+  aorai_y2 ∈ [0..2147483647]
+  aorai_CurOperation ∈ {2}
+  aorai_CurOpStatus ∈ {1}
+  aorai_CurStates ∈ {0; 7; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 7}
+  aorai_StatesHistory_2 ∈ {7; 8; 9; 10; 11; 12; 13}
+[eva:final-states] Values at end of function input_status_post_func:
+  aorai_CurOperation ∈ {1}
+  aorai_CurOpStatus ∈ {1}
+  aorai_CurStates ∈ {7; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_1 ∈ {7; 14; 15; 16; 17; 18}
+  aorai_StatesHistory_2 ∈ {0; 7; 19; 20; 21; 22; 23}
+[eva:final-states] Values at end of function input_status_pre_func:
+  aorai_CurOperation ∈ {1}
+  aorai_CurOpStatus ∈ {0}
+  aorai_CurStates ∈ {7; 14; 15; 16; 17; 18}
+  aorai_StatesHistory_1 ∈ {0; 7; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_2 ∈ {0; 1; 2; 3; 4; 5; 6; 7; 14; 15; 16; 17; 18; 19}
+[eva:final-states] Values at end of function input_status:
+  Frama_C_entropy_source ∈ [--..--]
+  aorai_CurOperation ∈ {1}
+  aorai_CurOpStatus ∈ {1}
+  aorai_CurStates ∈ {7; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_1 ∈ {7; 14; 15; 16; 17; 18}
+  aorai_StatesHistory_2 ∈ {0; 7; 19; 20; 21; 22; 23}
+[eva:final-states] Values at end of function output_post_func:
+  aorai_CurOperation ∈ {0}
+  aorai_CurOpStatus ∈ {1}
+  aorai_CurStates ∈ {0; 7; 19}
+  aorai_StatesHistory_1 ∈ {0; 7; 19}
+  aorai_StatesHistory_2 ∈ {0; 7}
+[eva:final-states] Values at end of function output_pre_func:
+  aorai_CurOperation ∈ {0}
+  aorai_CurOpStatus ∈ {0}
+  aorai_CurStates ∈ {0; 7; 19}
+  aorai_StatesHistory_1 ∈ {0; 7}
+  aorai_StatesHistory_2 ∈ {5; 7}
+[eva:final-states] Values at end of function output:
+  aorai_CurOperation ∈ {0}
+  aorai_CurOpStatus ∈ {1}
+  aorai_CurStates ∈ {0; 7; 19}
+  aorai_StatesHistory_1 ∈ {0; 7; 19}
+  aorai_StatesHistory_2 ∈ {0; 7}
+[eva:final-states] Values at end of function read:
+  Frama_C_entropy_source ∈ [--..--]
+  s ∈
+   {0; 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}
+  status ∈ {0; 2; 4; 6; 8; 10; 12; 14} or UNINITIALIZED
+  __retres ∈ [-1..255]
+  aorai_x1 ∈
+          {0; 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}
+  aorai_x2 ∈
+          {0; 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}
+  aorai_y1 ∈
+          {0; 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}
+  aorai_y2 ∈ [0..2147483647]
+  aorai_CurOperation ∈ {1; 2}
+  aorai_CurOpStatus ∈ {1}
+  aorai_CurStates ∈ {0; 7; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 7; 14; 15; 16; 17; 18}
+  aorai_StatesHistory_2 ∈ {0; 7; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
+[eva:final-states] Values at end of function main:
+  Frama_C_entropy_source ∈ [--..--]
+  buffer[0] ∈
+        {0; 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}
+        [1..2] ∈
+        {0; 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}
+        [3..4] ∈ [0..2147483647]
+  n ∈ {0; 1; 2; 3; 4}
+  aorai_x1 ∈
+          {0; 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}
+  aorai_x2 ∈
+          {0; 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}
+  aorai_y1 ∈
+          {0; 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}
+  aorai_y2 ∈ [0..2147483647]
+  aorai_CurOperation ∈ {0; 1; 2}
+  aorai_CurOpStatus ∈ {0; 1}
+  aorai_CurStates ∈ {0; 7; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_1 ∈ {0; 1; 2; 3; 4; 5; 6; 7; 14; 15; 16; 17; 18; 19}
+  aorai_StatesHistory_2 ∈ {0; 7; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
+[eva:summary] ====== ANALYSIS SUMMARY ======
+  ----------------------------------------------------------------------------
+  11 functions analyzed (out of 11): 100% coverage.
+  In these functions, 216 statements reached (out of 255): 84% coverage.
+  ----------------------------------------------------------------------------
+  Some errors and warnings have been raised during the analysis:
+    by the Eva analyzer:      0 errors    0 warnings
+    by the Frama-C kernel:    0 errors    1 warning
+  ----------------------------------------------------------------------------
+  1 alarm generated by the analysis:
+       1 access to uninitialized left-values
+  ----------------------------------------------------------------------------
+  Evaluation of the logical properties reached by the analysis:
+    Assertions        0 valid     0 unknown     0 invalid      0 total
+    Preconditions     2 valid     0 unknown     0 invalid      2 total
+  100% of the logical properties reached have been proven.
+  ----------------------------------------------------------------------------
+[kernel] Parsing TMPDIR/aorai_serial_0.i (no preprocessing)
+[kernel:typing:implicit-function-declaration] TMPDIR/aorai_serial_0.i:176: Warning: 
+  Calling undeclared function Frama_C_interval. Old style K&R code?
+/* Generated by Frama-C */
+enum aorai_States {
+    aorai_reject_state = -2,
+    Complete = 0,
+    DataReq1 = 1,
+    DataReq2 = 2,
+    DataReq3 = 3,
+    DataReq4 = 4,
+    DataReq5 = 5,
+    DataReqE = 6,
+    Error = 7,
+    StatusError = 8,
+    StatusOk1 = 9,
+    StatusOk2 = 10,
+    StatusOk3 = 11,
+    StatusOk4 = 12,
+    StatusOk5 = 13,
+    StatusReq1 = 14,
+    StatusReq2 = 15,
+    StatusReq3 = 16,
+    StatusReq4 = 17,
+    StatusReq5 = 18,
+    Wait1 = 19,
+    Wait2 = 20,
+    Wait3 = 21,
+    Wait4 = 22,
+    Wait5 = 23
+};
+enum aorai_ListOper {
+    op_input_data = 2,
+    op_input_status = 1,
+    op_output = 0
+};
+enum aorai_OpStatusList {
+    aorai_Terminated = 1,
+    aorai_Called = 0
+};
+int volatile indefinitely;
+int buffer[5];
+int n = 0;
+/*@ assigns \result;
+    assigns \result \from \nothing; */
+extern int Frama_C_show_aorai_state(void);
+
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
+/*@ ghost int aorai_CurStates = Wait1; */
+/*@ ghost int aorai_StatesHistory_1 = Wait1; */
+/*@ ghost int aorai_StatesHistory_2 = Wait1; */
+/*@ ghost int aorai_x1 = 0; */
+/*@ ghost int aorai_x2 = 0; */
+/*@ ghost int aorai_y1 = 0; */
+/*@ ghost int aorai_y2 = 0; */
+/*@ ghost
+  void input_status_pre_func(void)
+  {
+    /@ slevel full; @/
+    aorai_CurOpStatus = aorai_Called;
+    aorai_CurOperation = op_input_status;
+    aorai_StatesHistory_2 = aorai_StatesHistory_1;
+    aorai_StatesHistory_1 = aorai_CurStates;
+    if (19 == aorai_CurStates) aorai_CurStates = StatusReq1;
+    else 
+      if (9 == aorai_CurStates) aorai_CurStates = StatusReq1;
+      else 
+        if (8 == aorai_CurStates) aorai_CurStates = StatusReq1;
+        else 
+          if (0 == aorai_CurStates) aorai_CurStates = StatusReq1;
+          else 
+            if (20 == aorai_CurStates) aorai_CurStates = StatusReq2;
+            else 
+              if (10 == aorai_CurStates) aorai_CurStates = StatusReq2;
+              else 
+                if (21 == aorai_CurStates) aorai_CurStates = StatusReq3;
+                else 
+                  if (11 == aorai_CurStates) aorai_CurStates = StatusReq3;
+                  else 
+                    if (22 == aorai_CurStates) aorai_CurStates = StatusReq4;
+                    else 
+                      if (12 == aorai_CurStates) aorai_CurStates = StatusReq4;
+                      else 
+                        if (23 == aorai_CurStates) aorai_CurStates = StatusReq5;
+                        else 
+                          if (13 == aorai_CurStates) aorai_CurStates = StatusReq5;
+    return;
+  }
+
+*/
+
+/*@ ghost
+  void input_status_post_func(int res)
+  {
+    /@ slevel full; @/
+    aorai_CurOpStatus = aorai_Terminated;
+    aorai_CurOperation = op_input_status;
+    aorai_StatesHistory_2 = aorai_StatesHistory_1;
+    aorai_StatesHistory_1 = aorai_CurStates;
+    if (18 == aorai_CurStates && ((res & 15) != 1 && (res & 1) != 0)) 
+      aorai_CurStates = StatusError;
+    else 
+      if (17 == aorai_CurStates && ((res & 15) != 1 && (res & 1) != 0)) 
+        aorai_CurStates = StatusError;
+      else 
+        if (16 == aorai_CurStates && ((res & 15) != 1 && (res & 1) != 0)) 
+          aorai_CurStates = StatusError;
+        else 
+          if (15 == aorai_CurStates && ((res & 15) != 1 && (res & 1) != 0)) 
+            aorai_CurStates = StatusError;
+          else 
+            if (14 == aorai_CurStates && ((res & 15) != 1 && (res & 1) != 0)) 
+              aorai_CurStates = StatusError;
+            else 
+              if (14 == aorai_CurStates && (res & 15) == 1) aorai_CurStates = StatusOk1;
+              else 
+                if (15 == aorai_CurStates && (res & 15) == 1) aorai_CurStates = StatusOk2;
+                else 
+                  if (16 == aorai_CurStates && (res & 15) == 1) aorai_CurStates = StatusOk3;
+                  else 
+                    if (17 == aorai_CurStates && (res & 15) == 1) aorai_CurStates = StatusOk4;
+                    else 
+                      if (18 == aorai_CurStates && (res & 15) == 1) aorai_CurStates = StatusOk5;
+                      else 
+                        if (14 == aorai_CurStates && (res & 1) == 0) 
+                          aorai_CurStates = Wait1;
+                        else 
+                          if (15 == aorai_CurStates && (res & 1) == 0) 
+                            aorai_CurStates = Wait2;
+                          else 
+                            if (16 == aorai_CurStates && (res & 1) == 0) 
+                              aorai_CurStates = Wait3;
+                            else 
+                              if (17 == aorai_CurStates && (res & 1) == 0) 
+                                aorai_CurStates = Wait4;
+                              else 
+                                if (18 == aorai_CurStates && (res & 1) == 0) 
+                                  aorai_CurStates = Wait5;
+    return;
+  }
+
+*/
+
+extern int ( /* missing proto */ Frama_C_interval)(int x_0, int x_1);
+
+/*@ ensures 0 ≤ \result < 0x100;
+    assigns \result;
+    assigns \result \from \nothing;
+ */
+int input_status(void)
+{
+  int tmp;
+  /*@ ghost input_status_pre_func(); */
+  tmp = Frama_C_interval(0x00,0xff);
+  /*@ ghost input_status_post_func(tmp); */
+  return tmp;
+}
+
+/*@ ghost
+  void input_data_pre_func(void)
+  {
+    /@ slevel full; @/
+    aorai_CurOpStatus = aorai_Called;
+    aorai_CurOperation = op_input_data;
+    aorai_StatesHistory_2 = aorai_StatesHistory_1;
+    aorai_StatesHistory_1 = aorai_CurStates;
+    if (9 == aorai_CurStates) aorai_CurStates = DataReq1;
+    else 
+      if (10 == aorai_CurStates) aorai_CurStates = DataReq2;
+      else 
+        if (11 == aorai_CurStates) aorai_CurStates = DataReq3;
+        else 
+          if (12 == aorai_CurStates) aorai_CurStates = DataReq4;
+          else 
+            if (13 == aorai_CurStates) aorai_CurStates = DataReq5;
+            else 
+              if (8 == aorai_CurStates) aorai_CurStates = DataReqE;
+              else 
+                if (23 == aorai_CurStates) aorai_CurStates = Error;
+                else 
+                  if (22 == aorai_CurStates) aorai_CurStates = Error;
+                  else 
+                    if (21 == aorai_CurStates) aorai_CurStates = Error;
+                    else 
+                      if (20 == aorai_CurStates) aorai_CurStates = Error;
+                      else 
+                        if (19 == aorai_CurStates) aorai_CurStates = Error;
+    return;
+  }
+
+*/
+
+/*@ ghost
+  void input_data_post_func(int res)
+  {
+    /@ slevel full; @/
+    aorai_CurOpStatus = aorai_Terminated;
+    aorai_CurOperation = op_input_data;
+    aorai_StatesHistory_2 = aorai_StatesHistory_1;
+    aorai_StatesHistory_1 = aorai_CurStates;
+    if (5 == aorai_CurStates && (res & 128) == 0) {
+      aorai_CurStates = Complete;
+      aorai_y2 = res;
+    }
+    else 
+      if (6 == aorai_CurStates) aorai_CurStates = Wait1;
+      else 
+        if (5 == aorai_CurStates && (res & 192) == 192) aorai_CurStates = Wait1;
+        else 
+          if (4 == aorai_CurStates && (res & 192) == 192) aorai_CurStates = Wait1;
+          else 
+            if (3 == aorai_CurStates && (res & 192) == 192) aorai_CurStates = Wait1;
+            else 
+              if (2 == aorai_CurStates && (res & 192) == 192) aorai_CurStates = Wait1;
+              else 
+                if (1 == aorai_CurStates && (res & 128) == 0) aorai_CurStates = Wait1;
+                else 
+                  if (1 == aorai_CurStates && (res & 192) == 192) aorai_CurStates = Wait1;
+                  else 
+                    if (5 == aorai_CurStates && (res & 192) == 128) aorai_CurStates = Wait2;
+                    else 
+                      if (4 == aorai_CurStates && (res & 192) == 128) 
+                        aorai_CurStates = Wait2;
+                      else 
+                        if (3 == aorai_CurStates && (res & 192) == 128) 
+                          aorai_CurStates = Wait2;
+                        else 
+                          if (2 == aorai_CurStates && (res & 192) == 128) 
+                            aorai_CurStates = Wait2;
+                          else 
+                            if (1 == aorai_CurStates && (res & 192) == 128) 
+                              aorai_CurStates = Wait2;
+                            else 
+                              if (2 == aorai_CurStates && (res & 128) == 0) {
+                                aorai_CurStates = Wait3;
+                                aorai_x1 = res;
+                              }
+                              else 
+                                if (3 == aorai_CurStates && (res & 128) == 0) {
+                                  aorai_CurStates = Wait4;
+                                  aorai_x2 = res;
+                                }
+                                else 
+                                  if (4 == aorai_CurStates && (res & 128) == 0) {
+                                    aorai_CurStates = Wait5;
+                                    aorai_y1 = res;
+                                  }
+    return;
+  }
+
+*/
+
+/*@ ensures 0 ≤ \result < 0x100;
+    assigns \result;
+    assigns \result \from \nothing;
+ */
+int input_data(void)
+{
+  int tmp;
+  /*@ ghost input_data_pre_func(); */
+  tmp = Frama_C_interval(0x00,0xff);
+  /*@ ghost input_data_post_func(tmp); */
+  return tmp;
+}
+
+/*@ ghost
+  void output_pre_func(int x, int y)
+  {
+    /@ slevel full; @/
+    aorai_CurOpStatus = aorai_Called;
+    aorai_CurOperation = op_output;
+    aorai_StatesHistory_2 = aorai_StatesHistory_1;
+    aorai_StatesHistory_1 = aorai_CurStates;
+    if (23 == aorai_CurStates) aorai_CurStates = Error;
+    else 
+      if (22 == aorai_CurStates) aorai_CurStates = Error;
+      else 
+        if (21 == aorai_CurStates) aorai_CurStates = Error;
+        else 
+          if (20 == aorai_CurStates) aorai_CurStates = Error;
+          else 
+            if (19 == aorai_CurStates) aorai_CurStates = Error;
+            else 
+              if (13 == aorai_CurStates) aorai_CurStates = Error;
+              else 
+                if (12 == aorai_CurStates) aorai_CurStates = Error;
+                else 
+                  if (11 == aorai_CurStates) aorai_CurStates = Error;
+                  else 
+                    if (10 == aorai_CurStates) aorai_CurStates = Error;
+                    else 
+                      if (9 == aorai_CurStates) aorai_CurStates = Error;
+                      else 
+                        if (8 == aorai_CurStates) aorai_CurStates = Error;
+                        else 
+                          if (0 == aorai_CurStates && (y != aorai_y1 + 
+                                                            128 * aorai_y2 || 
+                                                       x != aorai_x1 + 
+                                                            128 * aorai_x2)) 
+                            aorai_CurStates = Error;
+                          else 
+                            if (0 == aorai_CurStates && (x == aorai_x1 + 
+                                                              128 * aorai_x2 && 
+                                                         y == aorai_y1 + 
+                                                              128 * aorai_y2)) 
+                              aorai_CurStates = Wait1;
+    return;
+  }
+
+*/
+
+/*@ ghost
+  void output_post_func(void)
+  {
+    /@ slevel full; @/
+    aorai_CurOpStatus = aorai_Terminated;
+    aorai_CurOperation = op_output;
+    aorai_StatesHistory_2 = aorai_StatesHistory_1;
+    aorai_StatesHistory_1 = aorai_CurStates;
+    if (19 == aorai_CurStates) aorai_CurStates = Wait1;
+    return;
+  }
+
+*/
+
+/*@ assigns \nothing; */
+void output(int x, int y)
+{
+  /*@ ghost output_pre_func(x,y); */
+  /*@ ghost output_post_func(); */
+  return;
+}
+
+int read(int *status)
+{
+  int __retres;
+  int s = input_status();
+  if (s & 0x01) {
+    int tmp_0;
+    *status = s & 0x0e;
+    tmp_0 = input_data();
+    __retres = tmp_0;
+    goto return_label;
+  }
+  __retres = -1;
+  return_label: ;
+  return __retres;
+}
+
+void main(void)
+{
+  /*@ ghost int aorai_Loop_Init_18; */
+  while (indefinitely) {
+    int status;
+    int data = read(& status);
+    if (data != -1) {
+      int tmp_0;
+      /*@ assert Eva: initialization: \initialized(&status); */ ;
+      if (status != 0) {
+        n = 0;
+        continue;
+      }
+      if (data & 0x80) {
+        if (n != 0) {
+          n = 0;
+          continue;
+        }
+      }
+      else {
+        /*@ split data & 0x40; */ ;
+        if (n == 0) continue;
+      }
+      tmp_0 = n;
+      n ++;
+      buffer[tmp_0] = data;
+      if (n == 5) {
+        if ((buffer[0] & 0x40) == 0) {
+          int x = buffer[1] + 0x80 * buffer[2];
+          int y = buffer[3] + 0x80 * buffer[4];
+          output(x,y);
+          Frama_C_show_aorai_state();
+        }
+        n = 0;
+      }
+    }
+  }
+  return;
+}
+
+
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle
new file mode 100644
index 00000000000..2572e58edad
--- /dev/null
+++ b/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle
@@ -0,0 +1,310 @@
+[kernel] Parsing tests/ya/serial.c (with preprocessing)
+[kernel:typing:implicit-function-declaration] tests/ya/serial.c:81: Warning: 
+  Calling undeclared function Frama_C_show_aorai_state. Old style K&R code?
+[aorai] Welcome to the Aorai plugin
+[kernel:annot:missing-spec] tests/ya/serial.c:45: Warning: 
+  Neither code nor specification for function Frama_C_show_aorai_state, generating default assigns from the prototype
+[eva] Analyzing a complete application starting at main
+[eva] Computing initial state
+[eva] Initial state computed
+[eva:initial-state] Values of globals at initialization
+  indefinitely ∈ [--..--]
+  buffer[0..4] ∈ {0}
+  n ∈ {0}
+  aorai_x1 ∈ {0}
+  aorai_x2 ∈ {0}
+  aorai_y1 ∈ {0}
+  aorai_y2 ∈ {0}
+  aorai_CurOperation ∈ {0}
+  aorai_CurOpStatus ∈ {0}
+  aorai_CurStates ∈ {19}
+  aorai_StatesHistory_1 ∈ {19}
+  aorai_StatesHistory_2 ∈ {19}
+[eva] using specification for function Frama_C_interval
+[eva] tests/ya/serial.c:47: starting to merge loop iterations
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 100 states
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 300 states
+[aorai] tests/ya/serial.c:81: Wait1 <- Wait1 <- Complete
+[aorai] tests/ya/serial.c:81: Error <- Error <- Complete
+[aorai] tests/ya/serial.c:81: Complete <- Complete <- Complete
+[aorai] tests/ya/serial.c:81: Wait1 <- Wait1 <- Complete
+[aorai] tests/ya/serial.c:81: Error <- Error <- Complete
+[aorai] tests/ya/serial.c:81: Complete <- Complete <- Complete
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 500 states
+[eva:alarm] tests/ya/serial.c:54: Warning: 
+  accessing uninitialized left-value. assert \initialized(&status);
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 700 states
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 900 states
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 1200 states
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 1500 states
+[aorai] tests/ya/serial.c:81: Error <- Error <- Error
+[aorai] tests/ya/serial.c:81: Error <- Error <- Error
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 1700 states
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 1900 states
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 2000 states
+[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 2100 states
+[eva] done for function main
+[eva] ====== VALUES COMPUTED ======
+[eva:final-states] Values at end of function input_data_post_func:
+  aorai_x1 ∈
+          {0; 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}
+  aorai_x2 ∈
+          {0; 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}
+  aorai_y1 ∈
+          {0; 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}
+  aorai_y2 ∈ [0..2147483647]
+  aorai_CurOperation ∈ {2}
+  aorai_CurOpStatus ∈ {1}
+  aorai_CurStates ∈ {0; 7; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 7}
+  aorai_StatesHistory_2 ∈ {7; 8; 9; 10; 11; 12; 13}
+[eva:final-states] Values at end of function input_data_pre_func:
+  aorai_CurOperation ∈ {2}
+  aorai_CurOpStatus ∈ {0}
+  aorai_CurStates ∈ {1; 2; 3; 4; 5; 6; 7}
+  aorai_StatesHistory_1 ∈ {7; 8; 9; 10; 11; 12; 13}
+  aorai_StatesHistory_2 ∈ {7; 14; 15; 16; 17; 18}
+[eva:final-states] Values at end of function input_data:
+  Frama_C_entropy_source ∈ [--..--]
+  aorai_x1 ∈
+          {0; 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}
+  aorai_x2 ∈
+          {0; 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}
+  aorai_y1 ∈
+          {0; 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}
+  aorai_y2 ∈ [0..2147483647]
+  aorai_CurOperation ∈ {2}
+  aorai_CurOpStatus ∈ {1}
+  aorai_CurStates ∈ {0; 7; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 7}
+  aorai_StatesHistory_2 ∈ {7; 8; 9; 10; 11; 12; 13}
+[eva:final-states] Values at end of function input_status_post_func:
+  aorai_CurOperation ∈ {1}
+  aorai_CurOpStatus ∈ {1}
+  aorai_CurStates ∈ {7; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_1 ∈ {7; 14; 15; 16; 17; 18}
+  aorai_StatesHistory_2 ∈ {0; 7; 19; 20; 21; 22; 23}
+[eva:final-states] Values at end of function input_status_pre_func:
+  aorai_CurOperation ∈ {1}
+  aorai_CurOpStatus ∈ {0}
+  aorai_CurStates ∈ {7; 14; 15; 16; 17; 18}
+  aorai_StatesHistory_1 ∈ {0; 7; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_2 ∈ {0; 1; 2; 3; 4; 5; 6; 7; 14; 15; 16; 17; 18; 19}
+[eva:final-states] Values at end of function input_status:
+  Frama_C_entropy_source ∈ [--..--]
+  aorai_CurOperation ∈ {1}
+  aorai_CurOpStatus ∈ {1}
+  aorai_CurStates ∈ {7; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_1 ∈ {7; 14; 15; 16; 17; 18}
+  aorai_StatesHistory_2 ∈ {0; 7; 19; 20; 21; 22; 23}
+[eva:final-states] Values at end of function output_post_func:
+  aorai_CurOperation ∈ {0}
+  aorai_CurOpStatus ∈ {1}
+  aorai_CurStates ∈ {0; 7; 19}
+  aorai_StatesHistory_1 ∈ {0; 7; 19}
+  aorai_StatesHistory_2 ∈ {0; 7}
+[eva:final-states] Values at end of function output_pre_func:
+  aorai_CurOperation ∈ {0}
+  aorai_CurOpStatus ∈ {0}
+  aorai_CurStates ∈ {0; 7; 19}
+  aorai_StatesHistory_1 ∈ {0; 7}
+  aorai_StatesHistory_2 ∈ {5; 7}
+[eva:final-states] Values at end of function output:
+  aorai_CurOperation ∈ {0}
+  aorai_CurOpStatus ∈ {1}
+  aorai_CurStates ∈ {0; 7; 19}
+  aorai_StatesHistory_1 ∈ {0; 7; 19}
+  aorai_StatesHistory_2 ∈ {0; 7}
+[eva:final-states] Values at end of function read:
+  Frama_C_entropy_source ∈ [--..--]
+  s ∈
+   {0; 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}
+  status ∈ {0; 2; 4; 6; 8; 10; 12; 14} or UNINITIALIZED
+  __retres ∈ [-1..255]
+  aorai_x1 ∈
+          {0; 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}
+  aorai_x2 ∈
+          {0; 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}
+  aorai_y1 ∈
+          {0; 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}
+  aorai_y2 ∈ [0..2147483647]
+  aorai_CurOperation ∈ {1; 2}
+  aorai_CurOpStatus ∈ {1}
+  aorai_CurStates ∈ {0; 7; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 7; 14; 15; 16; 17; 18}
+  aorai_StatesHistory_2 ∈ {0; 7; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
+[eva:final-states] Values at end of function main:
+  Frama_C_entropy_source ∈ [--..--]
+  buffer[0] ∈
+        {0; 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}
+        [1..2] ∈
+        {0; 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}
+        [3..4] ∈ [0..2147483647]
+  n ∈ {0; 1; 2; 3; 4}
+  aorai_x1 ∈
+          {0; 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}
+  aorai_x2 ∈
+          {0; 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}
+  aorai_y1 ∈
+          {0; 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}
+  aorai_y2 ∈ [0..2147483647]
+  aorai_CurOperation ∈ {0; 1; 2}
+  aorai_CurOpStatus ∈ {0; 1}
+  aorai_CurStates ∈ {0; 7; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_1 ∈ {0; 1; 2; 3; 4; 5; 6; 7; 14; 15; 16; 17; 18; 19}
+  aorai_StatesHistory_2 ∈ {0; 7; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
+[eva:summary] ====== ANALYSIS SUMMARY ======
+  ----------------------------------------------------------------------------
+  11 functions analyzed (out of 11): 100% coverage.
+  In these functions, 216 statements reached (out of 255): 84% coverage.
+  ----------------------------------------------------------------------------
+  Some errors and warnings have been raised during the analysis:
+    by the Eva analyzer:      0 errors    0 warnings
+    by the Frama-C kernel:    0 errors    1 warning
+  ----------------------------------------------------------------------------
+  1 alarm generated by the analysis:
+       1 access to uninitialized left-values
+  ----------------------------------------------------------------------------
+  Evaluation of the logical properties reached by the analysis:
+    Assertions        0 valid     0 unknown     0 invalid      0 total
+    Preconditions     2 valid     0 unknown     0 invalid      2 total
+  100% of the logical properties reached have been proven.
+  ----------------------------------------------------------------------------
+[kernel] Parsing TMPDIR/aorai_serial_0.i (no preprocessing)
+[kernel:typing:implicit-function-declaration] TMPDIR/aorai_serial_0.i:176: Warning: 
+  Calling undeclared function Frama_C_interval. Old style K&R code?
+[wp] Warning: Missing RTE guards
+[wp] Warning: No goal generated
+[wp] Warning: No goal generated
+[wp] Warning: No goal generated
+[wp] Warning: No goal generated
+[wp] Warning: No goal generated
+[wp] Warning: No goal generated
diff --git a/src/plugins/aorai/tests/ya/serial.c b/src/plugins/aorai/tests/ya/serial.c
new file mode 100644
index 00000000000..2e8b8bc3d45
--- /dev/null
+++ b/src/plugins/aorai/tests/ya/serial.c
@@ -0,0 +1,88 @@
+/* run.config*
+  OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@ -aorai-no-acceptance -aorai-instrumentation-history 2 -aorai-no-generate-annotations -aorai-no-generate-deterministic-lemmas -then-last -eva -eva-partition-value n -eva-ilevel 256
+*/
+
+#include "__fc_builtin.h"
+#include "aorai/aorai.h"
+
+
+/*@ assigns \result \from \nothing;
+    ensures 0 <= \result < 0x100; */
+int input_status(void) {
+  return Frama_C_interval(0x00, 0xff);
+}
+
+/*@ assigns \result \from \nothing;
+    ensures 0 <= \result < 0x100; */
+int input_data(void) {
+  return Frama_C_interval(0x00, 0xff);
+}
+
+/*@ assigns \nothing; */
+void output(int x, int y) {
+  // do nothing
+}
+
+
+int read(int *status)
+{
+  int s = input_status();
+
+  if (s & 0x01) {
+    *status = s & 0x0e;
+    return input_data();
+  }
+
+  return -1;
+}
+
+
+volatile int indefinitely;
+
+int buffer[5]; // buffer to store bytes
+int n = 0; // number of bytes received
+
+void main(void)
+{
+  while (indefinitely)
+  {
+    int status;
+    int data = read(&status);
+
+    if (data != -1) { // data is present
+
+      if (status != 0) { // read issue
+        n = 0;
+        continue;
+      }
+      if (data & 0x80) { // status received
+        if (n != 0) { // but data was expected
+          n = 0;
+          continue;
+        }
+        //@ split data & 0x40;
+      }
+      else { // data receieved
+        if (n == 0) { // but status was expected}
+          continue;
+        }
+      }
+
+      buffer[n++] = data;
+
+      if (n == 5) { // the packet is completely read
+        if ((buffer[0] & 0x40) == 0) // it is a release action
+        {
+          int x = buffer[1] + 0x80 * buffer[2];
+          int y = buffer[3] + 0x80 * buffer[4];
+          output(x, y);
+          /* "Error" state should show up as, for now, it is  hard to prove
+            the metavariable équation in the input automaton */
+          Frama_C_show_aorai_state();
+        }
+
+        n = 0;
+      }
+    }
+  }
+}
diff --git a/src/plugins/aorai/tests/ya/serial.ya b/src/plugins/aorai/tests/ya/serial.ya
new file mode 100644
index 00000000000..8fde0de6e29
--- /dev/null
+++ b/src/plugins/aorai/tests/ya/serial.ya
@@ -0,0 +1,160 @@
+%init : Wait1;
+%deterministic;
+%observables: input_status, input_data, output;
+
+$x1 : int;
+$x2 : int;
+$y1 : int;
+$y2 : int;
+
+Error : { 0 } -> Error;
+
+Wait1 :
+  { CALL(input_status) } -> StatusReq1
+| { CALL(input_data) } -> Error
+| { CALL(output) } -> Error
+| other -> Wait1
+;
+
+Wait2 :
+  { CALL(input_status) } -> StatusReq2
+| { CALL(input_data) } -> Error
+| { CALL(output) } -> Error
+| other -> Wait2
+;
+
+Wait3 :
+  { CALL(input_status) } -> StatusReq3
+| { CALL(input_data) } -> Error
+| { CALL(output) } -> Error
+| other -> Wait3
+;
+
+Wait4 :
+  { CALL(input_status) } -> StatusReq4
+| { CALL(input_data) } -> Error
+| { CALL(output) } -> Error
+| other -> Wait4
+;
+
+Wait5 :
+  { CALL(input_status) } -> StatusReq5
+| { CALL(input_data) } -> Error
+| { CALL(output) } -> Error
+| other -> Wait5
+;
+
+StatusReq1 :
+  { input_status().\result & 1 == 0 } -> Wait1
+| { input_status().\result & 15 == 1 } -> StatusOk1
+| other -> StatusError
+;
+
+StatusReq2 :
+  { input_status().\result & 1 == 0 } -> Wait2
+| { input_status().\result & 15 == 1 } -> StatusOk2
+| other -> StatusError
+;
+
+StatusReq3 :
+  { input_status().\result & 1 == 0 } -> Wait3
+| { input_status().\result & 15 == 1 } -> StatusOk3
+| other -> StatusError
+;
+
+StatusReq4 :
+  { input_status().\result & 1 == 0 } -> Wait4
+| { input_status().\result & 15 == 1 } -> StatusOk4
+| other -> StatusError
+;
+
+StatusReq5 :
+  { input_status().\result & 1 == 0 } -> Wait5
+| { input_status().\result & 15 == 1 } -> StatusOk5
+| other -> StatusError
+;
+
+StatusError :
+  { CALL(input_status) } -> StatusReq1
+| { CALL(input_data) } -> DataReqE
+| { CALL(output) } -> Error
+| other -> StatusError
+;
+
+StatusOk1 :
+  { CALL(input_status) } -> StatusReq1
+| { CALL(input_data) } -> DataReq1
+| { CALL(output) } -> Error
+| other -> StatusOk1
+;
+
+StatusOk2 :
+  { CALL(input_status) } -> StatusReq2
+| { CALL(input_data) } -> DataReq2
+| { CALL(output) } -> Error
+| other -> StatusOk2
+;
+
+StatusOk3 :
+  { CALL(input_status) } -> StatusReq3
+| { CALL(input_data) } -> DataReq3
+| { CALL(output) } -> Error
+| other -> StatusOk3
+;
+
+StatusOk4 :
+  { CALL(input_status) } -> StatusReq4
+| { CALL(input_data) } -> DataReq4
+| { CALL(output) } -> Error
+| other -> StatusOk4
+;
+
+StatusOk5 :
+  { CALL(input_status) } -> StatusReq5
+| { CALL(input_data) } -> DataReq5
+| { CALL(output) } -> Error
+| other -> StatusOk5
+;
+
+DataReqE :
+  { RETURN(input_data) } -> Wait1
+;
+
+DataReq1 :
+  { input_data().\result & 192 == 128 } -> Wait2
+| { input_data().\result & 192 == 192 } -> Wait1
+| { input_data().\result & 128 == 0 } -> Wait1
+;
+
+DataReq2 :
+  { input_data().\result & 192 == 128 } -> Wait2
+| { input_data().\result & 192 == 192 } -> Wait1
+| { input_data().\result & 128 == 0 } $x1 := \result -> Wait3
+;
+
+DataReq3 :
+  { input_data().\result & 192 == 128 } -> Wait2
+| { input_data().\result & 192 == 192 } -> Wait1
+| { input_data().\result & 128 == 0 } $x2 := \result -> Wait4
+;
+
+DataReq4 :
+  { input_data().\result & 192 == 128 } -> Wait2
+| { input_data().\result & 192 == 192 } -> Wait1
+| { input_data().\result & 128 == 0 } $y1 := \result -> Wait5
+;
+
+DataReq5 :
+  { input_data().\result & 192 == 128 } -> Wait2
+| { input_data().\result & 192 == 192 } -> Wait1
+| { input_data().\result & 128 == 0 } $y2 := \result -> Complete
+;
+
+Complete :
+  { CALL(output) && output().x == $x1 + 128 * $x2 && output().y == $y1 + 128 * $y2 } -> Wait1
+| { CALL(output) && (output().x != $x1 + 128 * $x2 || output().y != $y1 + 128 * $y2) } -> Error
+| { CALL(input_status) } -> StatusReq1
+| { CALL(input_data) } -> Error
+| other -> Complete
+;
+
-- 
GitLab


From 57e7bde122c4f1e489fb3c44bf6e591683b86c96 Mon Sep 17 00:00:00 2001
From: Valentin Perrelle <valentin.perrelle@cea.fr>
Date: Thu, 10 Dec 2020 00:22:23 +0100
Subject: [PATCH 036/141] [Aorai] do not rely on Aorai internal tables for
 Frama_C_show_aorai_state

---
 .../aorai/aorai_eva_analysis.enabled.ml       | 25 ++++++++++++++++---
 1 file changed, 22 insertions(+), 3 deletions(-)

diff --git a/src/plugins/aorai/aorai_eva_analysis.enabled.ml b/src/plugins/aorai/aorai_eva_analysis.enabled.ml
index 007c6ed88fe..b76e66305a9 100644
--- a/src/plugins/aorai/aorai_eva_analysis.enabled.ml
+++ b/src/plugins/aorai/aorai_eva_analysis.enabled.ml
@@ -23,13 +23,32 @@
 (*                                                                        *)
 (**************************************************************************)
 
+let state_name ty i =
+  (* Data_for_aorai.getStateName (Integer.to_int i) *)
+  let open Cil_types in
+  let matching_enumitem ei =
+    match Cil.isInteger ei.eival with
+    | Some j -> Integer.equal i j
+    | None -> false
+  in
+  let find_enumitem e =
+    List.find_opt matching_enumitem e.eitems
+  in
+  let e = match ty with
+    | TEnum (e,_) -> Some e
+    | _ -> None
+  in
+  match Extlib.opt_bind find_enumitem e with
+  | Some ei -> ei.eiorig_name
+  | None -> Integer.to_string i
+
 let show_aorai_variable state fmt var_name =
-  let vi = Data_for_aorai.(get_varinfo var_name) in
+  let vi = Globals.Vars.find_from_astinfo var_name Cil_types.VGlobal in
+  let ty = Globals.Types.find_type Logic_typing.Enum Data_for_aorai.states in
   let cvalue = !Db.Value.eval_expr state (Cil.evar vi) in
   try
     let i = Ival.project_int (Cvalue.V.project_ival cvalue) in
-    let state_name = Data_for_aorai.getStateName (Integer.to_int i) in
-    Format.fprintf fmt "%s" state_name
+    Format.fprintf fmt "%s" (state_name ty i)
   with Cvalue.V.Not_based_on_null | Ival.Not_Singleton_Int |
        Z.Overflow | Not_found ->
     Format.fprintf fmt "?"
-- 
GitLab


From d504d374ce6cb434d4fba7e06884eade6a4d4327 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Wed, 6 Jan 2021 16:54:06 +0100
Subject: [PATCH 037/141] [aorai] tentative projectification of some internal
 states

---
 .../aorai/aorai_eva_analysis.enabled.ml       | 25 +-----
 src/plugins/aorai/aorai_register.ml           | 13 +--
 src/plugins/aorai/data_for_aorai.ml           | 88 ++++++++++++++-----
 .../metavariables-incompatible.res.oracle     |  2 +-
 4 files changed, 76 insertions(+), 52 deletions(-)

diff --git a/src/plugins/aorai/aorai_eva_analysis.enabled.ml b/src/plugins/aorai/aorai_eva_analysis.enabled.ml
index b76e66305a9..007c6ed88fe 100644
--- a/src/plugins/aorai/aorai_eva_analysis.enabled.ml
+++ b/src/plugins/aorai/aorai_eva_analysis.enabled.ml
@@ -23,32 +23,13 @@
 (*                                                                        *)
 (**************************************************************************)
 
-let state_name ty i =
-  (* Data_for_aorai.getStateName (Integer.to_int i) *)
-  let open Cil_types in
-  let matching_enumitem ei =
-    match Cil.isInteger ei.eival with
-    | Some j -> Integer.equal i j
-    | None -> false
-  in
-  let find_enumitem e =
-    List.find_opt matching_enumitem e.eitems
-  in
-  let e = match ty with
-    | TEnum (e,_) -> Some e
-    | _ -> None
-  in
-  match Extlib.opt_bind find_enumitem e with
-  | Some ei -> ei.eiorig_name
-  | None -> Integer.to_string i
-
 let show_aorai_variable state fmt var_name =
-  let vi = Globals.Vars.find_from_astinfo var_name Cil_types.VGlobal in
-  let ty = Globals.Types.find_type Logic_typing.Enum Data_for_aorai.states in
+  let vi = Data_for_aorai.(get_varinfo var_name) in
   let cvalue = !Db.Value.eval_expr state (Cil.evar vi) in
   try
     let i = Ival.project_int (Cvalue.V.project_ival cvalue) in
-    Format.fprintf fmt "%s" (state_name ty i)
+    let state_name = Data_for_aorai.getStateName (Integer.to_int i) in
+    Format.fprintf fmt "%s" state_name
   with Cvalue.V.Not_based_on_null | Ival.Not_Singleton_Int |
        Z.Overflow | Not_found ->
     Format.fprintf fmt "?"
diff --git a/src/plugins/aorai/aorai_register.ml b/src/plugins/aorai/aorai_register.ml
index 6bd2ed39407..fe4775a424c 100644
--- a/src/plugins/aorai/aorai_register.ml
+++ b/src/plugins/aorai/aorai_register.ml
@@ -383,16 +383,12 @@ let work () =
       (* Step 8 : clearing tables whose information has been
          invalidated by our transformations.
       *)
+      Ast.mark_as_changed();
       Cfg.clearFileCFG ~clear_id:false file;
       Cfg.computeFileCFG file;
       Ast.clear_last_decl ();
       if Kernel.Check.get() then Filecheck.check_ast "aorai";
-      let prj =
-        File.create_project_from_visitor "aorai"
-          (fun prj -> new Visitor.frama_c_copy prj)
-      in
-      Project.copy ~selection:(Parameter_state.get_selection ()) prj;
-      Project.on prj output ()
+      output ()
     end
 
 let run () =
@@ -409,12 +405,11 @@ let run () =
     (* Step 2 : Work in our own project, initialized by a copy of the main
        one. *)
     let work_prj =
-      File.create_project_from_visitor ~last:false "aorai_tmp"
+      File.create_project_from_visitor "aorai"
         (fun prj -> new Visitor.frama_c_copy prj)
     in
     Project.copy ~selection:(Parameter_state.get_selection ()) work_prj;
-    Project.on work_prj work ();
-    Project.remove ~project:work_prj ()
+    Project.on work_prj work ()
 
 (* Plugin registration *)
 
diff --git a/src/plugins/aorai/data_for_aorai.ml b/src/plugins/aorai/data_for_aorai.ml
index f4e4d3a64c0..eda217b9f25 100644
--- a/src/plugins/aorai/data_for_aorai.ml
+++ b/src/plugins/aorai/data_for_aorai.ml
@@ -73,6 +73,21 @@ module Aorai_typed_trans =
       let mem_project = Datatype.never_any_project
     end)
 
+module Aorai_automaton =
+  Datatype.Make(
+      struct
+        include Datatype.Serializable_undefined
+        let name = "Aorai_automaton"
+        type t = Promelaast.typed_automaton
+        let structural_descr = Structural_descr.t_abstract
+        let reprs = [ { states = Aorai_state.reprs;
+                        trans = Aorai_typed_trans.reprs;
+                        metavariables = Datatype.String.Map.empty;
+                        observables = Some Datatype.String.Set.empty;
+                      }]
+      end
+    )
+
 module State_var =
   State_builder.Hashtbl
     (Aorai_state.Hashtbl)
@@ -212,7 +227,16 @@ let buch_sync   = "Aorai_Sync"                           (* Deprecated ? *)
 
 (* ************************************************************************* *)
 (* Buchi automata as stored after parsing *)
-let automata = ref None
+module Automaton =
+  State_builder.Ref
+    (Datatype.Option(Aorai_automaton))
+    (struct
+      let name = "Data_for_aorai.Automaton"
+      let dependencies =
+        [ Aorai_option.Ltl_File.self; Aorai_option.Buchi.self;
+          Aorai_option.Ya.self ]
+      let default () = None
+    end)
 
 (* Each transition with a parametrized cross condition (call param access or return value access) has its parametrized part stored in this array. *)
 let cond_of_parametrizedTransitions = ref (Array.make (1) [[]])
@@ -222,9 +246,9 @@ let defined_functions = ref []
 (* List of functions without declaration *)
 let ignored_functions = ref []
 
-(** Return the buchi automata as stored after parsing *)
+(** Return the buchi automaton as stored after parsing *)
 let getAutomata () =
-  match !automata with
+  match Automaton.get() with
   | Some auto -> auto
   | None ->
     Aorai_option.fatal "The automaton has not been compiled yet"
@@ -233,11 +257,11 @@ let getGraph () =
   let auto = getAutomata () in
   auto.states, auto.trans
 
-(** Return the number of transitions of the automata *)
+(** Return the number of transitions of the automaton *)
 let getNumberOfTransitions () =
   List.length (getAutomata ()).trans
 
-(** Return the number of states of the automata *)
+(** Return the number of states of the automaton *)
 let getNumberOfStates () =
   List.length (getAutomata ()).states
 
@@ -1547,7 +1571,7 @@ let checkMetavariableCompatibility auto =
   if has_metavariables && (not deterministic || uses_extended_guards) then
     Aorai_option.abort
       "The use of metavariables is incompatible with non-deterministic \
-       automata, such as automa using extended transitions."
+       automata, such as automata using extended transitions."
 
 let check_observables auto =
  match auto.observables with
@@ -1576,8 +1600,8 @@ let check_observables auto =
 let setAutomata auto =
   checkMetavariableCompatibility auto;
   let auto = type_cond_auto auto in
-  automata:=Some auto;
-  check_states "typed automata";
+  Automaton.set (Some auto);
+  check_states "typed automaton";
   check_observables auto;
   if Aorai_option.debug_atleast 1 then
     Promelaoutput.Typed.output_dot_automata auto "aorai_debug_reduced.dot";
@@ -1645,18 +1669,42 @@ let is_reject_state state =
 (* ************************************************************************* *)
 (* Table giving the varinfo structure associated to a given variable name *)
 (* In practice it contains all variables (from promela and globals from C file) and only variables *)
-let varinfos = Hashtbl.create 97
-let paraminfos = Hashtbl.create 97
+
+module Aux_varinfos =
+  State_builder.Hashtbl(Datatype.String.Hashtbl)(Cil_datatype.Varinfo)
+  (struct
+    let name = "Data_for_aorai.Aux_varinfos"
+    let dependencies =
+      [ Ast.self; Aorai_option.Ya.self; Aorai_option.Ltl_File.self;
+        Aorai_option.To_Buchi.self; Aorai_option.Deterministic.self ]
+    let size = 13
+  end)
+
+let () = Ast.add_linked_state Aux_varinfos.self
+
+module StringPair =
+  Datatype.Pair_with_collections
+    (Datatype.String)(Datatype.String)
+    (struct let module_name = "Data_for_aorai.StringPair" end)
+
+module Paraminfos =
+  State_builder.Hashtbl(StringPair.Hashtbl)(Cil_datatype.Varinfo)
+  (struct
+    let name = "Data_for_aorai.Paraminfos"
+    let dependencies =
+      [ Ast.self; Aorai_option.Ya.self; Aorai_option.Ltl_File.self;
+        Aorai_option.To_Buchi.self; Aorai_option.Deterministic.self ]
+    let size = 13
+  end)
 
 (* Add a new variable into the association table name -> varinfo *)
-let set_varinfo name vi =
-  Hashtbl.add varinfos name vi
+let set_varinfo = Aux_varinfos.add
 
 (* Given a variable name, it returns its associated varinfo.
     If the variable is not found then an error message is print and an assert false is raised. *)
 let get_varinfo name =
   try
-    Hashtbl.find varinfos name
+    Aux_varinfos.find name
   with Not_found -> raise_error ("Variable not declared ("^name^")")
 
 let get_logic_var name =
@@ -1666,20 +1714,20 @@ let get_logic_var name =
    Hence, if the variable is not found then None is return. *)
 let get_varinfo_option name =
   try
-    Some(Hashtbl.find varinfos name)
+    Some(Aux_varinfos.find name)
   with
     | Not_found -> None
 
 (* Add a new param into the association table (funcname,paramname) -> varinfo *)
 let set_paraminfo funcname paramname vi =
   (* Aorai_option.log "Adding %s(...,%s,...) " funcname paramname; *)
-  Hashtbl.add paraminfos (funcname,paramname)  vi
+  Paraminfos.add (funcname,paramname)  vi
 
 (* Given a function name and a param name, it returns the varinfo associated to the given param.
     If the variable is not found then an error message is print and an assert false is raised. *)
 let get_paraminfo funcname paramname =
   try
-    Hashtbl.find paraminfos (funcname,paramname)
+    Paraminfos.find (funcname,paramname)
   with Not_found ->
     raise_error
       ("Parameter '"^paramname^"' not declared for function '"^funcname^"'.")
@@ -1687,13 +1735,13 @@ let get_paraminfo funcname paramname =
 (* Add a new param into the association table funcname -> varinfo *)
 let set_returninfo funcname vi =
   (* Aorai_option.log "Adding return %s(...) " funcname ; *)
-  Hashtbl.add paraminfos (funcname,"\\return")  vi
+  Paraminfos.add (funcname,"\\return")  vi
 
 (* Given a function name, it returns the varinfo associated to the given param.
     If the variable is not found then an error message is print and an assert false is raised. *)
 let get_returninfo funcname =
   try
-    Hashtbl.find paraminfos (funcname,"\\return")
+    Paraminfos.find (funcname,"\\return")
   with Not_found ->
     raise_error ("Return varinfo not declared for function '"^funcname^"'.")
 
@@ -2142,8 +2190,8 @@ let removeUnusedTransitionsAndStates () =
         Reject_state.set new_reject
       with Not_found -> Reject_state.clear ());
   (* Step 3 : rewriting stored information *)
-  automata := Some { auto with states =state_list; trans = trans_list };
-  check_states "reduced automata";
+  Automaton.set (Some { auto with states =state_list; trans = trans_list });
+  check_states "reduced automaton";
 
   let rewrite_state state =
     let rewrite_set set =
diff --git a/src/plugins/aorai/tests/ya/oracle/metavariables-incompatible.res.oracle b/src/plugins/aorai/tests/ya/oracle/metavariables-incompatible.res.oracle
index 57c2d7eed1c..1a257aa76d2 100644
--- a/src/plugins/aorai/tests/ya/oracle/metavariables-incompatible.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/metavariables-incompatible.res.oracle
@@ -1,4 +1,4 @@
 [kernel] Parsing tests/ya/metavariables-incompatible.i (no preprocessing)
 [aorai] Welcome to the Aorai plugin
-[aorai] User Error: The use of metavariables is incompatible with non-deterministic automata, such as automa using extended transitions.
+[aorai] User Error: The use of metavariables is incompatible with non-deterministic automata, such as automata using extended transitions.
 [kernel] Plug-in aorai aborted: invalid user input.
-- 
GitLab


From de7db42695df5e538c244eb8529dde1f75255873 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Wed, 6 Jan 2021 17:24:31 +0100
Subject: [PATCH 038/141] [aorai] don't use additional header for exposing
 generated variables

---
 headers/header_spec.txt                       |  1 -
 share/libc/aorai/aorai.h                      | 33 -------------
 .../aorai/tests/ya/oracle/serial.res.oracle   | 46 +++++++++----------
 src/plugins/aorai/tests/ya/serial.c           |  2 -
 4 files changed, 23 insertions(+), 59 deletions(-)
 delete mode 100644 share/libc/aorai/aorai.h

diff --git a/headers/header_spec.txt b/headers/header_spec.txt
index 06b913c3cc7..49cb0ecd52f 100644
--- a/headers/header_spec.txt
+++ b/headers/header_spec.txt
@@ -208,7 +208,6 @@ share/libc/__fc_runtime.c: CEA_LGPL
 share/libc/__fc_select.h: CEA_LGPL
 share/libc/__fc_string_axiomatic.h: CEA_LGPL
 share/libc/alloca.h: CEA_LGPL
-share/libc/aorai/aorai.h: CEA_LGPL
 share/libc/arpa/inet.h: CEA_LGPL
 share/libc/assert.c: CEA_LGPL
 share/libc/assert.h: CEA_LGPL
diff --git a/share/libc/aorai/aorai.h b/share/libc/aorai/aorai.h
deleted file mode 100644
index b2f5eeb733f..00000000000
--- a/share/libc/aorai/aorai.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/**************************************************************************/
-/*                                                                        */
-/*  This file is part of Frama-C.                                         */
-/*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
-/*    CEA (Commissariat à l'énergie atomique et aux énergies              */
-/*         alternatives)                                                  */
-/*                                                                        */
-/*  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).            */
-/*                                                                        */
-/**************************************************************************/
-
-#ifndef __FC_AORAI
-#define __FC_AORAI
-
-/*@ ghost extern int aorai_CurStates; */
-/*@ ghost extern int aorai_StatesHistory1; */
-/*@ ghost extern int aorai_StatesHistory2; */
-/*@ ghost extern int aorai_StatesHistory3; */
-/*@ ghost extern int aorai_StatesHistory4; */
-
-
-#endif
diff --git a/src/plugins/aorai/tests/ya/oracle/serial.res.oracle b/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
index 0a57509c1c6..1dc6823676e 100644
--- a/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
@@ -1,8 +1,8 @@
 [kernel] Parsing tests/ya/serial.c (with preprocessing)
-[kernel:typing:implicit-function-declaration] tests/ya/serial.c:81: Warning: 
+[kernel:typing:implicit-function-declaration] tests/ya/serial.c:79: Warning: 
   Calling undeclared function Frama_C_show_aorai_state. Old style K&R code?
 [aorai] Welcome to the Aorai plugin
-[kernel:annot:missing-spec] tests/ya/serial.c:45: Warning: 
+[kernel:annot:missing-spec] tests/ya/serial.c:43: Warning: 
   Neither code nor specification for function Frama_C_show_aorai_state, generating default assigns from the prototype
 [eva] Analyzing a complete application starting at main
 [eva] Computing initial state
@@ -21,28 +21,28 @@
   aorai_StatesHistory_1 ∈ {19}
   aorai_StatesHistory_2 ∈ {19}
 [eva] using specification for function Frama_C_interval
-[eva] tests/ya/serial.c:47: starting to merge loop iterations
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 100 states
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 300 states
-[aorai] tests/ya/serial.c:81: Wait1 <- Wait1 <- Complete
-[aorai] tests/ya/serial.c:81: Error <- Error <- Complete
-[aorai] tests/ya/serial.c:81: Complete <- Complete <- Complete
-[aorai] tests/ya/serial.c:81: Wait1 <- Wait1 <- Complete
-[aorai] tests/ya/serial.c:81: Error <- Error <- Complete
-[aorai] tests/ya/serial.c:81: Complete <- Complete <- Complete
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 500 states
-[eva:alarm] tests/ya/serial.c:54: Warning: 
+[eva] tests/ya/serial.c:45: starting to merge loop iterations
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 100 states
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 300 states
+[aorai] tests/ya/serial.c:79: Wait1 <- Wait1 <- Complete
+[aorai] tests/ya/serial.c:79: Error <- Error <- Complete
+[aorai] tests/ya/serial.c:79: Complete <- Complete <- Complete
+[aorai] tests/ya/serial.c:79: Wait1 <- Wait1 <- Complete
+[aorai] tests/ya/serial.c:79: Error <- Error <- Complete
+[aorai] tests/ya/serial.c:79: Complete <- Complete <- Complete
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 500 states
+[eva:alarm] tests/ya/serial.c:52: Warning: 
   accessing uninitialized left-value. assert \initialized(&status);
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 700 states
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 900 states
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 1200 states
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 1500 states
-[aorai] tests/ya/serial.c:81: Error <- Error <- Error
-[aorai] tests/ya/serial.c:81: Error <- Error <- Error
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 1700 states
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 1900 states
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 2000 states
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 2100 states
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 700 states
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 900 states
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1200 states
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1500 states
+[aorai] tests/ya/serial.c:79: Error <- Error <- Error
+[aorai] tests/ya/serial.c:79: Error <- Error <- Error
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1700 states
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1900 states
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 2000 states
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 2100 states
 [eva] done for function main
 [eva] ====== VALUES COMPUTED ======
 [eva:final-states] Values at end of function input_data_post_func:
diff --git a/src/plugins/aorai/tests/ya/serial.c b/src/plugins/aorai/tests/ya/serial.c
index 2e8b8bc3d45..8afcc7533fb 100644
--- a/src/plugins/aorai/tests/ya/serial.c
+++ b/src/plugins/aorai/tests/ya/serial.c
@@ -3,8 +3,6 @@
 */
 
 #include "__fc_builtin.h"
-#include "aorai/aorai.h"
-
 
 /*@ assigns \result \from \nothing;
     ensures 0 <= \result < 0x100; */
-- 
GitLab


From 0f30bcd12188941e5e496d7187b98a8ca5303ac8 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Thu, 7 Jan 2021 15:59:53 +0100
Subject: [PATCH 039/141] [kernel] allow plug-in to register builtin functions

---
 src/kernel_services/ast_queries/cil_builtins.ml  | 10 +++++++++-
 src/kernel_services/ast_queries/cil_builtins.mli | 11 ++++++++++-
 2 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/src/kernel_services/ast_queries/cil_builtins.ml b/src/kernel_services/ast_queries/cil_builtins.ml
index 94d8a3a62ef..f070c99028d 100644
--- a/src/kernel_services/ast_queries/cil_builtins.ml
+++ b/src/kernel_services/ast_queries/cil_builtins.ml
@@ -685,6 +685,13 @@ let init_common_builtins () =
     [ Cil.theMachine.typeOfSizeOf ]
     false
 
+let custom_builtins = Queue.create ()
+
+let add_custom_builtin f = Queue.add f custom_builtins
+
+let register_custom_builtin (name, rt, prms, isva) =
+  Builtin_functions.add name (rt,prms,isva)
+
 let init_builtins () =
   if not (Cil.selfMachine_is_computed ()) then
     Kernel.fatal ~current:true "You must call initCIL before init_builtins" ;
@@ -696,7 +703,8 @@ let init_builtins () =
   else begin
     initVABuiltins ();
     if Cil.gccMode () then initGccBuiltins ();
-  end
+  end;
+  Queue.iter (fun f -> register_custom_builtin (f())) custom_builtins
 
 (** This is used as the location of the prototypes of builtin functions. *)
 let builtinLoc: location = Location.unknown
diff --git a/src/kernel_services/ast_queries/cil_builtins.mli b/src/kernel_services/ast_queries/cil_builtins.mli
index adb9caf1eb5..90b7cfea4a7 100644
--- a/src/kernel_services/ast_queries/cil_builtins.mli
+++ b/src/kernel_services/ast_queries/cil_builtins.mli
@@ -86,7 +86,8 @@ val init_builtins: unit -> unit
 (** A list of the built-in functions for the current compiler (GCC or
   * MSVC, depending on [!msvcMode]).  Maps the name to the
   * result and argument types, and whether it is vararg.
-  * Initialized by {!Cil.initCIL}
+  * Initialized by {!Cil.initCIL}. Do not add builtins directly, use
+  * {! add_custom_builtin } below for that.
   *
   * This map replaces [gccBuiltins] and [msvcBuiltins] in previous
   * versions of CIL.*)
@@ -94,5 +95,13 @@ module Builtin_functions :
   State_builder.Hashtbl with type key = string
                          and type data = typ * typ list * bool
 
+(** Register a new builtin. The function will be called after setting
+    the machdep and initializing machine-dependent builtins. Hence, types
+    such {!Cil.uint16_t} might be used if needed.
+
+    @since Frama-C+dev
+*)
+val add_custom_builtin: (unit -> (string * typ * typ list * bool)) -> unit
+
 (** This is used as the location of the prototypes of builtin functions. *)
 val builtinLoc: location
-- 
GitLab


From 7eeb8a631f4e06525883d8a3c65fa273ef929e43 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Thu, 7 Jan 2021 16:02:13 +0100
Subject: [PATCH 040/141] [variadic] do not translate registered builtin
 functions

---
 src/plugins/variadic/classify.ml  | 2 +-
 src/plugins/variadic/translate.ml | 2 ++
 src/plugins/variadic/va_types.mli | 2 ++
 3 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/plugins/variadic/classify.ml b/src/plugins/variadic/classify.ml
index a7fd07bd903..df2f128c752 100644
--- a/src/plugins/variadic/classify.ml
+++ b/src/plugins/variadic/classify.ml
@@ -148,7 +148,7 @@ let classify_std env vi = match vi.vname with
 
   (* stropts.h *)
   | "ioctl"   -> mk_overload env ["__va_ioctl_void" ; "__va_ioctl_int" ; "__va_ioctl_ptr"]
-
+  | n when Cil_builtins.Builtin_functions.mem n -> Builtin
   (* Anything else *)
   | _ -> Unknown
 
diff --git a/src/plugins/variadic/translate.ml b/src/plugins/variadic/translate.ml
index 7508c434ecc..46f76bbce8e 100644
--- a/src/plugins/variadic/translate.ml
+++ b/src/plugins/variadic/translate.ml
@@ -35,6 +35,7 @@ let va_builtins = [
 
 let is_framac_builtin vi =
   Ast_info.is_frama_c_builtin vi.vname ||
+  Cil_builtins.Builtin_functions.mem vi.vname ||
   Extlib.string_prefix "__FRAMAC_" vi.vname (* Mthread prefixes *)
 
 
@@ -147,6 +148,7 @@ let translate_variadics (file : file) =
             | Overload o -> Standard.overloaded_call ~fundec o
             | Aggregator a -> Standard.aggregator_call ~fundec ~ghost a
             | FormatFun f -> Standard.format_fun_call ~fundec env f
+            | Builtin -> raise Not_found
             | _ -> raise Standard.Translate_call_exn
           in
           call_translator block loc mk_call vf args
diff --git a/src/plugins/variadic/va_types.mli b/src/plugins/variadic/va_types.mli
index 70063338550..54cf2034a83 100644
--- a/src/plugins/variadic/va_types.mli
+++ b/src/plugins/variadic/va_types.mli
@@ -26,6 +26,8 @@ open Cil_types
 type variadic_class =
   | Unknown
   (** Function declared and not known by Frama-C *)
+  | Builtin
+  (** Function registered as a builtin function in Cil_builtins *)
   | Defined
   (** Function for which we have the definition in the project *)
   | Misc
-- 
GitLab


From e6422723eb0bb0cfe8596bc2001256c377917b52 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Thu, 7 Jan 2021 16:03:01 +0100
Subject: [PATCH 041/141] [aorai] register Frama_C_aorai_show_state as builtin

---
 .../aorai/aorai_eva_analysis.enabled.ml       | 19 +++++++++++++--
 tests/libc/oracle/fc_libc.2.res.oracle        |  1 -
 tests/libc/oracle/fc_libc.5.res.oracle        |  1 -
 tests/syntax/oracle/bts1553_2.res.oracle      |  4 ++++
 .../oracle/check_builtin_bts1440.res.oracle   |  2 ++
 .../syntax/oracle/static_formals_1.res.oracle | 24 +++++++++----------
 6 files changed, 35 insertions(+), 16 deletions(-)

diff --git a/src/plugins/aorai/aorai_eva_analysis.enabled.ml b/src/plugins/aorai/aorai_eva_analysis.enabled.ml
index 007c6ed88fe..5b481c60b1d 100644
--- a/src/plugins/aorai/aorai_eva_analysis.enabled.ml
+++ b/src/plugins/aorai/aorai_eva_analysis.enabled.ml
@@ -34,10 +34,19 @@ let show_aorai_variable state fmt var_name =
        Z.Overflow | Not_found ->
     Format.fprintf fmt "?"
 
-let builtin_show_aorai_state state _args =
+let show_val fmt (expr, v, _) =
+  Format.fprintf fmt "%a in %a"
+    Printer.pp_exp expr
+    (Cvalue.V.pretty_typ (Some (Cil.typeOf expr))) v
+
+let builtin_show_aorai_state state args =
   let history = Data_for_aorai.(curState :: (whole_history ())) in
   Aorai_option.result ~current:true "@[<hv>%a@]"
     (Pretty_utils.pp_list ~sep:" <- " (show_aorai_variable state)) history;
+  if args <> [] then begin
+    Aorai_option.result ~current:true "@[<hv>%a@]"
+      (Pretty_utils.pp_list ~sep:"," show_val) args
+  end;
   (* Return value : returns nothing, changes nothing *)
   {
     Value_types.c_values = [None, state];
@@ -46,8 +55,14 @@ let builtin_show_aorai_state state _args =
     c_cacheable = Value_types.Cacheable;
   }
 
+let show_aorai_state = "Frama_C_show_aorai_state"
+
+let () =
+  Cil_builtins.add_custom_builtin
+    (fun () -> (show_aorai_state,Cil.voidType,[],true))
+
 let () =
-  !Db.Value.register_builtin "Frama_C_show_aorai_state" builtin_show_aorai_state
+  !Db.Value.register_builtin show_aorai_state builtin_show_aorai_state
 
 let add_slevel_annotation vi kind =
   match kind with
diff --git a/tests/libc/oracle/fc_libc.2.res.oracle b/tests/libc/oracle/fc_libc.2.res.oracle
index 852a3378808..b1e1247a436 100644
--- a/tests/libc/oracle/fc_libc.2.res.oracle
+++ b/tests/libc/oracle/fc_libc.2.res.oracle
@@ -42,7 +42,6 @@ skipping share/libc/__fc_machdep_linux_shared.h
 [kernel] Parsing share/libc/__fc_select.h (with preprocessing)
 [kernel] Parsing share/libc/__fc_string_axiomatic.h (with preprocessing)
 [kernel] Parsing share/libc/alloca.h (with preprocessing)
-[kernel] Parsing share/libc/aorai/aorai.h (with preprocessing)
 [kernel] Parsing share/libc/arpa/inet.h (with preprocessing)
 [kernel] Parsing share/libc/assert.h (with preprocessing)
 [kernel] Parsing share/libc/byteswap.h (with preprocessing)
diff --git a/tests/libc/oracle/fc_libc.5.res.oracle b/tests/libc/oracle/fc_libc.5.res.oracle
index 3c89feea03b..73dac90425a 100644
--- a/tests/libc/oracle/fc_libc.5.res.oracle
+++ b/tests/libc/oracle/fc_libc.5.res.oracle
@@ -1,2 +1 @@
 #include "__fc_integer.h"
-#include "aorai/aorai.h"
diff --git a/tests/syntax/oracle/bts1553_2.res.oracle b/tests/syntax/oracle/bts1553_2.res.oracle
index 9293259fe56..93dacee5149 100644
--- a/tests/syntax/oracle/bts1553_2.res.oracle
+++ b/tests/syntax/oracle/bts1553_2.res.oracle
@@ -5,6 +5,8 @@
   struct a {
      int b ;
   };
+  /* compiler builtin: 
+     void Frama_C_show_aorai_state(...);   */
   /* compiler builtin: 
      __builtin_va_list __builtin_next_arg(void);   */
   /* compiler builtin: 
@@ -40,6 +42,8 @@
   struct a {
      int b ;
   };
+  /* compiler builtin: 
+     void Frama_C_show_aorai_state(...);   */
   /* compiler builtin: 
      __builtin_va_list __builtin_next_arg(void);   */
   /* compiler builtin: 
diff --git a/tests/syntax/oracle/check_builtin_bts1440.res.oracle b/tests/syntax/oracle/check_builtin_bts1440.res.oracle
index 510a8f2b3ab..f81e5813ccc 100644
--- a/tests/syntax/oracle/check_builtin_bts1440.res.oracle
+++ b/tests/syntax/oracle/check_builtin_bts1440.res.oracle
@@ -2,6 +2,8 @@
 [kernel:file:print-one] 
   result of parsing tests/syntax/check_builtin_bts1440.i:
   /* Generated by Frama-C */
+  void Frama_C_show_aorai_state(...);
+  
   void __builtin__Exit(int);
   
   int __builtin___fprintf_chk(void *, int, char const * , ...);
diff --git a/tests/syntax/oracle/static_formals_1.res.oracle b/tests/syntax/oracle/static_formals_1.res.oracle
index 94353adf96c..f3dc98b3d30 100644
--- a/tests/syntax/oracle/static_formals_1.res.oracle
+++ b/tests/syntax/oracle/static_formals_1.res.oracle
@@ -1,24 +1,24 @@
 [kernel] Parsing tests/syntax/static_formals_1.c (with preprocessing)
 [kernel] Parsing tests/syntax/static_formals_2.c (with preprocessing)
 /* Generated by Frama-C */
-/*@ requires /* vid:25, lvid:25 */x < 10; */
-static int /* vid:58 */f(int /* vid:25, lvid:25 */x);
+/*@ requires /* vid:26, lvid:26 */x < 10; */
+static int /* vid:60 */f(int /* vid:26, lvid:26 */x);
 
-int /* vid:30 */g(void)
+int /* vid:31 */g(void)
 {
-  int /* vid:31 */tmp;
-  /* vid:31 */tmp = /* vid:58 */f(4);
-  return /* vid:31 */tmp;
+  int /* vid:32 */tmp;
+  /* vid:32 */tmp = /* vid:60 */f(4);
+  return /* vid:32 */tmp;
 }
 
-/*@ requires /* vid:53, lvid:53 */x < 10; */
-static int /* vid:59 */f_0(int /* vid:53, lvid:53 */x);
+/*@ requires /* vid:55, lvid:55 */x < 10; */
+static int /* vid:61 */f_0(int /* vid:55, lvid:55 */x);
 
-int /* vid:56 */h(void)
+int /* vid:58 */h(void)
 {
-  int /* vid:57 */tmp;
-  /* vid:57 */tmp = /* vid:59 */f_0(6);
-  return /* vid:57 */tmp;
+  int /* vid:59 */tmp;
+  /* vid:59 */tmp = /* vid:61 */f_0(6);
+  return /* vid:59 */tmp;
 }
 
 
-- 
GitLab


From f276cd9c8ac77d769abc116cfc9dfca8e651fb62 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Thu, 7 Jan 2021 17:29:02 +0100
Subject: [PATCH 042/141] [variadic] only emit "untransformed" message for
 builtins that are variadic.

---
 .../tests/erroneous/oracle/variadic-builtin.res.oracle      | 2 ++
 .../tests/known/oracle/printf_garbled_mix.res.oracle        | 2 --
 src/plugins/variadic/translate.ml                           | 6 ++++--
 3 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/src/plugins/variadic/tests/erroneous/oracle/variadic-builtin.res.oracle b/src/plugins/variadic/tests/erroneous/oracle/variadic-builtin.res.oracle
index 348e8c477da..a5caa303321 100644
--- a/src/plugins/variadic/tests/erroneous/oracle/variadic-builtin.res.oracle
+++ b/src/plugins/variadic/tests/erroneous/oracle/variadic-builtin.res.oracle
@@ -1,3 +1,5 @@
+[variadic] tests/erroneous/variadic-builtin.i:1: 
+  Declaration of variadic function Frama_C_show_each_warning.
 [variadic] tests/erroneous/variadic-builtin.i:1: 
   Variadic builtin Frama_C_show_each_warning left untransformed.
 [kernel] tests/erroneous/variadic-builtin.i:6: Plug-in variadic aborted: unimplemented feature.
diff --git a/src/plugins/variadic/tests/known/oracle/printf_garbled_mix.res.oracle b/src/plugins/variadic/tests/known/oracle/printf_garbled_mix.res.oracle
index 3cecd8f9b1e..3ba86d9da3a 100644
--- a/src/plugins/variadic/tests/known/oracle/printf_garbled_mix.res.oracle
+++ b/src/plugins/variadic/tests/known/oracle/printf_garbled_mix.res.oracle
@@ -14,8 +14,6 @@
   Declaration of variadic function sscanf.
 [variadic] FRAMAC_SHARE/libc/stdio.h:541: 
   Declaration of variadic function dprintf.
-[variadic] tests/known/printf_garbled_mix.c:8: 
-  Variadic builtin Frama_C_show_each_nb_printed left untransformed.
 [variadic] tests/known/printf_garbled_mix.c:7: 
   Translating call to printf to a call to the specialized version printf_va_1.
 [eva] Analyzing a complete application starting at main
diff --git a/src/plugins/variadic/translate.ml b/src/plugins/variadic/translate.ml
index 46f76bbce8e..b2bbd04dbb1 100644
--- a/src/plugins/variadic/translate.ml
+++ b/src/plugins/variadic/translate.ml
@@ -89,8 +89,10 @@ let translate_variadics (file : file) =
     method! vglob glob =
       begin match glob with
         | GFunDecl(_, vi, _) when is_framac_builtin vi ->
-          Self.result ~level:2 ~current:true
-            "Variadic builtin %s left untransformed." vi.vname;
+          if Classify.classify env vi <> None then begin
+            Self.result ~level:2 ~current:true
+              "Variadic builtin %s left untransformed." vi.vname;
+          end;
           Cil.SkipChildren
 
         | GFunDecl(_, vi, _) ->
-- 
GitLab


From 9644abd733c93723d4d11ab8c58a27f888d6630c Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Thu, 7 Jan 2021 18:43:30 +0100
Subject: [PATCH 043/141] [variadic] translates __sync family

---
 src/plugins/variadic/classify.ml  |  1 +
 src/plugins/variadic/translate.ml | 19 ++++++++-----------
 2 files changed, 9 insertions(+), 11 deletions(-)

diff --git a/src/plugins/variadic/classify.ml b/src/plugins/variadic/classify.ml
index df2f128c752..5d492765d0d 100644
--- a/src/plugins/variadic/classify.ml
+++ b/src/plugins/variadic/classify.ml
@@ -148,6 +148,7 @@ let classify_std env vi = match vi.vname with
 
   (* stropts.h *)
   | "ioctl"   -> mk_overload env ["__va_ioctl_void" ; "__va_ioctl_int" ; "__va_ioctl_ptr"]
+  | n when Extlib.string_prefix "__sync_" n -> Misc
   | n when Cil_builtins.Builtin_functions.mem n -> Builtin
   (* Anything else *)
   | _ -> Unknown
diff --git a/src/plugins/variadic/translate.ml b/src/plugins/variadic/translate.ml
index b2bbd04dbb1..bf32abcdf50 100644
--- a/src/plugins/variadic/translate.ml
+++ b/src/plugins/variadic/translate.ml
@@ -54,8 +54,7 @@ let translate_variadics (file : file) =
 
     method! vglob glob =
       begin match glob with
-        | GFunDecl(_, vi, _) | GFun ({svar = vi}, _)
-          when not (is_framac_builtin vi) ->
+        | GFunDecl(_, vi, _) | GFun ({svar = vi}, _) ->
           if not (Table.mem classification vi) then begin
             let vf = Classify.classify env vi in
             Option.iter (Table.add classification vi) vf
@@ -88,16 +87,14 @@ let translate_variadics (file : file) =
     (* Translate types and signatures *)
     method! vglob glob =
       begin match glob with
-        | GFunDecl(_, vi, _) when is_framac_builtin vi ->
-          if Classify.classify env vi <> None then begin
-            Self.result ~level:2 ~current:true
-              "Variadic builtin %s left untransformed." vi.vname;
-          end;
-          Cil.SkipChildren
-
         | GFunDecl(_, vi, _) ->
-          if Table.mem classification vi then
-            Generic.add_vpar vi;
+          (match Table.find_opt classification vi with
+           | None -> ()
+           | Some { vf_class = Builtin } ->
+             Self.result ~level:2 ~current:true
+               "Variadic builtin %s left untransformed." vi.vname;
+           | Some _ ->
+             Generic.add_vpar vi);
           Cil.DoChildren
 
         | GFun ({svar = vi} as fundec, _) ->
-- 
GitLab


From 943186f13df552001094e462b4cbd62ef0c2846f Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Thu, 7 Jan 2021 19:42:56 +0100
Subject: [PATCH 044/141] [variadic] avoid transforming function type of
 otherwise untouched builtins

---
 .../aorai/tests/ya/oracle/serial.res.oracle   | 10 +++----
 src/plugins/variadic/classify.ml              | 17 +++++++++++-
 .../oracle/variadic-builtin.res.oracle        |  2 ++
 src/plugins/variadic/translate.ml             | 26 +++++++------------
 4 files changed, 31 insertions(+), 24 deletions(-)

diff --git a/src/plugins/aorai/tests/ya/oracle/serial.res.oracle b/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
index 1dc6823676e..a1dde62c222 100644
--- a/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
@@ -1,6 +1,4 @@
 [kernel] Parsing tests/ya/serial.c (with preprocessing)
-[kernel:typing:implicit-function-declaration] tests/ya/serial.c:79: Warning: 
-  Calling undeclared function Frama_C_show_aorai_state. Old style K&R code?
 [aorai] Welcome to the Aorai plugin
 [kernel:annot:missing-spec] tests/ya/serial.c:43: Warning: 
   Neither code nor specification for function Frama_C_show_aorai_state, generating default assigns from the prototype
@@ -299,7 +297,7 @@
   100% of the logical properties reached have been proven.
   ----------------------------------------------------------------------------
 [kernel] Parsing TMPDIR/aorai_serial_0.i (no preprocessing)
-[kernel:typing:implicit-function-declaration] TMPDIR/aorai_serial_0.i:176: Warning: 
+[kernel:typing:implicit-function-declaration] TMPDIR/aorai_serial_0.i:174: Warning: 
   Calling undeclared function Frama_C_interval. Old style K&R code?
 /* Generated by Frama-C */
 enum aorai_States {
@@ -338,13 +336,11 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
+/* compiler builtin: 
+   void Frama_C_show_aorai_state(...);   */
 int volatile indefinitely;
 int buffer[5];
 int n = 0;
-/*@ assigns \result;
-    assigns \result \from \nothing; */
-extern int Frama_C_show_aorai_state(void);
-
 /*@ ghost enum aorai_ListOper aorai_CurOperation; */
 /*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int aorai_CurStates = Wait1; */
diff --git a/src/plugins/variadic/classify.ml b/src/plugins/variadic/classify.ml
index 5d492765d0d..80b9c73dfc8 100644
--- a/src/plugins/variadic/classify.ml
+++ b/src/plugins/variadic/classify.ml
@@ -110,6 +110,20 @@ let mk_format_fun vi f_kind f_buffer ~format_pos =
 (* Classification                                                           *)
 (* ************************************************************************ *)
 
+let is_frama_c_builtin name =
+  Ast_info.is_frama_c_builtin name ||
+  Cil_builtins.Builtin_functions.mem name ||
+  Extlib.string_prefix "__FRAMAC_" name (* Mthread prefixes *)
+
+let va_builtins = [
+  "__builtin_va_start";
+  "__builtin_va_copy";
+  "__builtin_va_arg";
+  "__builtin_va_end";
+]
+
+let is_va_builtin s = List.mem s va_builtins
+
 let classify_std env vi = match vi.vname with
   (* fcntl.h - Overloads of functions *)
   | "fcntl" -> mk_overload env
@@ -149,7 +163,8 @@ let classify_std env vi = match vi.vname with
   (* stropts.h *)
   | "ioctl"   -> mk_overload env ["__va_ioctl_void" ; "__va_ioctl_int" ; "__va_ioctl_ptr"]
   | n when Extlib.string_prefix "__sync_" n -> Misc
-  | n when Cil_builtins.Builtin_functions.mem n -> Builtin
+  | n when is_va_builtin n -> Misc
+  | n when is_frama_c_builtin n -> Builtin
   (* Anything else *)
   | _ -> Unknown
 
diff --git a/src/plugins/variadic/tests/erroneous/oracle/variadic-builtin.res.oracle b/src/plugins/variadic/tests/erroneous/oracle/variadic-builtin.res.oracle
index a5caa303321..bf189af5926 100644
--- a/src/plugins/variadic/tests/erroneous/oracle/variadic-builtin.res.oracle
+++ b/src/plugins/variadic/tests/erroneous/oracle/variadic-builtin.res.oracle
@@ -2,6 +2,8 @@
   Declaration of variadic function Frama_C_show_each_warning.
 [variadic] tests/erroneous/variadic-builtin.i:1: 
   Variadic builtin Frama_C_show_each_warning left untransformed.
+[variadic] tests/erroneous/variadic-builtin.i:5: 
+  Call to variadic builtin Frama_C_show_each_warning left untransformed.
 [kernel] tests/erroneous/variadic-builtin.i:6: Plug-in variadic aborted: unimplemented feature.
   You may send a feature request at https://git.frama-c.com/pub/frama-c/issues with:
   '[Plug-in variadic] The variadic plugin doesn't handle calls to a pointer to the variadic builtin Frama_C_show_each_warning.'.
diff --git a/src/plugins/variadic/translate.ml b/src/plugins/variadic/translate.ml
index bf32abcdf50..04887ec9f26 100644
--- a/src/plugins/variadic/translate.ml
+++ b/src/plugins/variadic/translate.ml
@@ -27,17 +27,7 @@ module Typ = Extends.Typ
 
 (* List of builtin function names to translate *)
 
-let va_builtins = [
-  "__builtin_va_start";
-  "__builtin_va_copy";
-  "__builtin_va_arg";
-  "__builtin_va_end"]
-
-let is_framac_builtin vi =
-  Ast_info.is_frama_c_builtin vi.vname ||
-  Cil_builtins.Builtin_functions.mem vi.vname ||
-  Extlib.string_prefix "__FRAMAC_" vi.vname (* Mthread prefixes *)
-
+let is_framac_builtin vi = Classify.is_frama_c_builtin vi.vname
 
 (* In place visitor for translation *)
 
@@ -89,13 +79,14 @@ let translate_variadics (file : file) =
       begin match glob with
         | GFunDecl(_, vi, _) ->
           (match Table.find_opt classification vi with
-           | None -> ()
+           | None -> Cil.DoChildren (* may transform the type *)
            | Some { vf_class = Builtin } ->
              Self.result ~level:2 ~current:true
                "Variadic builtin %s left untransformed." vi.vname;
+             Cil.SkipChildren
            | Some _ ->
-             Generic.add_vpar vi);
-          Cil.DoChildren
+             Generic.add_vpar vi;
+             Cil.DoChildren)
 
         | GFun ({svar = vi} as fundec, _) ->
           if Table.mem classification vi then begin
@@ -147,7 +138,10 @@ let translate_variadics (file : file) =
             | Overload o -> Standard.overloaded_call ~fundec o
             | Aggregator a -> Standard.aggregator_call ~fundec ~ghost a
             | FormatFun f -> Standard.format_fun_call ~fundec env f
-            | Builtin -> raise Not_found
+            | Builtin ->
+              Self.result ~level:2 ~current:true
+                "Call to variadic builtin %s left untransformed." f.vname;
+              raise Not_found
             | _ -> raise Standard.Translate_call_exn
           in
           call_translator block loc mk_call vf args
@@ -157,7 +151,7 @@ let translate_variadics (file : file) =
       in
       begin match i with
         | Call(_, {enode = Lval(Var vi, _)}, _, _)
-          when List.mem vi.vname va_builtins ->
+          when Classify.is_va_builtin vi.vname ->
           File.must_recompute_cfg fundec;
           Cil.ChangeTo (Generic.translate_va_builtin fundec i)
         | Call(lv, {enode = Lval(Var vi, NoOffset)}, args, loc) ->
-- 
GitLab


From 4062c106226503cfef28f335b19edf8878ee8653 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Fri, 8 Jan 2021 10:08:39 +0100
Subject: [PATCH 045/141] [aorai] use abort and not fatal for user errors

---
 src/plugins/aorai/data_for_aorai.ml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/plugins/aorai/data_for_aorai.ml b/src/plugins/aorai/data_for_aorai.ml
index eda217b9f25..b333a7531da 100644
--- a/src/plugins/aorai/data_for_aorai.ml
+++ b/src/plugins/aorai/data_for_aorai.ml
@@ -1581,7 +1581,7 @@ let check_observables auto =
      try
        ignore (Globals.Functions.find_by_name name)
      with Not_found ->
-       Aorai_option.fatal "Observable %s doesn't match any function" name
+       Aorai_option.abort "Observable %s doesn't match any function" name
    in
    let rec check = function
      | TAnd (c1,c2) | TOr (c1,c2) -> check c1; check c2
@@ -1590,7 +1590,7 @@ let check_observables auto =
      | TCall (kf,_) | TReturn kf ->
        let name = Kernel_function.get_name kf in
        if not (Datatype.String.Set.mem name set) then
-         Aorai_option.fatal "Function %s is not observable" name
+         Aorai_option.abort "Function %s is not observable" name
    in
    Datatype.String.Set.iter is_relevant set;
    List.iter (fun tr -> check tr.cross) auto.trans
-- 
GitLab


From a2fa8aecef92961dca9553eba7191a2b6f5442fb Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Tue, 12 Jan 2021 10:26:53 +0100
Subject: [PATCH 046/141] [aorai] fix comments

---
 src/plugins/aorai/data_for_aorai.mli | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/src/plugins/aorai/data_for_aorai.mli b/src/plugins/aorai/data_for_aorai.mli
index b5869d06117..3478573a06b 100644
--- a/src/plugins/aorai/data_for_aorai.mli
+++ b/src/plugins/aorai/data_for_aorai.mli
@@ -222,16 +222,18 @@ val getNumberOfStates : unit -> int
 (** Return the list of all function name observed in the C file, except ignored functions. *)
 val getObservablesFunctions : unit -> Cil_types.kernel_function list
 
-(** Return the list of names of observable but ignored functions. A function is ignored if it is used in C file and if its declaration is unavailable. *)
+(** Return the list of names of observable but ignored functions.
+    A function is ignored if it is used in C file and if its declaration
+    is unavailable. *)
 val getIgnoredFunctions : unit -> Cil_types.kernel_function list
 
-(** Return the list of names of all ignored functions. A function is ignored if it is used in C file and if its declaration is unavailable. *)
+(** Add a function to the list of ignored functions. *)
 val addIgnoredFunction : Cil_types.kernel_function -> unit
 
 (** Return true if and only if the given string fname denotes an ignored function. *)
 val isIgnoredFunction : Cil_types.kernel_function -> bool
 
-(** Return true if and onfly if the given function can be observed *)
+(** Return true if and only if the given function can be observed *)
 val isObservableFunction : Cil_types.kernel_function -> bool
 
 (** returns the state of given index.
-- 
GitLab


From 3faeacad914d31d60eecdac31ebd885898114bfc Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Tue, 12 Jan 2021 10:27:07 +0100
Subject: [PATCH 047/141] [aorai] warns if an observable of the automaton is
 not defined (hence ignored).

---
 src/plugins/aorai/data_for_aorai.ml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/plugins/aorai/data_for_aorai.ml b/src/plugins/aorai/data_for_aorai.ml
index b333a7531da..b3da1ce5c06 100644
--- a/src/plugins/aorai/data_for_aorai.ml
+++ b/src/plugins/aorai/data_for_aorai.ml
@@ -1579,7 +1579,12 @@ let check_observables auto =
  | Some set ->
    let is_relevant name =
      try
-       ignore (Globals.Functions.find_by_name name)
+       let kf = Globals.Functions.find_by_name name in
+       if not (Kernel_function.is_definition kf) then
+         Aorai_option.warning
+           "Function %a is observable by the automaton but is not defined \
+            in the C code. It will be ignored in the instrumentation"
+           Printer.pp_varname (Kernel_function.get_name kf)
      with Not_found ->
        Aorai_option.abort "Observable %s doesn't match any function" name
    in
-- 
GitLab


From 3c1f14295bbab636853fc5614f7160004e7706b7 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Tue, 12 Jan 2021 11:43:49 +0100
Subject: [PATCH 048/141] [kernel] do not put ghost attributes in logic types.

---
 src/kernel_services/ast_queries/cil.ml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/kernel_services/ast_queries/cil.ml b/src/kernel_services/ast_queries/cil.ml
index e60f431c9a2..a23817a3be9 100644
--- a/src/kernel_services/ast_queries/cil.ml
+++ b/src/kernel_services/ast_queries/cil.ml
@@ -665,7 +665,9 @@ let update_var_type v t =
   v.vtype <- if v.vghost then typeAddGhost t else t;
   match v.vlogic_var_assoc with
   | None -> ()
-  | Some lv -> lv.lv_type <- Ctype v.vtype
+  | Some lv ->
+    (* ghost attribute is irrelevant in ACSL. *)
+    lv.lv_type <- Ctype t
 
 (* Make a varinfo. Used mostly as a helper function below  *)
 let makeVarinfo
-- 
GitLab


From 60de7eb71b846ea26c34cd084e4a5c6d02d51a21 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Tue, 12 Jan 2021 13:15:55 +0100
Subject: [PATCH 049/141] [aorai] update test to check full behavior of
 Frama_C_show_aorai_state

---
 src/plugins/aorai/tests/ya/oracle/serial.res.oracle | 10 +++++++++-
 src/plugins/aorai/tests/ya/serial.c                 |  2 +-
 2 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/src/plugins/aorai/tests/ya/oracle/serial.res.oracle b/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
index a1dde62c222..5f1197b44ca 100644
--- a/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
@@ -23,11 +23,17 @@
 [eva] tests/ya/serial.c:50: Trace partitioning superposing up to 100 states
 [eva] tests/ya/serial.c:50: Trace partitioning superposing up to 300 states
 [aorai] tests/ya/serial.c:79: Wait1 <- Wait1 <- Complete
+[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [8192..16383]
 [aorai] tests/ya/serial.c:79: Error <- Error <- Complete
+[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [8192..16383]
 [aorai] tests/ya/serial.c:79: Complete <- Complete <- Complete
+[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [8192..16383]
 [aorai] tests/ya/serial.c:79: Wait1 <- Wait1 <- Complete
+[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [0..8191]
 [aorai] tests/ya/serial.c:79: Error <- Error <- Complete
+[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [0..8191]
 [aorai] tests/ya/serial.c:79: Complete <- Complete <- Complete
+[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [0..8191]
 [eva] tests/ya/serial.c:50: Trace partitioning superposing up to 500 states
 [eva:alarm] tests/ya/serial.c:52: Warning: 
   accessing uninitialized left-value. assert \initialized(&status);
@@ -36,7 +42,9 @@
 [eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1200 states
 [eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1500 states
 [aorai] tests/ya/serial.c:79: Error <- Error <- Error
+[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [8192..16383]
 [aorai] tests/ya/serial.c:79: Error <- Error <- Error
+[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [0..8191]
 [eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1700 states
 [eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1900 states
 [eva] tests/ya/serial.c:50: Trace partitioning superposing up to 2000 states
@@ -675,7 +683,7 @@ void main(void)
           int x = buffer[1] + 0x80 * buffer[2];
           int y = buffer[3] + 0x80 * buffer[4];
           output(x,y);
-          Frama_C_show_aorai_state();
+          Frama_C_show_aorai_state(n,x,y);
         }
         n = 0;
       }
diff --git a/src/plugins/aorai/tests/ya/serial.c b/src/plugins/aorai/tests/ya/serial.c
index 8afcc7533fb..43d67d6540f 100644
--- a/src/plugins/aorai/tests/ya/serial.c
+++ b/src/plugins/aorai/tests/ya/serial.c
@@ -76,7 +76,7 @@ void main(void)
           output(x, y);
           /* "Error" state should show up as, for now, it is  hard to prove
             the metavariable équation in the input automaton */
-          Frama_C_show_aorai_state();
+          Frama_C_show_aorai_state(n,x,y);
         }
 
         n = 0;
-- 
GitLab


From afd399a8f159e59fdf840b7ecc74c5ca9653721e Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Tue, 12 Jan 2021 15:07:24 +0100
Subject: [PATCH 050/141] [aorai] remove completely obsolete mechanism for
 generating C files

If you want to see instrumented code use `-then-last -print [-ocode file.c]`
like everyone else.

Also properly indent some files
---
 .Makefile.lint                                |   2 -
 src/plugins/aorai/aorai_option.ml             | 157 ++++++++--------
 src/plugins/aorai/aorai_option.mli            |   1 -
 src/plugins/aorai/aorai_register.ml           | 173 ++++++------------
 src/plugins/aorai/tests/ltl/goto.c            |   2 +-
 .../aorai/tests/ltl/oracle/goto.res.oracle    |   1 -
 .../tests/ltl/oracle/test_boucle.res.oracle   |   1 -
 .../tests/ltl/oracle/test_boucle1.res.oracle  |   1 -
 .../tests/ltl/oracle/test_boucle2.res.oracle  |   1 -
 .../tests/ltl/oracle/test_boucle3.res.oracle  |   1 -
 .../ltl/oracle/test_factorial.res.oracle      |   1 -
 .../ltl/oracle/test_recursion1.res.oracle     |   1 -
 .../ltl/oracle/test_recursion2.0.res.oracle   |   1 -
 .../ltl/oracle/test_recursion2.1.res.oracle   |   1 -
 .../tests/ltl/oracle/test_switch2.res.oracle  |   1 -
 .../tests/ltl/oracle/test_switch3.res.oracle  |   1 -
 .../test_switch3_et_recursion.res.oracle      |   1 -
 .../ltl/oracle/test_switch3_if.res.oracle     |   1 -
 .../ltl/oracle/test_switch3_return.res.oracle |   1 -
 .../tests/ltl/oracle_prove/goto.res.oracle    |   1 -
 .../ltl/oracle_prove/test_boucle.res.oracle   |   1 -
 .../ltl/oracle_prove/test_boucle1.res.oracle  |   1 -
 .../ltl/oracle_prove/test_boucle2.res.oracle  |   1 -
 .../ltl/oracle_prove/test_boucle3.res.oracle  |   1 -
 .../oracle_prove/test_factorial.res.oracle    |   1 -
 .../oracle_prove/test_recursion1.res.oracle   |   1 -
 .../oracle_prove/test_recursion2.0.res.oracle |   1 -
 .../oracle_prove/test_recursion2.1.res.oracle |   1 -
 .../ltl/oracle_prove/test_switch2.res.oracle  |   1 -
 .../ltl/oracle_prove/test_switch3.res.oracle  |   1 -
 .../test_switch3_et_recursion.res.oracle      |   1 -
 .../oracle_prove/test_switch3_if.res.oracle   |   1 -
 .../test_switch3_return.res.oracle            |   1 -
 src/plugins/aorai/tests/ltl/test_boucle.c     |   2 +-
 src/plugins/aorai/tests/ltl/test_boucle1.c    |   2 +-
 src/plugins/aorai/tests/ltl/test_boucle2.c    |   2 +-
 src/plugins/aorai/tests/ltl/test_boucle3.c    |   2 +-
 src/plugins/aorai/tests/ltl/test_factorial.c  |   2 +-
 src/plugins/aorai/tests/ltl/test_recursion1.c |   2 +-
 src/plugins/aorai/tests/ltl/test_recursion2.c |   4 +-
 src/plugins/aorai/tests/ltl/test_switch2.c    |   2 +-
 src/plugins/aorai/tests/ltl/test_switch3.c    |   2 +-
 .../tests/ltl/test_switch3_et_recursion.c     |   2 +-
 src/plugins/aorai/tests/ltl/test_switch3_if.c |   2 +-
 .../aorai/tests/ltl/test_switch3_return.c     |   2 +-
 src/plugins/aorai/tests/ya/assigns.c          |   6 +-
 src/plugins/aorai/tests/ya/bts1289.i          |   4 +-
 .../aorai/tests/ya/declared_function.i        |   2 +-
 src/plugins/aorai/tests/ya/deterministic.i    |   2 +-
 src/plugins/aorai/tests/ya/formals.i          |   2 +-
 .../aorai/tests/ya/generate_assigns_bts1290.i |   2 +-
 src/plugins/aorai/tests/ya/hoare_seq.i        |   2 +-
 src/plugins/aorai/tests/ya/incorrect.i        |   2 +-
 src/plugins/aorai/tests/ya/loop_bts1050.i     |   2 +-
 .../tests/ya/metavariables-incompatible.i     |   2 +-
 .../aorai/tests/ya/metavariables-right.i      |   2 +-
 .../aorai/tests/ya/metavariables-wrong.i      |   2 +-
 src/plugins/aorai/tests/ya/monostate.i        |   2 +-
 src/plugins/aorai/tests/ya/not_prm.i          |   2 +-
 .../tests/ya/oracle/assigns.0.res.oracle      |   1 -
 .../tests/ya/oracle/assigns.1.res.oracle      |   1 -
 .../tests/ya/oracle/assigns.2.res.oracle      |   1 -
 .../tests/ya/oracle/bts1289.0.res.oracle      |   1 -
 .../tests/ya/oracle/bts1289.1.res.oracle      |   1 -
 .../ya/oracle/declared_function.res.oracle    |   1 -
 .../tests/ya/oracle/deterministic.res.oracle  |   1 -
 .../aorai/tests/ya/oracle/formals.res.oracle  |   1 -
 .../generate_assigns_bts1290.res.oracle       |   1 -
 .../tests/ya/oracle/hoare_seq.res.oracle      |   1 -
 .../tests/ya/oracle/incorrect.res.oracle      |   1 -
 .../tests/ya/oracle/loop_bts1050.res.oracle   |   1 -
 .../metavariables-incompatible.res.oracle     |   1 -
 .../ya/oracle/metavariables-right.res.oracle  |   1 -
 .../ya/oracle/metavariables-wrong.res.oracle  |   1 -
 .../tests/ya/oracle/monostate.res.oracle      |   1 -
 .../aorai/tests/ya/oracle/not_prm.res.oracle  |   1 -
 .../aorai/tests/ya/oracle/other.res.oracle    |   1 -
 .../aorai/tests/ya/oracle/seq.res.oracle      |   1 -
 .../aorai/tests/ya/oracle/seq_loop.res.oracle |   1 -
 .../aorai/tests/ya/oracle/serial.res.oracle   |   1 -
 .../tests/ya/oracle/single_call.res.oracle    |   1 -
 .../oracle/singleassignment-right.res.oracle  |   1 -
 .../oracle/singleassignment-wrong.res.oracle  |   1 -
 .../aorai/tests/ya/oracle/stack.res.oracle    |   1 -
 .../ya/oracle/test_acces_params.res.oracle    |   1 -
 .../ya/oracle/test_acces_params2.res.oracle   |   1 -
 .../test_boucle_rechercheTableau.res.oracle   |   1 -
 .../tests/ya/oracle/test_factorial.res.oracle |   1 -
 .../ya/oracle/test_recursion4.res.oracle      |   1 -
 .../ya/oracle/test_recursion5.res.oracle      |   1 -
 .../tests/ya/oracle/test_struct.res.oracle    |   1 -
 .../ya/oracle_prove/assigns.0.res.oracle      |   1 -
 .../ya/oracle_prove/assigns.1.res.oracle      |   1 -
 .../ya/oracle_prove/assigns.2.res.oracle      |   1 -
 .../ya/oracle_prove/bts1289.0.res.oracle      |   1 -
 .../ya/oracle_prove/bts1289.1.res.oracle      |   1 -
 .../oracle_prove/declared_function.res.oracle |   1 -
 .../ya/oracle_prove/deterministic.res.oracle  |   1 -
 .../tests/ya/oracle_prove/formals.res.oracle  |   1 -
 .../generate_assigns_bts1290.res.oracle       |   1 -
 .../ya/oracle_prove/hoare_seq.res.oracle      |   1 -
 .../ya/oracle_prove/incorrect.res.oracle      |   1 -
 .../ya/oracle_prove/loop_bts1050.res.oracle   |   1 -
 .../metavariables-incompatible.res.oracle     |   3 +-
 .../metavariables-right.res.oracle            |   1 -
 .../metavariables-wrong.res.oracle            |   1 -
 .../tests/ya/oracle_prove/not_prm.res.oracle  |   1 -
 .../tests/ya/oracle_prove/other.res.oracle    |   1 -
 .../tests/ya/oracle_prove/seq.res.oracle      |   1 -
 .../tests/ya/oracle_prove/seq_loop.res.oracle |   1 -
 .../tests/ya/oracle_prove/serial.res.oracle   |  57 +++---
 .../ya/oracle_prove/single_call.res.oracle    |   1 -
 .../singleassignment-right.res.oracle         |   1 -
 .../singleassignment-wrong.res.oracle         |   1 -
 .../tests/ya/oracle_prove/stack.res.oracle    |   1 -
 .../oracle_prove/test_acces_params.res.oracle |   1 -
 .../test_acces_params2.res.oracle             |   1 -
 .../test_boucle_rechercheTableau.res.oracle   |   1 -
 .../ya/oracle_prove/test_factorial.res.oracle |   1 -
 .../oracle_prove/test_recursion4.res.oracle   |   1 -
 .../oracle_prove/test_recursion5.res.oracle   |   1 -
 .../ya/oracle_prove/test_struct.res.oracle    |   1 -
 src/plugins/aorai/tests/ya/other.c            |   2 +-
 src/plugins/aorai/tests/ya/seq.i              |   2 +-
 src/plugins/aorai/tests/ya/seq_loop.i         |   2 +-
 src/plugins/aorai/tests/ya/serial.c           |   2 +-
 src/plugins/aorai/tests/ya/single_call.i      |   2 +-
 .../aorai/tests/ya/singleassignment-right.i   |   2 +-
 .../aorai/tests/ya/singleassignment-wrong.i   |   2 +-
 src/plugins/aorai/tests/ya/stack.i            |   2 +-
 .../aorai/tests/ya/test_acces_params.c        |   2 +-
 .../aorai/tests/ya/test_acces_params2.c       |   2 +-
 .../tests/ya/test_boucle_rechercheTableau.c   |   2 +-
 src/plugins/aorai/tests/ya/test_factorial.c   |   2 +-
 src/plugins/aorai/tests/ya/test_recursion4.c  |   2 +-
 src/plugins/aorai/tests/ya/test_recursion5.c  |   2 +-
 src/plugins/aorai/tests/ya/test_struct.c      |   2 +-
 137 files changed, 213 insertions(+), 361 deletions(-)

diff --git a/.Makefile.lint b/.Makefile.lint
index 4d510d83241..ba3d6165fce 100644
--- a/.Makefile.lint
+++ b/.Makefile.lint
@@ -146,8 +146,6 @@ ML_LINT_KO+=src/libraries/utils/wto.mli
 ML_LINT_KO+=src/plugins/aorai/Aorai.mli
 ML_LINT_KO+=src/plugins/aorai/aorai_dataflow.ml
 ML_LINT_KO+=src/plugins/aorai/aorai_dataflow.mli
-ML_LINT_KO+=src/plugins/aorai/aorai_option.ml
-ML_LINT_KO+=src/plugins/aorai/aorai_register.ml
 ML_LINT_KO+=src/plugins/aorai/data_for_aorai.ml
 ML_LINT_KO+=src/plugins/aorai/data_for_aorai.mli
 ML_LINT_KO+=src/plugins/aorai/logic_simplification.ml
diff --git a/src/plugins/aorai/aorai_option.ml b/src/plugins/aorai/aorai_option.ml
index 2bcf7c8129b..0920c5f83d1 100644
--- a/src/plugins/aorai/aorai_option.ml
+++ b/src/plugins/aorai/aorai_option.ml
@@ -24,95 +24,95 @@
 (**************************************************************************)
 
 include Plugin.Register
-  (struct
-     let name = "aorai"
-     let shortname = "aorai"
-     let help = "verification of behavioral properties (experimental)"
-   end)
+    (struct
+      let name = "aorai"
+      let shortname = "aorai"
+      let help = "verification of behavioral properties (experimental)"
+    end)
 
 module Ltl_File =
   Filepath
     (struct
-       let option_name = "-aorai-ltl"
-       let arg_name = ""
-       let file_kind = "ltl"
-       let existence = Fc_Filepath.Must_exist
-       let help = "specifies file name for LTL property"
-     end)
+      let option_name = "-aorai-ltl"
+      let arg_name = ""
+      let file_kind = "ltl"
+      let existence = Fc_Filepath.Must_exist
+      let help = "specifies file name for LTL property"
+    end)
 
 module To_Buchi =
   Filepath
     (struct
-       let option_name = "-aorai-to-buchi"
-       let arg_name = "f"
-       let file_kind = "Promela"
-       let existence = Fc_Filepath.Indifferent
-       let help =
-         "only generates the buchi automata (in Promela language) in file <s>"
-     end)
+      let option_name = "-aorai-to-buchi"
+      let arg_name = "f"
+      let file_kind = "Promela"
+      let existence = Fc_Filepath.Indifferent
+      let help =
+        "only generates the buchi automata (in Promela language) in file <s>"
+    end)
 
 module Buchi =
   Filepath
     (struct
-       let option_name = "-aorai-buchi"
-       let arg_name = "f"
-       let file_kind = "Promela"
-       let existence = Fc_Filepath.Must_exist
-       let help = "considers the property described by the buchi automata \
-                   (in Promela language) from file <f>."
-     end)
+      let option_name = "-aorai-buchi"
+      let arg_name = "f"
+      let file_kind = "Promela"
+      let existence = Fc_Filepath.Must_exist
+      let help = "considers the property described by the buchi automata \
+                  (in Promela language) from file <f>."
+    end)
 
 module Ya =
   Filepath
     (struct
-       let option_name = "-aorai-automata"
-       let arg_name = "f"
-       let file_kind = "Ya"
-       let existence = Fc_Filepath.Must_exist
-       let help = "considers the property described by the ya automata \
-                   (in Ya language) from file <f>."
-     end)
+      let option_name = "-aorai-automata"
+      let arg_name = "f"
+      let file_kind = "Ya"
+      let existence = Fc_Filepath.Must_exist
+      let help = "considers the property described by the ya automata \
+                  (in Ya language) from file <f>."
+    end)
 
 module Output_C_File =
   Filepath
     (struct
-       let option_name = "-aorai-output-c-file"
-       let arg_name = ""
-       let file_kind = "annotated C"
-       let existence = Fc_Filepath.Indifferent
-       let help = "specifies generated file name for annotated C code"
-     end)
+      let option_name = "-aorai-output-c-file"
+      let arg_name = ""
+      let file_kind = "annotated C"
+      let existence = Fc_Filepath.Indifferent
+      let help = "specifies generated file name for annotated C code"
+    end)
 
 module Dot =
   False(struct
-          let option_name = "-aorai-dot"
-          let help = "generates a dot file of the Buchi automata"
-        end)
+    let option_name = "-aorai-dot"
+    let help = "generates a dot file of the Buchi automata"
+  end)
 
 module DotSeparatedLabels =
   False(struct
-          let option_name = "-aorai-dot-sep-labels"
-          let help = "tells dot to not output guards directly over the edges"
-        end)
+    let option_name = "-aorai-dot-sep-labels"
+    let help = "tells dot to not output guards directly over the edges"
+  end)
 
 module AbstractInterpretation =
   False(struct
-          let option_name = "-aorai-simple-AI"
-          let help = "use simple abstract interpretation"
-        end)
+    let option_name = "-aorai-simple-AI"
+    let help = "use simple abstract interpretation"
+  end)
 
 module AbstractInterpretationOff  =
   False(struct
-          let option_name = "-aorai-AI-off"
-          let help = "does not use abstract interpretation"
-        end)
+    let option_name = "-aorai-AI-off"
+    let help = "does not use abstract interpretation"
+  end)
 
 let () = Parameter_customize.set_negative_option_name "-aorai-spec-off"
 module Axiomatization =
   True(struct
-         let option_name = "-aorai-spec-on"
-         let help = "if set, does not axiomatize automata"
-       end)
+    let option_name = "-aorai-spec-on"
+    let help = "if set, does not axiomatize automata"
+  end)
 
 module GenerateAnnotations =
   True
@@ -131,41 +131,34 @@ module GenerateDeterministicLemmas =
 
 module ConsiderAcceptance =
   False(struct
-         let option_name = "-aorai-acceptance"
-         let help = "if set, considers acceptation states"
-       end)
+    let option_name = "-aorai-acceptance"
+    let help = "if set, considers acceptation states"
+  end)
 
 let () = Parameter_customize.set_negative_option_name "-aorai-raw-auto"
 module AutomataSimplification=
   True
     (struct
-       let option_name = "-aorai-simplified-auto"
-       let help = "If set, does not simplify automata"
-     end)
-
-module Test =
-  Zero(struct
-         let option_name = "-aorai-test"
-         let arg_name = ""
-         let help = "Testing mode (0 = no test)"
-       end)
+      let option_name = "-aorai-simplified-auto"
+      let help = "If set, does not simplify automata"
+    end)
 
 module AddingOperationNameAndStatusInSpecification =
   False
     (struct
       let option_name = "-aorai-add-oper"
       let help = "Adding current operation name (and statut) in pre/post \
-conditions"
-     end)
+                  conditions"
+    end)
 
 module Deterministic=
   State_builder.Ref
     (Datatype.Bool)
     (struct
-        let name = "Aorai_option.Deterministic"
-        let dependencies = []
-        let default () = false
-     end)
+      let name = "Aorai_option.Deterministic"
+      let dependencies = []
+      let default () = false
+    end)
 
 module InstrumentationHistory =
   Int
@@ -187,20 +180,20 @@ let promela_file () =
 let advance_abstract_interpretation () =
   not (AbstractInterpretationOff.get ()) && not (AbstractInterpretation.get ())
 
-let emitter = 
+let emitter =
   Emitter.create
     "Aorai"
-    [ Emitter.Code_annot; Emitter.Funspec; Emitter.Global_annot ] 
+    [ Emitter.Code_annot; Emitter.Funspec; Emitter.Global_annot ]
     ~correctness:
-    [ Ltl_File.parameter; To_Buchi.parameter; Buchi.parameter;
-      Ya.parameter; Axiomatization.parameter;
-      ConsiderAcceptance.parameter;
-      AutomataSimplification.parameter ]
+      [ Ltl_File.parameter; To_Buchi.parameter; Buchi.parameter;
+        Ya.parameter; Axiomatization.parameter;
+        ConsiderAcceptance.parameter;
+        AutomataSimplification.parameter ]
     ~tuning:
-    [ AbstractInterpretation.parameter;
-      AddingOperationNameAndStatusInSpecification.parameter;
-      InstrumentationHistory.parameter;
-      GenerateAnnotations.parameter ]
+      [ AbstractInterpretation.parameter;
+        AddingOperationNameAndStatusInSpecification.parameter;
+        InstrumentationHistory.parameter;
+        GenerateAnnotations.parameter ]
 
 
 (*
diff --git a/src/plugins/aorai/aorai_option.mli b/src/plugins/aorai/aorai_option.mli
index 79482fd5f3b..4f8c3838eb4 100644
--- a/src/plugins/aorai/aorai_option.mli
+++ b/src/plugins/aorai/aorai_option.mli
@@ -38,7 +38,6 @@ module GenerateAnnotations: Parameter_sig.Bool
 module GenerateDeterministicLemmas: Parameter_sig.Bool
 module ConsiderAcceptance: Parameter_sig.Bool
 module AutomataSimplification: Parameter_sig.Bool
-module Test: Parameter_sig.Int
 module AddingOperationNameAndStatusInSpecification: Parameter_sig.Bool
 
 (** [true] if the user declares that its ya automaton is deterministic. *)
diff --git a/src/plugins/aorai/aorai_register.ml b/src/plugins/aorai/aorai_register.ml
index fe4775a424c..d609113165c 100644
--- a/src/plugins/aorai/aorai_register.ml
+++ b/src/plugins/aorai/aorai_register.ml
@@ -33,7 +33,6 @@ let output_c_file = ref Filepath.Normalized.unknown
 let ltl_tmp_file = ref Filepath.Normalized.unknown
 let ltl_file = ref Filepath.Normalized.unknown
 let dot_file = ref Filepath.Normalized.unknown
-let generatesCFile = ref true
 let ltl2ba_params = " -l -p -o "
 
 let ltl_to_promela = Hashtbl.create 7
@@ -45,15 +44,15 @@ let set_ltl_correspondence h =
 let convert_ltl_exprs t =
   let rec convert_cond cond =
     match cond with
-        POr(c1,c2) -> POr (convert_cond c1, convert_cond c2)
-      | PAnd(c1,c2) -> PAnd(convert_cond c1, convert_cond c2)
-      | PNot c -> PNot (convert_cond c)
-      | PCall _ | PReturn _ | PTrue | PFalse -> cond
-      | PRel(Neq,PVar x,PCst _) ->
-        (try
-           let (rel,t1,t2) = Hashtbl.find ltl_to_promela x in PRel(rel,t1,t2)
-         with Not_found -> cond)
-      | PRel _ -> cond
+      POr(c1,c2) -> POr (convert_cond c1, convert_cond c2)
+    | PAnd(c1,c2) -> PAnd(convert_cond c1, convert_cond c2)
+    | PNot c -> PNot (convert_cond c)
+    | PCall _ | PReturn _ | PTrue | PFalse -> cond
+    | PRel(Neq,PVar x,PCst _) ->
+      (try
+         let (rel,t1,t2) = Hashtbl.find ltl_to_promela x in PRel(rel,t1,t2)
+       with Not_found -> cond)
+    | PRel _ -> cond
   in
   let rec convert_seq_elt e =
     { e with
@@ -62,8 +61,8 @@ let convert_ltl_exprs t =
   and convert_seq s = List.map convert_seq_elt s in
   let convert_parsed c =
     match c with
-        Seq l -> Seq (convert_seq l)
-      | Otherwise -> Otherwise
+      Seq l -> Seq (convert_seq l)
+    | Otherwise -> Otherwise
   in
   let convert_trans t = { t with cross = convert_parsed t.cross } in
   List.map convert_trans t
@@ -117,7 +116,7 @@ let load_ya_file filename  =
   let channel = check_and_open_in filename "invalid Ya file" in
   let lexbuf = Lexing.from_channel channel in
   Lexing.(lexbuf.lex_curr_p <-
-    { lexbuf.lex_curr_p with pos_fname = (filename :> string) });
+            { lexbuf.lex_curr_p with pos_fname = (filename :> string) });
   try
     let automata = Yaparser.main Yalexer.token lexbuf in
     close_in channel;
@@ -136,7 +135,7 @@ let load_promela_file f  =
     let trans = convert_ltl_exprs auto.trans in
     close_in c;
     Data_for_aorai.setAutomata { auto with trans };
-  with 
+  with
   | Promelalexer.Error(loc,msg) -> syntax_error loc msg
 
 let load_promela_file_withexps f =
@@ -145,18 +144,16 @@ let load_promela_file_withexps f =
     let automata = Promelalexer_withexps.parse c  in
     close_in c;
     Data_for_aorai.setAutomata automata;
-  with 
+  with
   | Promelalexer_withexps.Error(loc,msg) -> syntax_error loc msg
 
 let display_status () =
   if Aorai_option.verbose_atleast 2 then begin
     Aorai_option.feedback "\n"  ;
     Aorai_option.feedback "C file:            '%a'\n" Filepath.Normalized.pretty !c_file ;
-    Aorai_option.feedback "Entry point:       '%a'\n" 
+    Aorai_option.feedback "Entry point:       '%a'\n"
       Kernel_function.pretty (fst (Globals.entry_point())) ;
     Aorai_option.feedback "LTL property:      '%a'\n" Filepath.Normalized.pretty !ltl_file ;
-    Aorai_option.feedback "Files to generate: '%a' (Annotated code)\n"
-      (if !generatesCFile then Filepath.Normalized.pretty else (fun fmt _ -> Format.fprintf fmt "(none)")) !output_c_file;
     if Aorai_option.Dot.get () then
       Aorai_option.feedback "Dot file:          '%a'\n" Filepath.Normalized.pretty !dot_file;
     Aorai_option.feedback "Tmp files:         '%a' (Light LTL file)\n"
@@ -167,15 +164,8 @@ let display_status () =
   end
 
 let init_file_names () =
-  (* Intermediate functions for error display or fresh name of file
-     generation *)
-  let err= ref false in
-  let dispErr mesg f =
-    Aorai_option.error "Error. File '%a' %s.\n" Filepath.Normalized.pretty f mesg;
-    err:=true
-  in
   let freshname ?opt_suf file suf =
-    let name = Filepath.Normalized.to_pretty_string file in
+    let name = (file:Filepath.Normalized.t:>string) in
     let pre = Filename.remove_extension name in
     let pre = match opt_suf with None -> pre | Some s -> pre ^ s in
     let rec fn p s n =
@@ -185,30 +175,14 @@ let init_file_names () =
     let name =
       if not (Sys.file_exists (pre^suf)) then pre^suf
       else fn pre suf 0
-    in Filepath.Normalized.of_string name
+    in
+    Filepath.Normalized.of_string name
   in
-
-  (* c_file name is given and has to point out a valid file. *)
-  c_file :=
-    (match Kernel.Files.get () with
-      | [] -> Filepath.Normalized.of_string "dummy.i"
-      | f :: _ -> f);
-  if (Filepath.Normalized.is_unknown !c_file) then dispErr ": invalid C file name" !c_file;
-
-  (* The output C file has to be a valid file name if it is used. *)
-  output_c_file := Aorai_option.Output_C_File.get ();
-  if (Filepath.Normalized.is_unknown !output_c_file) then
-    output_c_file := freshname ~opt_suf:"_annot" !c_file ".c";
-  (*   else if Sys.file_exists !output_c_file then dispErr "already exists" !output_c_file; *)
-
-  if Aorai_option.Dot.get () then
-    dot_file:= freshname !c_file ".dot";
-
   if Filepath.Normalized.is_unknown (Aorai_option.Ya.get ()) then
     if Filepath.Normalized.is_unknown (Aorai_option.Buchi.get ()) then begin
       (* ltl_file name is given and has to point out a valid file. *)
       ltl_file := Aorai_option.Ltl_File.get ();
-
+      if Aorai_option.Dot.get() then dot_file := freshname !ltl_file ".dot";
       (* The LTL file is always used. *)
       (* The promela file can be given or not. *)
       if not (Filepath.Normalized.is_unknown (Aorai_option.To_Buchi.get ())) then begin
@@ -232,26 +206,25 @@ let init_file_names () =
       if not (Filepath.Normalized.is_unknown (Aorai_option.To_Buchi.get ())) &&
          not (Filepath.Normalized.is_unknown (Aorai_option.Ltl_File.get ()))
       then begin
-        Aorai_option.error
+        Aorai_option.abort
           "Error. '-buchi' option is incompatible with '-to-buchi' and '-ltl' \
-options.";
-        err:=true
+           options."
       end;
       (* The promela file is used only if the process does not terminate after
-         LTL generation. *)
+          LTL generation. *)
       promela_file := Aorai_option.promela_file ();
+      if Aorai_option.Dot.get() then
+        dot_file := freshname !promela_file ".dot";
     end
   else begin
-   let ya_file = Aorai_option.Ya.get () in
-    if (Filepath.Normalized.is_unknown ya_file) then dispErr ": invalid Ya file name" ya_file;
+    let ya_file = Aorai_option.Ya.get () in
+    if (Filepath.Normalized.is_unknown ya_file) then
+      Aorai_option.abort
+        "invalid Ya file name %a" Filepath.Normalized.pretty ya_file;
+    if Aorai_option.Dot.get() then
+      dot_file := freshname ya_file ".dot"
   end;
-  display_status ();
-  !err
-
-let init_test () =
-  match Aorai_option.Test.get () with
-  | 1 -> generatesCFile := false;
-  | _ -> generatesCFile := true
+  display_status ()
 
 let printverb s = Aorai_option.feedback ~level:2 "%s" s
 
@@ -263,26 +236,8 @@ let output () =
         (!dot_file:>string);
       printverb "Generating dot file    : done\n"
     end;
-
-  (* C file *)
-  if (not !generatesCFile) then
-    printverb "C file generation      : skipped\n"
-  else
-    begin
-      let cout = open_out (!output_c_file:>string) in
-      let fmt = Format.formatter_of_out_channel cout in
-      Kernel.Unicode.without_unicode
-        (fun () ->
-          File.pretty_ast ~fmt ();
-          close_out cout;
-          printverb "C file generation      : done\n";
-        ) ()
-    end;
-
-  printverb "Finished.\n";
   (* Some test traces. *)
-  Data_for_aorai.debug_computed_state ();
-  if !generatesCFile then Kernel.Files.set [ !output_c_file ]
+  Data_for_aorai.debug_computed_state ()
 
 let work () =
   let file = Ast.get () in
@@ -297,15 +252,15 @@ let work () =
           Filepath.Normalized.pretty !ltl_tmp_file
           Filepath.Normalized.pretty !promela_file
       in if Sys.command cmd <> 0 then
-          Aorai_option.abort "failed to run: %s" cmd ;
+        Aorai_option.abort "failed to run: %s" cmd ;
       printverb "LTL ~> Promela (ltl2ba): done\n"
     end;
   if not (Filepath.Normalized.is_unknown (Aorai_option.To_Buchi.get ())) then
     printverb ("Finished.\nGenerated file: '"^(Filepath.Normalized.to_pretty_string !promela_file)^"'\n")
   else
     begin
-        (* Step 3 : Loading promela_file and checking the consistency between informations from C code and LTL property *)
-        (*          Such as functions name and global variables. *)
+      (* Step 3 : Loading promela_file and checking the consistency between informations from C code and LTL property *)
+      (*          Such as functions name and global variables. *)
 
       if not (Filepath.Normalized.is_unknown (Aorai_option.Buchi.get ())) then
         load_promela_file_withexps !promela_file
@@ -314,23 +269,23 @@ let work () =
       else
         load_promela_file !promela_file;
       printverb "Loading promela        : done\n";
-        (* Computing the list of ignored functions *)
-        (*      Aorai_visitors.compute_ignored_functions file; *)
+      (* Computing the list of ignored functions *)
+      (*      Aorai_visitors.compute_ignored_functions file; *)
 
 
-        (* Promelaoutput.print_raw_automata (Data_for_aorai.getAutomata());  *)
-        (* Data_for_aorai.debug_ltl_expressions (); *)
+      (* Promelaoutput.print_raw_automata (Data_for_aorai.getAutomata());  *)
+      (* Data_for_aorai.debug_ltl_expressions (); *)
 
       (*let _ = Path_analysis.test (Data_for_aorai.getAutomata())in*)
       let root = fst (Globals.entry_point ()) in
       let axiomatization = Aorai_option.Axiomatization.get() in
       if axiomatization then
         begin
-            (* Step 5 : incrementing pre/post
-               conditions with states and transitions information *)
+          (* Step 5 : incrementing pre/post
+             conditions with states and transitions information *)
           printverb "Refining pre/post      : \n";
           Aorai_dataflow.compute ();
-            (* Step 6 : Removing transitions never crossed *)
+          (* Step 6 : Removing transitions never crossed *)
           let automaton_has_states =
             if (Aorai_option.AutomataSimplification.get()) then
               begin
@@ -362,19 +317,19 @@ let work () =
         end
       else
         begin
-            (* Step 4': Computing the set of possible pre-states and post-states of each function *)
-            (*          And so for pre/post transitions *)
+          (* Step 4': Computing the set of possible pre-states and post-states of each function *)
+          (*          And so for pre/post transitions *)
           printverb "Abstracting pre/post   : skipped\n";
 
-            (* Step 5': incrementing pre/post conditions with states and transitions information *)
+          (* Step 5': incrementing pre/post conditions with states and transitions information *)
           printverb "Refining pre/post      : skipped\n";
 
 
-            (* Step 6 : Removing transitions never crossed *)
+          (* Step 6 : Removing transitions never crossed *)
           printverb "Removing unused trans  : skipped\n";
 
-            (* Step 7 : Labeling abstract file *)
-            (* Finally the information is added into the Cil automata. *)
+          (* Step 7 : Labeling abstract file *)
+          (* Finally the information is added into the Cil automata. *)
           Aorai_utils.initGlobals root axiomatization;
           Aorai_visitors.add_sync_with_buch file;
           printverb "Annotation of Cil      : partial\n"
@@ -392,24 +347,16 @@ let work () =
     end
 
 let run () =
-  Aorai_option.result "Welcome to the Aorai plugin@.";
-  init_test ();
-
   (* Step 1 : Capture files names *)
-  let error_status = init_file_names () in
-  (* Treatment is done only if parameters are valid *)
-  if error_status then
-    Aorai_option.error "Generation stopped."
-  else
-
-    (* Step 2 : Work in our own project, initialized by a copy of the main
-       one. *)
-    let work_prj =
-      File.create_project_from_visitor "aorai"
-        (fun prj -> new Visitor.frama_c_copy prj)
-    in
-    Project.copy ~selection:(Parameter_state.get_selection ()) work_prj;
-    Project.on work_prj work ()
+  init_file_names ();
+  (* Step 2 : Work in our own project, initialized by a copy of the main
+     one. *)
+  let work_prj =
+    File.create_project_from_visitor "aorai"
+      (fun prj -> new Visitor.frama_c_copy prj)
+  in
+  Project.copy ~selection:(Parameter_state.get_selection ()) work_prj;
+  Project.on work_prj work ()
 
 (* Plugin registration *)
 
@@ -426,9 +373,9 @@ let run, _ =
     "Aorai"
     (let module O = Aorai_option in
      [ O.Ltl_File.self; O.To_Buchi.self; O.Buchi.self;
-      O.Ya.self; O.Axiomatization.self; O.ConsiderAcceptance.self;
-      O.AutomataSimplification.self; O.AbstractInterpretation.self;
-      O.AddingOperationNameAndStatusInSpecification.self ])
+       O.Ya.self; O.Axiomatization.self; O.ConsiderAcceptance.self;
+       O.AutomataSimplification.self; O.AbstractInterpretation.self;
+       O.AddingOperationNameAndStatusInSpecification.self ])
     run
 
 let main () = if Aorai_option.is_on () then run ()
diff --git a/src/plugins/aorai/tests/ltl/goto.c b/src/plugins/aorai/tests/ltl/goto.c
index ccd31e28dbe..8cbd56c0842 100644
--- a/src/plugins/aorai/tests/ltl/goto.c
+++ b/src/plugins/aorai/tests/ltl/goto.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 int status=0;
diff --git a/src/plugins/aorai/tests/ltl/oracle/goto.res.oracle b/src/plugins/aorai/tests/ltl/oracle/goto.res.oracle
index e06220b829a..e8fddab9fac 100644
--- a/src/plugins/aorai/tests/ltl/oracle/goto.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/goto.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/goto.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [aorai] tests/ltl/goto.c:28: Warning: 
   Call to opc does not follow automaton's specification. This path is assumed to be dead
 [kernel] Parsing TMPDIR/aorai_goto_0.i (no preprocessing)
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_boucle.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_boucle.res.oracle
index 7504f14db91..04174d4018a 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_boucle.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_boucle.res.oracle
@@ -1,7 +1,6 @@
 [kernel] Parsing tests/ltl/test_boucle.c (with preprocessing)
 [kernel:typing:implicit-function-declaration] tests/ltl/test_boucle.c:16: Warning: 
   Calling undeclared function call_to_an_undefined_function. Old style K&R code?
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_boucle_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_boucle1.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_boucle1.res.oracle
index 810cc3f996f..aed1c6cbbf0 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_boucle1.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_boucle1.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/test_boucle1.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_boucle1_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_boucle2.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_boucle2.res.oracle
index bf069fb7cfc..9ab4d87d9cc 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_boucle2.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_boucle2.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/test_boucle2.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_boucle2_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_boucle3.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_boucle3.res.oracle
index bbf09f7914a..8b2d1dbb5f2 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_boucle3.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_boucle3.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/test_boucle3.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_boucle3_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_factorial.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_factorial.res.oracle
index d434d1ddf70..4a0a9031b26 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_factorial.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_factorial.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/test_factorial.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_factorial_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_recursion1.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_recursion1.res.oracle
index 28c0b50dbab..a377f6f727c 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_recursion1.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_recursion1.res.oracle
@@ -5,7 +5,6 @@
   parsing obsolete ACSL construct '\valid_range(addr,min,max)'. '\valid(addr+(min..max))' should be used instead.
 [kernel] tests/ltl/test_recursion1.c:54: Warning: 
   parsing obsolete ACSL construct '\valid_range(addr,min,max)'. '\valid(addr+(min..max))' should be used instead.
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_recursion1_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_recursion2.0.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_recursion2.0.res.oracle
index 0c38acfaa75..6dda5c9d85b 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_recursion2.0.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_recursion2.0.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/test_recursion2.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_recursion2_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_recursion2.1.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_recursion2.1.res.oracle
index 97d6decf1f8..aabed966d5a 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_recursion2.1.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_recursion2.1.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/test_recursion2.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_recursion2_1.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_switch2.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_switch2.res.oracle
index b3c85addc01..88e19cf5f59 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_switch2.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_switch2.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/test_switch2.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [aorai] tests/ltl/test_switch2.c:34: Warning: 
   Call to opc not conforming to automaton (post-cond). Assuming it is on a dead path
 [aorai] tests/ltl/test_switch2.c:23: Warning: 
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_switch3.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_switch3.res.oracle
index 4d74ec69aeb..3b0822025db 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_switch3.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_switch3.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/test_switch3.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_switch3_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_switch3_et_recursion.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_switch3_et_recursion.res.oracle
index 96b9dc90c1e..94652a4ad73 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_switch3_et_recursion.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_switch3_et_recursion.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/test_switch3_et_recursion.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [aorai] tests/ltl/test_switch3_et_recursion.c:26: Warning: 
   Call to countOne does not follow automaton's specification. This path is assumed to be dead
 [kernel] Parsing TMPDIR/aorai_test_switch3_et_recursion_0.i (no preprocessing)
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_switch3_if.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_switch3_if.res.oracle
index 23495bc09b5..74f48874eb3 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_switch3_if.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_switch3_if.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/test_switch3_if.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_switch3_if_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_switch3_return.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_switch3_return.res.oracle
index 1c04d032f84..e4f973d66d5 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_switch3_return.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_switch3_return.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/test_switch3_return.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_switch3_return_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ltl/oracle_prove/goto.res.oracle b/src/plugins/aorai/tests/ltl/oracle_prove/goto.res.oracle
index a0b1d8ed006..8e07b35953f 100644
--- a/src/plugins/aorai/tests/ltl/oracle_prove/goto.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle_prove/goto.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/goto.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [aorai] tests/ltl/goto.c:28: Warning: 
   Call to opc does not follow automaton's specification. This path is assumed to be dead
 [kernel] Parsing TMPDIR/aorai_goto_0.i (no preprocessing)
diff --git a/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle.res.oracle b/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle.res.oracle
index 2d27926df0c..e3d5ec00773 100644
--- a/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle.res.oracle
@@ -1,7 +1,6 @@
 [kernel] Parsing tests/ltl/test_boucle.c (with preprocessing)
 [kernel:typing:implicit-function-declaration] tests/ltl/test_boucle.c:16: Warning: 
   Calling undeclared function call_to_an_undefined_function. Old style K&R code?
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_boucle_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
 [kernel:annot:missing-spec] TMPDIR/aorai_test_boucle_0.i:86: Warning: 
diff --git a/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle1.res.oracle b/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle1.res.oracle
index 1569a5b398d..c7334dc7d0e 100644
--- a/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle1.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle1.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/test_boucle1.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_boucle1_0.i (no preprocessing)
 [wp] TMPDIR/aorai_test_boucle1_0.i:3: Warning: 
   Global invariant not handled yet ('inv_cpt' ignored)
diff --git a/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle2.res.oracle b/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle2.res.oracle
index 6aff87fc8f0..1da39e22bb3 100644
--- a/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle2.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle2.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/test_boucle2.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_boucle2_0.i (no preprocessing)
 [wp] TMPDIR/aorai_test_boucle2_0.i:4: Warning: 
   Global invariant not handled yet ('inv' ignored)
diff --git a/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle3.res.oracle b/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle3.res.oracle
index d42c00524da..8f6717a1e31 100644
--- a/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle3.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle3.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/test_boucle3.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_boucle3_0.i (no preprocessing)
 [wp] TMPDIR/aorai_test_boucle3_0.i:4: Warning: 
   Global invariant not handled yet ('inv' ignored)
diff --git a/src/plugins/aorai/tests/ltl/oracle_prove/test_factorial.res.oracle b/src/plugins/aorai/tests/ltl/oracle_prove/test_factorial.res.oracle
index 6e1e98b9647..0a52966e046 100644
--- a/src/plugins/aorai/tests/ltl/oracle_prove/test_factorial.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle_prove/test_factorial.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ltl/test_factorial.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_factorial_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ltl/oracle_prove/test_recursion1.res.oracle b/src/plugins/aorai/tests/ltl/oracle_prove/test_recursion1.res.oracle
index b41e5fc1a01..b5e9aba20ed 100644
--- a/src/plugins/aorai/tests/ltl/oracle_prove/test_recursion1.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle_prove/test_recursion1.res.oracle
@@ -5,7 +5,6 @@
   parsing obsolete ACSL construct '\valid_range(addr,min,max)'. '\valid(addr+(min..max))' should be used instead.
 [kernel] tests/ltl/test_recursion1.c:54: Warning: 
   parsing obsolete ACSL construct '\valid_range(addr,min,max)'. '\valid(addr+(min..max))' should be used instead.
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_recursion1_0.i (no preprocessing)
 [wp] Warning: No definition for 'string_len' interpreted as reads nothing
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ltl/oracle_prove/test_recursion2.0.res.oracle b/src/plugins/aorai/tests/ltl/oracle_prove/test_recursion2.0.res.oracle
index ccdb613ba7d..9891c035100 100644
--- a/src/plugins/aorai/tests/ltl/oracle_prove/test_recursion2.0.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle_prove/test_recursion2.0.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/test_recursion2.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_recursion2_0.i (no preprocessing)
 [wp] Warning: No definition for 'string_len' interpreted as reads nothing
 [wp] Warning: No definition for 'sum_tab' interpreted as reads nothing
diff --git a/src/plugins/aorai/tests/ltl/oracle_prove/test_recursion2.1.res.oracle b/src/plugins/aorai/tests/ltl/oracle_prove/test_recursion2.1.res.oracle
index 8e71caf0deb..904f906300c 100644
--- a/src/plugins/aorai/tests/ltl/oracle_prove/test_recursion2.1.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle_prove/test_recursion2.1.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/test_recursion2.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_recursion2_1.i (no preprocessing)
 [wp] Warning: No definition for 'string_len' interpreted as reads nothing
 [wp] Warning: No definition for 'sum_tab' interpreted as reads nothing
diff --git a/src/plugins/aorai/tests/ltl/oracle_prove/test_switch2.res.oracle b/src/plugins/aorai/tests/ltl/oracle_prove/test_switch2.res.oracle
index 9964a15c39c..5e6c56778cf 100644
--- a/src/plugins/aorai/tests/ltl/oracle_prove/test_switch2.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle_prove/test_switch2.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/test_switch2.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [aorai] tests/ltl/test_switch2.c:34: Warning: 
   Call to opc not conforming to automaton (post-cond). Assuming it is on a dead path
 [aorai] tests/ltl/test_switch2.c:23: Warning: 
diff --git a/src/plugins/aorai/tests/ltl/oracle_prove/test_switch3.res.oracle b/src/plugins/aorai/tests/ltl/oracle_prove/test_switch3.res.oracle
index bfe46c01065..1370ce59a99 100644
--- a/src/plugins/aorai/tests/ltl/oracle_prove/test_switch3.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle_prove/test_switch3.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ltl/test_switch3.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_switch3_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ltl/oracle_prove/test_switch3_et_recursion.res.oracle b/src/plugins/aorai/tests/ltl/oracle_prove/test_switch3_et_recursion.res.oracle
index f13072d1a65..0c3127bafe5 100644
--- a/src/plugins/aorai/tests/ltl/oracle_prove/test_switch3_et_recursion.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle_prove/test_switch3_et_recursion.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ltl/test_switch3_et_recursion.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [aorai] tests/ltl/test_switch3_et_recursion.c:26: Warning: 
   Call to countOne does not follow automaton's specification. This path is assumed to be dead
 [kernel] Parsing TMPDIR/aorai_test_switch3_et_recursion_0.i (no preprocessing)
diff --git a/src/plugins/aorai/tests/ltl/oracle_prove/test_switch3_if.res.oracle b/src/plugins/aorai/tests/ltl/oracle_prove/test_switch3_if.res.oracle
index 68de03d1b30..bf53ddf15ba 100644
--- a/src/plugins/aorai/tests/ltl/oracle_prove/test_switch3_if.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle_prove/test_switch3_if.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ltl/test_switch3_if.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_switch3_if_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ltl/oracle_prove/test_switch3_return.res.oracle b/src/plugins/aorai/tests/ltl/oracle_prove/test_switch3_return.res.oracle
index 2bfc5074656..eb8fb8e27b5 100644
--- a/src/plugins/aorai/tests/ltl/oracle_prove/test_switch3_return.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle_prove/test_switch3_return.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ltl/test_switch3_return.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_switch3_return_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ltl/test_boucle.c b/src/plugins/aorai/tests/ltl/test_boucle.c
index 72cf5e78ac9..db2f6bc0c3f 100644
--- a/src/plugins/aorai/tests/ltl/test_boucle.c
+++ b/src/plugins/aorai/tests/ltl/test_boucle.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 /*@ requires \true;
diff --git a/src/plugins/aorai/tests/ltl/test_boucle1.c b/src/plugins/aorai/tests/ltl/test_boucle1.c
index 0245ffedcfd..7b091c51b76 100644
--- a/src/plugins/aorai/tests/ltl/test_boucle1.c
+++ b/src/plugins/aorai/tests/ltl/test_boucle1.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 int cpt=3;
diff --git a/src/plugins/aorai/tests/ltl/test_boucle2.c b/src/plugins/aorai/tests/ltl/test_boucle2.c
index 9d4cf3a9aff..8aa77e6f8b0 100644
--- a/src/plugins/aorai/tests/ltl/test_boucle2.c
+++ b/src/plugins/aorai/tests/ltl/test_boucle2.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 int status=0;
diff --git a/src/plugins/aorai/tests/ltl/test_boucle3.c b/src/plugins/aorai/tests/ltl/test_boucle3.c
index 6c93a420264..6da17de07b2 100644
--- a/src/plugins/aorai/tests/ltl/test_boucle3.c
+++ b/src/plugins/aorai/tests/ltl/test_boucle3.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 
diff --git a/src/plugins/aorai/tests/ltl/test_factorial.c b/src/plugins/aorai/tests/ltl/test_factorial.c
index 6a429a55e31..0ad64760026 100644
--- a/src/plugins/aorai/tests/ltl/test_factorial.c
+++ b/src/plugins/aorai/tests/ltl/test_factorial.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 
diff --git a/src/plugins/aorai/tests/ltl/test_recursion1.c b/src/plugins/aorai/tests/ltl/test_recursion1.c
index ee0968101b1..14be685a47b 100644
--- a/src/plugins/aorai/tests/ltl/test_recursion1.c
+++ b/src/plugins/aorai/tests/ltl/test_recursion1.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 
diff --git a/src/plugins/aorai/tests/ltl/test_recursion2.c b/src/plugins/aorai/tests/ltl/test_recursion2.c
index a13c39b9f88..7d93ab3fa3a 100644
--- a/src/plugins/aorai/tests/ltl/test_recursion2.c
+++ b/src/plugins/aorai/tests/ltl/test_recursion2.c
@@ -1,6 +1,6 @@
 /* run.config*
-   OPT: -aorai-buchi @PTEST_DIR@/@PTEST_NAME@.promela -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
-   OPT: -aorai-buchi @PTEST_DIR@/test_recursion3.promela -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-buchi @PTEST_DIR@/@PTEST_NAME@.promela -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-buchi @PTEST_DIR@/test_recursion3.promela -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 /* Calcul de la longueur cumulee des chaines de caracteres prises en parametre */
diff --git a/src/plugins/aorai/tests/ltl/test_switch2.c b/src/plugins/aorai/tests/ltl/test_switch2.c
index f411cec23dc..2bb7284fbbd 100644
--- a/src/plugins/aorai/tests/ltl/test_switch2.c
+++ b/src/plugins/aorai/tests/ltl/test_switch2.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 int status=0;
diff --git a/src/plugins/aorai/tests/ltl/test_switch3.c b/src/plugins/aorai/tests/ltl/test_switch3.c
index 42e5fc6ba9a..5d9e8582f49 100644
--- a/src/plugins/aorai/tests/ltl/test_switch3.c
+++ b/src/plugins/aorai/tests/ltl/test_switch3.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 /* Calcul de la longueur cumulee des chaines de caracteres prises en parametre */
diff --git a/src/plugins/aorai/tests/ltl/test_switch3_et_recursion.c b/src/plugins/aorai/tests/ltl/test_switch3_et_recursion.c
index 00caa9826bb..352725ef984 100644
--- a/src/plugins/aorai/tests/ltl/test_switch3_et_recursion.c
+++ b/src/plugins/aorai/tests/ltl/test_switch3_et_recursion.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-ltl @PTEST_DIR@/@PTEST_NAME@.ltl -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 /* Calcul de la longueur cumulee des chaines de caracteres prises en parametre */
diff --git a/src/plugins/aorai/tests/ltl/test_switch3_if.c b/src/plugins/aorai/tests/ltl/test_switch3_if.c
index f6375d4d859..93dd122636e 100644
--- a/src/plugins/aorai/tests/ltl/test_switch3_if.c
+++ b/src/plugins/aorai/tests/ltl/test_switch3_if.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-ltl @PTEST_DIR@/test_switch3.ltl -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-ltl @PTEST_DIR@/test_switch3.ltl -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 /* Calcul de la longueur cumulee des chaines de caracteres prises en parametre */
diff --git a/src/plugins/aorai/tests/ltl/test_switch3_return.c b/src/plugins/aorai/tests/ltl/test_switch3_return.c
index a105540b982..8df70979968 100644
--- a/src/plugins/aorai/tests/ltl/test_switch3_return.c
+++ b/src/plugins/aorai/tests/ltl/test_switch3_return.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-ltl @PTEST_DIR@/test_switch3.ltl -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-ltl @PTEST_DIR@/test_switch3.ltl -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 /* Calcul de la longueur cumulee des chaines de caracteres prises en parametre */
diff --git a/src/plugins/aorai/tests/ya/assigns.c b/src/plugins/aorai/tests/ya/assigns.c
index ce6fe159678..c760aa1537e 100644
--- a/src/plugins/aorai/tests/ya/assigns.c
+++ b/src/plugins/aorai/tests/ya/assigns.c
@@ -1,8 +1,8 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya  -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
-   OPT: -aorai-automata @PTEST_DIR@/assigns_det.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/assigns_det.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
    MODULE: @PTEST_DIR@/name_projects.cmxs
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -then -print
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -then -print
 */
 
 int X;
diff --git a/src/plugins/aorai/tests/ya/bts1289.i b/src/plugins/aorai/tests/ya/bts1289.i
index 2c6c8f9aa59..93cf50233c6 100644
--- a/src/plugins/aorai/tests/ya/bts1289.i
+++ b/src/plugins/aorai/tests/ya/bts1289.i
@@ -1,6 +1,6 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test 1 -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@-2.ya -load-module tests/Aorai_test.cmxs -aorai-test 1 -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@-2.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
  */
 
 void a(void) {}
diff --git a/src/plugins/aorai/tests/ya/declared_function.i b/src/plugins/aorai/tests/ya/declared_function.i
index 53bcdfd71ad..12f50538eb3 100644
--- a/src/plugins/aorai/tests/ya/declared_function.i
+++ b/src/plugins/aorai/tests/ya/declared_function.i
@@ -1,5 +1,5 @@
 /* run.config*
-OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 int f(void);
diff --git a/src/plugins/aorai/tests/ya/deterministic.i b/src/plugins/aorai/tests/ya/deterministic.i
index b92271127e2..d892d891378 100644
--- a/src/plugins/aorai/tests/ya/deterministic.i
+++ b/src/plugins/aorai/tests/ya/deterministic.i
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 int X;
diff --git a/src/plugins/aorai/tests/ya/formals.i b/src/plugins/aorai/tests/ya/formals.i
index 4a32df49b67..a463e4f7d37 100644
--- a/src/plugins/aorai/tests/ya/formals.i
+++ b/src/plugins/aorai/tests/ya/formals.i
@@ -1,5 +1,5 @@
 /* run.config*
-OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 int f(int x) { return x; }
diff --git a/src/plugins/aorai/tests/ya/generate_assigns_bts1290.i b/src/plugins/aorai/tests/ya/generate_assigns_bts1290.i
index 2e92796ec06..d9333d415f6 100644
--- a/src/plugins/aorai/tests/ya/generate_assigns_bts1290.i
+++ b/src/plugins/aorai/tests/ya/generate_assigns_bts1290.i
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test 1 -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
  */
 void main(void)
 {
diff --git a/src/plugins/aorai/tests/ya/hoare_seq.i b/src/plugins/aorai/tests/ya/hoare_seq.i
index cc7e1484774..b60ae6082da 100644
--- a/src/plugins/aorai/tests/ya/hoare_seq.i
+++ b/src/plugins/aorai/tests/ya/hoare_seq.i
@@ -1,5 +1,5 @@
 /* run.config*
-OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-acceptance -load-module tests/Aorai_test -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 void f(void) { }
diff --git a/src/plugins/aorai/tests/ya/incorrect.i b/src/plugins/aorai/tests/ya/incorrect.i
index fae082d3120..01f70280860 100644
--- a/src/plugins/aorai/tests/ya/incorrect.i
+++ b/src/plugins/aorai/tests/ya/incorrect.i
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 int f(void);
diff --git a/src/plugins/aorai/tests/ya/loop_bts1050.i b/src/plugins/aorai/tests/ya/loop_bts1050.i
index fdec741b7b3..86fe369e9f7 100644
--- a/src/plugins/aorai/tests/ya/loop_bts1050.i
+++ b/src/plugins/aorai/tests/ya/loop_bts1050.i
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-acceptance -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-acceptance -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 void f(){};
 
diff --git a/src/plugins/aorai/tests/ya/metavariables-incompatible.i b/src/plugins/aorai/tests/ya/metavariables-incompatible.i
index 26744167705..a32cefe9e95 100644
--- a/src/plugins/aorai/tests/ya/metavariables-incompatible.i
+++ b/src/plugins/aorai/tests/ya/metavariables-incompatible.i
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 void main(void) {}
diff --git a/src/plugins/aorai/tests/ya/metavariables-right.i b/src/plugins/aorai/tests/ya/metavariables-right.i
index cff3994c101..9d88e67323f 100644
--- a/src/plugins/aorai/tests/ya/metavariables-right.i
+++ b/src/plugins/aorai/tests/ya/metavariables-right.i
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 void f(int x) {}
diff --git a/src/plugins/aorai/tests/ya/metavariables-wrong.i b/src/plugins/aorai/tests/ya/metavariables-wrong.i
index 09ea4b6c4bc..a0542d20021 100644
--- a/src/plugins/aorai/tests/ya/metavariables-wrong.i
+++ b/src/plugins/aorai/tests/ya/metavariables-wrong.i
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 void f(int x) {}
diff --git a/src/plugins/aorai/tests/ya/monostate.i b/src/plugins/aorai/tests/ya/monostate.i
index 9dade69c092..0d72d9a431c 100644
--- a/src/plugins/aorai/tests/ya/monostate.i
+++ b/src/plugins/aorai/tests/ya/monostate.i
@@ -1,5 +1,5 @@
 /* run.config
-OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 void f(void) {}
diff --git a/src/plugins/aorai/tests/ya/not_prm.i b/src/plugins/aorai/tests/ya/not_prm.i
index d96e123d6e6..8b5c4281608 100644
--- a/src/plugins/aorai/tests/ya/not_prm.i
+++ b/src/plugins/aorai/tests/ya/not_prm.i
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test -main f -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-acceptance -load-module tests/Aorai_test -main f -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 int f(int x) {
diff --git a/src/plugins/aorai/tests/ya/oracle/assigns.0.res.oracle b/src/plugins/aorai/tests/ya/oracle/assigns.0.res.oracle
index 8c31757f7be..a0d1e8e9805 100644
--- a/src/plugins/aorai/tests/ya/oracle/assigns.0.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/assigns.0.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/assigns.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_assigns_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ya/oracle/assigns.1.res.oracle b/src/plugins/aorai/tests/ya/oracle/assigns.1.res.oracle
index cdb19dd2762..067dda49b4d 100644
--- a/src/plugins/aorai/tests/ya/oracle/assigns.1.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/assigns.1.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/assigns.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_assigns_1.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_States {
diff --git a/src/plugins/aorai/tests/ya/oracle/assigns.2.res.oracle b/src/plugins/aorai/tests/ya/oracle/assigns.2.res.oracle
index f5a60a3aac1..5a761e8ca86 100644
--- a/src/plugins/aorai/tests/ya/oracle/assigns.2.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/assigns.2.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/assigns.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 /* Generated by Frama-C */
 int X;
 void f(void)
diff --git a/src/plugins/aorai/tests/ya/oracle/bts1289.0.res.oracle b/src/plugins/aorai/tests/ya/oracle/bts1289.0.res.oracle
index d694fc99a03..15f90358d6d 100644
--- a/src/plugins/aorai/tests/ya/oracle/bts1289.0.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/bts1289.0.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/bts1289.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [aorai] Warning: Call to main does not follow automaton's specification. This path is assumed to be dead
 [kernel] Parsing TMPDIR/aorai_bts1289_0.i (no preprocessing)
 /* Generated by Frama-C */
diff --git a/src/plugins/aorai/tests/ya/oracle/bts1289.1.res.oracle b/src/plugins/aorai/tests/ya/oracle/bts1289.1.res.oracle
index 3c96ba01588..6fb3035c21a 100644
--- a/src/plugins/aorai/tests/ya/oracle/bts1289.1.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/bts1289.1.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/bts1289.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_bts1289_1.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ya/oracle/declared_function.res.oracle b/src/plugins/aorai/tests/ya/oracle/declared_function.res.oracle
index 162c17c6430..038d8c1a870 100644
--- a/src/plugins/aorai/tests/ya/oracle/declared_function.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/declared_function.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/declared_function.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_declared_function_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_States {
diff --git a/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle b/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle
index 7d3f5aa8877..72d48028936 100644
--- a/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/deterministic.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_deterministic_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_States {
diff --git a/src/plugins/aorai/tests/ya/oracle/formals.res.oracle b/src/plugins/aorai/tests/ya/oracle/formals.res.oracle
index cbe2ba005be..e93f5561f08 100644
--- a/src/plugins/aorai/tests/ya/oracle/formals.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/formals.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/formals.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_formals_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_States {
diff --git a/src/plugins/aorai/tests/ya/oracle/generate_assigns_bts1290.res.oracle b/src/plugins/aorai/tests/ya/oracle/generate_assigns_bts1290.res.oracle
index 818442d7618..6dba7900323 100644
--- a/src/plugins/aorai/tests/ya/oracle/generate_assigns_bts1290.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/generate_assigns_bts1290.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/generate_assigns_bts1290.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_generate_assigns_bts1290_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ya/oracle/hoare_seq.res.oracle b/src/plugins/aorai/tests/ya/oracle/hoare_seq.res.oracle
index 6095d7964e2..29ffb1ff422 100644
--- a/src/plugins/aorai/tests/ya/oracle/hoare_seq.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/hoare_seq.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/hoare_seq.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_hoare_seq_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ya/oracle/incorrect.res.oracle b/src/plugins/aorai/tests/ya/oracle/incorrect.res.oracle
index 21a5cd9feb5..22596de4c18 100644
--- a/src/plugins/aorai/tests/ya/oracle/incorrect.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/incorrect.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/incorrect.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [aorai] Warning: Call to main does not follow automaton's specification. This path is assumed to be dead
 [kernel] Parsing TMPDIR/aorai_incorrect_0.i (no preprocessing)
 /* Generated by Frama-C */
diff --git a/src/plugins/aorai/tests/ya/oracle/loop_bts1050.res.oracle b/src/plugins/aorai/tests/ya/oracle/loop_bts1050.res.oracle
index 14b24d45cdd..6569b67175a 100644
--- a/src/plugins/aorai/tests/ya/oracle/loop_bts1050.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/loop_bts1050.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/loop_bts1050.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_loop_bts1050_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ya/oracle/metavariables-incompatible.res.oracle b/src/plugins/aorai/tests/ya/oracle/metavariables-incompatible.res.oracle
index 1a257aa76d2..a682bee8a27 100644
--- a/src/plugins/aorai/tests/ya/oracle/metavariables-incompatible.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/metavariables-incompatible.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/metavariables-incompatible.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [aorai] User Error: The use of metavariables is incompatible with non-deterministic automata, such as automata using extended transitions.
 [kernel] Plug-in aorai aborted: invalid user input.
diff --git a/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle b/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle
index e753f6649c4..ee94f69b384 100644
--- a/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/metavariables-right.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_metavariables-right_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_States {
diff --git a/src/plugins/aorai/tests/ya/oracle/metavariables-wrong.res.oracle b/src/plugins/aorai/tests/ya/oracle/metavariables-wrong.res.oracle
index 44c1487fcf7..7aca51a51b2 100644
--- a/src/plugins/aorai/tests/ya/oracle/metavariables-wrong.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/metavariables-wrong.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/metavariables-wrong.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [aorai] User Error: The metavariables aorai_x may not be initialized before the transition from e to f_0:
   { (Call(h)) and ((aorai_x) > (0)) }
 [kernel] Plug-in aorai aborted: invalid user input.
diff --git a/src/plugins/aorai/tests/ya/oracle/monostate.res.oracle b/src/plugins/aorai/tests/ya/oracle/monostate.res.oracle
index 4b5d328fbbe..984890928fa 100644
--- a/src/plugins/aorai/tests/ya/oracle/monostate.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/monostate.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/monostate.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [aorai] Warning: Call to main does not follow automaton's specification. This path is assumed to be dead
 [aorai] tests/ya/monostate.i:8: Warning: 
   Call to main not conforming to automaton (pre-cond). Assuming it is on a dead path
diff --git a/src/plugins/aorai/tests/ya/oracle/not_prm.res.oracle b/src/plugins/aorai/tests/ya/oracle/not_prm.res.oracle
index a1315a44ec9..79d8cc18058 100644
--- a/src/plugins/aorai/tests/ya/oracle/not_prm.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/not_prm.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/not_prm.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_not_prm_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ya/oracle/other.res.oracle b/src/plugins/aorai/tests/ya/oracle/other.res.oracle
index ea8efc3984f..d7146144fdf 100644
--- a/src/plugins/aorai/tests/ya/oracle/other.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/other.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/other.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_other_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ya/oracle/seq.res.oracle b/src/plugins/aorai/tests/ya/oracle/seq.res.oracle
index 8a68e3c2894..92b8136c6f9 100644
--- a/src/plugins/aorai/tests/ya/oracle/seq.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/seq.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/seq.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_seq_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ya/oracle/seq_loop.res.oracle b/src/plugins/aorai/tests/ya/oracle/seq_loop.res.oracle
index 241908d1ee5..ea66b1d2bf7 100644
--- a/src/plugins/aorai/tests/ya/oracle/seq_loop.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/seq_loop.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/seq_loop.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_seq_loop_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ya/oracle/serial.res.oracle b/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
index 5f1197b44ca..6cc4d3484ec 100644
--- a/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/serial.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel:annot:missing-spec] tests/ya/serial.c:43: Warning: 
   Neither code nor specification for function Frama_C_show_aorai_state, generating default assigns from the prototype
 [eva] Analyzing a complete application starting at main
diff --git a/src/plugins/aorai/tests/ya/oracle/single_call.res.oracle b/src/plugins/aorai/tests/ya/oracle/single_call.res.oracle
index ea9bdd5f8c4..6264eea6c56 100644
--- a/src/plugins/aorai/tests/ya/oracle/single_call.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/single_call.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/single_call.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_single_call_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ya/oracle/singleassignment-right.res.oracle b/src/plugins/aorai/tests/ya/oracle/singleassignment-right.res.oracle
index e76ec6fc3ca..311412524b5 100644
--- a/src/plugins/aorai/tests/ya/oracle/singleassignment-right.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/singleassignment-right.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/singleassignment-right.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_singleassignment-right_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_States {
diff --git a/src/plugins/aorai/tests/ya/oracle/singleassignment-wrong.res.oracle b/src/plugins/aorai/tests/ya/oracle/singleassignment-wrong.res.oracle
index a24943fca98..9eca9305b90 100644
--- a/src/plugins/aorai/tests/ya/oracle/singleassignment-wrong.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/singleassignment-wrong.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/singleassignment-wrong.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [aorai] User Error: The metavariable aorai_x is assigned several times during the transition from a to b:
   { Call(main) } aorai_x <- x
                  aorai_x <- aorai_x + 1
diff --git a/src/plugins/aorai/tests/ya/oracle/stack.res.oracle b/src/plugins/aorai/tests/ya/oracle/stack.res.oracle
index b20f875ba14..7bb7948a156 100644
--- a/src/plugins/aorai/tests/ya/oracle/stack.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/stack.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/stack.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_stack_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_States {
diff --git a/src/plugins/aorai/tests/ya/oracle/test_acces_params.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_acces_params.res.oracle
index 960ccd88bee..72d1dbd1b70 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_acces_params.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_acces_params.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/test_acces_params.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_acces_params_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ya/oracle/test_acces_params2.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_acces_params2.res.oracle
index 0527f8f7b59..f20db94ee5b 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_acces_params2.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_acces_params2.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/test_acces_params2.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_acces_params2_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ya/oracle/test_boucle_rechercheTableau.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_boucle_rechercheTableau.res.oracle
index 3e9c2f9103d..d9e7db7f803 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_boucle_rechercheTableau.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_boucle_rechercheTableau.res.oracle
@@ -3,7 +3,6 @@
   parsing obsolete ACSL construct '\valid_range(addr,min,max)'. '\valid(addr+(min..max))' should be used instead.
 [kernel] tests/ya/test_boucle_rechercheTableau.c:7: Warning: 
   parsing obsolete ACSL construct '\valid_range(addr,min,max)'. '\valid(addr+(min..max))' should be used instead.
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_boucle_rechercheTableau_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ya/oracle/test_factorial.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_factorial.res.oracle
index 70c686c2f89..ed5f20033ad 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_factorial.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_factorial.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/test_factorial.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_factorial_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ya/oracle/test_recursion4.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_recursion4.res.oracle
index 968521d3ad2..3f9a007d776 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_recursion4.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_recursion4.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/test_recursion4.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_recursion4_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ya/oracle/test_recursion5.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_recursion5.res.oracle
index 1a84302afcd..b3d197570e7 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_recursion5.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_recursion5.res.oracle
@@ -3,7 +3,6 @@
   parsing obsolete ACSL construct '\valid_range(addr,min,max)'. '\valid(addr+(min..max))' should be used instead.
 [kernel] tests/ya/test_recursion5.c:28: Warning: 
   parsing obsolete ACSL construct '\valid_range(addr,min,max)'. '\valid(addr+(min..max))' should be used instead.
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_recursion5_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
diff --git a/src/plugins/aorai/tests/ya/oracle/test_struct.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_struct.res.oracle
index e0b06bd1c0f..fa0bb669fc7 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_struct.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_struct.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/test_struct.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_struct_0.i (no preprocessing)
 /* Generated by Frama-C */
 struct People {
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/assigns.0.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/assigns.0.res.oracle
index 6e42468e3ad..982103df2da 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/assigns.0.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/assigns.0.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/assigns.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_assigns_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/assigns.1.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/assigns.1.res.oracle
index bfa57eb1f30..19922b414f8 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/assigns.1.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/assigns.1.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/assigns.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_assigns_1.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/assigns.2.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/assigns.2.res.oracle
index f5a60a3aac1..5a761e8ca86 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/assigns.2.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/assigns.2.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/assigns.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 /* Generated by Frama-C */
 int X;
 void f(void)
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/bts1289.0.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/bts1289.0.res.oracle
index 8a21ce6dc7c..9e49047ac77 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/bts1289.0.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/bts1289.0.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/bts1289.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [aorai] Warning: Call to main does not follow automaton's specification. This path is assumed to be dead
 [kernel] Parsing TMPDIR/aorai_bts1289_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/bts1289.1.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/bts1289.1.res.oracle
index 7455ed9f29a..09d835e8740 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/bts1289.1.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/bts1289.1.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/bts1289.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_bts1289_1.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/declared_function.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/declared_function.res.oracle
index e961cfa00b2..dda7d91ed57 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/declared_function.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/declared_function.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/declared_function.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_declared_function_0.i (no preprocessing)
 [kernel:annot:missing-spec] TMPDIR/aorai_declared_function_0.i:48: Warning: 
   Neither code nor specification for function f, generating default assigns from the prototype
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/deterministic.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/deterministic.res.oracle
index da8094d3368..8b53a748afa 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/deterministic.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/deterministic.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/deterministic.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_deterministic_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/formals.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/formals.res.oracle
index 203e6f02f62..fbd3997a5e7 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/formals.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/formals.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/formals.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_formals_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/generate_assigns_bts1290.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/generate_assigns_bts1290.res.oracle
index 8c689f78567..55b4a9433c8 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/generate_assigns_bts1290.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/generate_assigns_bts1290.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/generate_assigns_bts1290.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_generate_assigns_bts1290_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/hoare_seq.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/hoare_seq.res.oracle
index 25f11ffa4fd..5f917f2df5c 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/hoare_seq.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/hoare_seq.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/hoare_seq.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_hoare_seq_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/incorrect.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/incorrect.res.oracle
index 16d8f0409c5..b8e7296acf0 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/incorrect.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/incorrect.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/incorrect.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [aorai] Warning: Call to main does not follow automaton's specification. This path is assumed to be dead
 [kernel] Parsing TMPDIR/aorai_incorrect_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/loop_bts1050.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/loop_bts1050.res.oracle
index 8830b5bd606..49b40bd6a11 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/loop_bts1050.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/loop_bts1050.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/loop_bts1050.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_loop_bts1050_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/metavariables-incompatible.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/metavariables-incompatible.res.oracle
index 57c2d7eed1c..a682bee8a27 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/metavariables-incompatible.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/metavariables-incompatible.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/metavariables-incompatible.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
-[aorai] User Error: The use of metavariables is incompatible with non-deterministic automata, such as automa using extended transitions.
+[aorai] User Error: The use of metavariables is incompatible with non-deterministic automata, such as automata using extended transitions.
 [kernel] Plug-in aorai aborted: invalid user input.
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/metavariables-right.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/metavariables-right.res.oracle
index 6803c149a7b..54e1691625c 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/metavariables-right.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/metavariables-right.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/metavariables-right.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_metavariables-right_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/metavariables-wrong.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/metavariables-wrong.res.oracle
index 44c1487fcf7..7aca51a51b2 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/metavariables-wrong.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/metavariables-wrong.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/metavariables-wrong.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [aorai] User Error: The metavariables aorai_x may not be initialized before the transition from e to f_0:
   { (Call(h)) and ((aorai_x) > (0)) }
 [kernel] Plug-in aorai aborted: invalid user input.
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/not_prm.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/not_prm.res.oracle
index fd02e38e18a..9921e92ae87 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/not_prm.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/not_prm.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/not_prm.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_not_prm_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/other.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/other.res.oracle
index 470d9d475b7..67ad5163c35 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/other.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/other.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/other.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_other_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/seq.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/seq.res.oracle
index 750146c1ae6..7c0f0ef38ef 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/seq.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/seq.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/seq.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_seq_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/seq_loop.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/seq_loop.res.oracle
index 37849cdec35..aaa9705b556 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/seq_loop.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/seq_loop.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/seq_loop.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_seq_loop_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle
index 2572e58edad..cc4a6cd6b2b 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle
@@ -1,8 +1,5 @@
 [kernel] Parsing tests/ya/serial.c (with preprocessing)
-[kernel:typing:implicit-function-declaration] tests/ya/serial.c:81: Warning: 
-  Calling undeclared function Frama_C_show_aorai_state. Old style K&R code?
-[aorai] Welcome to the Aorai plugin
-[kernel:annot:missing-spec] tests/ya/serial.c:45: Warning: 
+[kernel:annot:missing-spec] tests/ya/serial.c:43: Warning: 
   Neither code nor specification for function Frama_C_show_aorai_state, generating default assigns from the prototype
 [eva] Analyzing a complete application starting at main
 [eva] Computing initial state
@@ -21,28 +18,36 @@
   aorai_StatesHistory_1 ∈ {19}
   aorai_StatesHistory_2 ∈ {19}
 [eva] using specification for function Frama_C_interval
-[eva] tests/ya/serial.c:47: starting to merge loop iterations
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 100 states
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 300 states
-[aorai] tests/ya/serial.c:81: Wait1 <- Wait1 <- Complete
-[aorai] tests/ya/serial.c:81: Error <- Error <- Complete
-[aorai] tests/ya/serial.c:81: Complete <- Complete <- Complete
-[aorai] tests/ya/serial.c:81: Wait1 <- Wait1 <- Complete
-[aorai] tests/ya/serial.c:81: Error <- Error <- Complete
-[aorai] tests/ya/serial.c:81: Complete <- Complete <- Complete
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 500 states
-[eva:alarm] tests/ya/serial.c:54: Warning: 
+[eva] tests/ya/serial.c:45: starting to merge loop iterations
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 100 states
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 300 states
+[aorai] tests/ya/serial.c:79: Wait1 <- Wait1 <- Complete
+[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [8192..16383]
+[aorai] tests/ya/serial.c:79: Error <- Error <- Complete
+[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [8192..16383]
+[aorai] tests/ya/serial.c:79: Complete <- Complete <- Complete
+[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [8192..16383]
+[aorai] tests/ya/serial.c:79: Wait1 <- Wait1 <- Complete
+[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [0..8191]
+[aorai] tests/ya/serial.c:79: Error <- Error <- Complete
+[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [0..8191]
+[aorai] tests/ya/serial.c:79: Complete <- Complete <- Complete
+[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [0..8191]
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 500 states
+[eva:alarm] tests/ya/serial.c:52: Warning: 
   accessing uninitialized left-value. assert \initialized(&status);
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 700 states
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 900 states
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 1200 states
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 1500 states
-[aorai] tests/ya/serial.c:81: Error <- Error <- Error
-[aorai] tests/ya/serial.c:81: Error <- Error <- Error
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 1700 states
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 1900 states
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 2000 states
-[eva] tests/ya/serial.c:52: Trace partitioning superposing up to 2100 states
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 700 states
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 900 states
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1200 states
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1500 states
+[aorai] tests/ya/serial.c:79: Error <- Error <- Error
+[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [8192..16383]
+[aorai] tests/ya/serial.c:79: Error <- Error <- Error
+[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [0..8191]
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1700 states
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1900 states
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 2000 states
+[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 2100 states
 [eva] done for function main
 [eva] ====== VALUES COMPUTED ======
 [eva:final-states] Values at end of function input_data_post_func:
@@ -299,7 +304,7 @@
   100% of the logical properties reached have been proven.
   ----------------------------------------------------------------------------
 [kernel] Parsing TMPDIR/aorai_serial_0.i (no preprocessing)
-[kernel:typing:implicit-function-declaration] TMPDIR/aorai_serial_0.i:176: Warning: 
+[kernel:typing:implicit-function-declaration] TMPDIR/aorai_serial_0.i:174: Warning: 
   Calling undeclared function Frama_C_interval. Old style K&R code?
 [wp] Warning: Missing RTE guards
 [wp] Warning: No goal generated
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/single_call.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/single_call.res.oracle
index dbd60dc8fb5..ecbefc2abff 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/single_call.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/single_call.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/single_call.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_single_call_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/singleassignment-right.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/singleassignment-right.res.oracle
index 79c1ae490e6..46c7832cef0 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/singleassignment-right.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/singleassignment-right.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/singleassignment-right.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_singleassignment-right_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/singleassignment-wrong.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/singleassignment-wrong.res.oracle
index a24943fca98..9eca9305b90 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/singleassignment-wrong.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/singleassignment-wrong.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/singleassignment-wrong.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [aorai] User Error: The metavariable aorai_x is assigned several times during the transition from a to b:
   { Call(main) } aorai_x <- x
                  aorai_x <- aorai_x + 1
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/stack.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/stack.res.oracle
index ad8ddcef2ca..e56f27fc2b9 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/stack.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/stack.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/stack.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_stack_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/test_acces_params.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/test_acces_params.res.oracle
index a20fbf3e28d..0bf1b088bf5 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/test_acces_params.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/test_acces_params.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/test_acces_params.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_acces_params_0.i (no preprocessing)
 [wp] TMPDIR/aorai_test_acces_params_0.i:4: Warning: 
   Global invariant not handled yet ('inv' ignored)
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/test_acces_params2.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/test_acces_params2.res.oracle
index c45f6f03706..82a83a9128b 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/test_acces_params2.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/test_acces_params2.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/test_acces_params2.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_acces_params2_0.i (no preprocessing)
 [wp] TMPDIR/aorai_test_acces_params2_0.i:3: Warning: 
   Global invariant not handled yet ('inv' ignored)
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/test_boucle_rechercheTableau.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/test_boucle_rechercheTableau.res.oracle
index d3038211509..8cab8fa7b81 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/test_boucle_rechercheTableau.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/test_boucle_rechercheTableau.res.oracle
@@ -3,6 +3,5 @@
   parsing obsolete ACSL construct '\valid_range(addr,min,max)'. '\valid(addr+(min..max))' should be used instead.
 [kernel] tests/ya/test_boucle_rechercheTableau.c:7: Warning: 
   parsing obsolete ACSL construct '\valid_range(addr,min,max)'. '\valid(addr+(min..max))' should be used instead.
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_boucle_rechercheTableau_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/test_factorial.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/test_factorial.res.oracle
index 533a909e627..0a55ec0fe94 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/test_factorial.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/test_factorial.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/test_factorial.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_factorial_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/test_recursion4.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/test_recursion4.res.oracle
index 5ca3ac392fd..c87a3ebe4e9 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/test_recursion4.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/test_recursion4.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/test_recursion4.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_recursion4_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/test_recursion5.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/test_recursion5.res.oracle
index 6d11db5117d..2cc98760865 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/test_recursion5.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/test_recursion5.res.oracle
@@ -3,6 +3,5 @@
   parsing obsolete ACSL construct '\valid_range(addr,min,max)'. '\valid(addr+(min..max))' should be used instead.
 [kernel] tests/ya/test_recursion5.c:28: Warning: 
   parsing obsolete ACSL construct '\valid_range(addr,min,max)'. '\valid(addr+(min..max))' should be used instead.
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_recursion5_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/test_struct.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/test_struct.res.oracle
index fe4190800bd..4c72fb29ede 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/test_struct.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/test_struct.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/test_struct.c (with preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_test_struct_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/other.c b/src/plugins/aorai/tests/ya/other.c
index 4e13872dbf2..c4977e2a37d 100644
--- a/src/plugins/aorai/tests/ya/other.c
+++ b/src/plugins/aorai/tests/ya/other.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 int x=0;
diff --git a/src/plugins/aorai/tests/ya/seq.i b/src/plugins/aorai/tests/ya/seq.i
index f573a5491b3..1ba54569e12 100644
--- a/src/plugins/aorai/tests/ya/seq.i
+++ b/src/plugins/aorai/tests/ya/seq.i
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-acceptance -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-acceptance -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
  */
 
 void f() { }
diff --git a/src/plugins/aorai/tests/ya/seq_loop.i b/src/plugins/aorai/tests/ya/seq_loop.i
index 07cc7cf2a9b..bee4d37d3cf 100644
--- a/src/plugins/aorai/tests/ya/seq_loop.i
+++ b/src/plugins/aorai/tests/ya/seq_loop.i
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-acceptance -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-acceptance -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 void f() {}
diff --git a/src/plugins/aorai/tests/ya/serial.c b/src/plugins/aorai/tests/ya/serial.c
index 43d67d6540f..8e9624c36c4 100644
--- a/src/plugins/aorai/tests/ya/serial.c
+++ b/src/plugins/aorai/tests/ya/serial.c
@@ -1,5 +1,5 @@
 /* run.config*
-  OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@ -aorai-no-acceptance -aorai-instrumentation-history 2 -aorai-no-generate-annotations -aorai-no-generate-deterministic-lemmas -then-last -eva -eva-partition-value n -eva-ilevel 256
+  OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@ -aorai-no-acceptance -aorai-instrumentation-history 2 -aorai-no-generate-annotations -aorai-no-generate-deterministic-lemmas -then-last -eva -eva-partition-value n -eva-ilevel 256
 */
 
 #include "__fc_builtin.h"
diff --git a/src/plugins/aorai/tests/ya/single_call.i b/src/plugins/aorai/tests/ya/single_call.i
index 257ce2b2c7a..51abf5a7ef3 100644
--- a/src/plugins/aorai/tests/ya/single_call.i
+++ b/src/plugins/aorai/tests/ya/single_call.i
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-acceptance -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-acceptance -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 int main () {}
diff --git a/src/plugins/aorai/tests/ya/singleassignment-right.i b/src/plugins/aorai/tests/ya/singleassignment-right.i
index 943c3e5e67c..4c5612f5107 100644
--- a/src/plugins/aorai/tests/ya/singleassignment-right.i
+++ b/src/plugins/aorai/tests/ya/singleassignment-right.i
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 void main(int *x, int *y)
diff --git a/src/plugins/aorai/tests/ya/singleassignment-wrong.i b/src/plugins/aorai/tests/ya/singleassignment-wrong.i
index c983ce03e45..4a88230c1c7 100644
--- a/src/plugins/aorai/tests/ya/singleassignment-wrong.i
+++ b/src/plugins/aorai/tests/ya/singleassignment-wrong.i
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 int main(int x)
diff --git a/src/plugins/aorai/tests/ya/stack.i b/src/plugins/aorai/tests/ya/stack.i
index b3a73417829..d911301c686 100644
--- a/src/plugins/aorai/tests/ya/stack.i
+++ b/src/plugins/aorai/tests/ya/stack.i
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 
diff --git a/src/plugins/aorai/tests/ya/test_acces_params.c b/src/plugins/aorai/tests/ya/test_acces_params.c
index 884140ce9ca..dc673f9bc59 100644
--- a/src/plugins/aorai/tests/ya/test_acces_params.c
+++ b/src/plugins/aorai/tests/ya/test_acces_params.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 int status=0;
diff --git a/src/plugins/aorai/tests/ya/test_acces_params2.c b/src/plugins/aorai/tests/ya/test_acces_params2.c
index 86092179e3f..7f25f23facb 100644
--- a/src/plugins/aorai/tests/ya/test_acces_params2.c
+++ b/src/plugins/aorai/tests/ya/test_acces_params2.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 
diff --git a/src/plugins/aorai/tests/ya/test_boucle_rechercheTableau.c b/src/plugins/aorai/tests/ya/test_boucle_rechercheTableau.c
index 7dcf436cfe3..da220198440 100644
--- a/src/plugins/aorai/tests/ya/test_boucle_rechercheTableau.c
+++ b/src/plugins/aorai/tests/ya/test_boucle_rechercheTableau.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 
diff --git a/src/plugins/aorai/tests/ya/test_factorial.c b/src/plugins/aorai/tests/ya/test_factorial.c
index 9cb2213b68d..fbb9762854c 100644
--- a/src/plugins/aorai/tests/ya/test_factorial.c
+++ b/src/plugins/aorai/tests/ya/test_factorial.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 
diff --git a/src/plugins/aorai/tests/ya/test_recursion4.c b/src/plugins/aorai/tests/ya/test_recursion4.c
index cf4c5d8523a..e88b8471fb7 100644
--- a/src/plugins/aorai/tests/ya/test_recursion4.c
+++ b/src/plugins/aorai/tests/ya/test_recursion4.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 # pragma JessieIntegerModel(math)
diff --git a/src/plugins/aorai/tests/ya/test_recursion5.c b/src/plugins/aorai/tests/ya/test_recursion5.c
index 241030e7112..0f902c0071f 100644
--- a/src/plugins/aorai/tests/ya/test_recursion5.c
+++ b/src/plugins/aorai/tests/ya/test_recursion5.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 
diff --git a/src/plugins/aorai/tests/ya/test_struct.c b/src/plugins/aorai/tests/ya/test_struct.c
index 1b8ff3ec2ff..d94c75970eb 100644
--- a/src/plugins/aorai/tests/ya/test_struct.c
+++ b/src/plugins/aorai/tests/ya/test_struct.c
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-acceptance -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 struct People{
-- 
GitLab


From c5805536d7f2fb3eec159e06588d3cb1ba84ed55 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Tue, 12 Jan 2021 15:31:42 +0100
Subject: [PATCH 051/141] [aorai] don't try to show Aorai_curState value for
 non-deterministic automaton

---
 .../aorai/aorai_eva_analysis.enabled.ml       | 20 ++++++++++++-------
 1 file changed, 13 insertions(+), 7 deletions(-)

diff --git a/src/plugins/aorai/aorai_eva_analysis.enabled.ml b/src/plugins/aorai/aorai_eva_analysis.enabled.ml
index 5b481c60b1d..66770622529 100644
--- a/src/plugins/aorai/aorai_eva_analysis.enabled.ml
+++ b/src/plugins/aorai/aorai_eva_analysis.enabled.ml
@@ -39,13 +39,21 @@ let show_val fmt (expr, v, _) =
     Printer.pp_exp expr
     (Cvalue.V.pretty_typ (Some (Cil.typeOf expr))) v
 
+let show_aorai_state = "Frama_C_show_aorai_state"
+
 let builtin_show_aorai_state state args =
-  let history = Data_for_aorai.(curState :: (whole_history ())) in
-  Aorai_option.result ~current:true "@[<hv>%a@]"
-    (Pretty_utils.pp_list ~sep:" <- " (show_aorai_variable state)) history;
-  if args <> [] then begin
+  if not (Aorai_option.Deterministic.get()) then begin
+    Aorai_option.warning
+      ~current:true "%s can only display info for deterministic automata"
+      show_aorai_state
+  end else begin
+    let history = Data_for_aorai.(curState :: (whole_history ())) in
     Aorai_option.result ~current:true "@[<hv>%a@]"
-      (Pretty_utils.pp_list ~sep:"," show_val) args
+      (Pretty_utils.pp_list ~sep:" <- " (show_aorai_variable state)) history;
+    if args <> [] then begin
+      Aorai_option.result ~current:true "@[<hv>%a@]"
+        (Pretty_utils.pp_list ~sep:"," show_val) args
+    end;
   end;
   (* Return value : returns nothing, changes nothing *)
   {
@@ -55,8 +63,6 @@ let builtin_show_aorai_state state args =
     c_cacheable = Value_types.Cacheable;
   }
 
-let show_aorai_state = "Frama_C_show_aorai_state"
-
 let () =
   Cil_builtins.add_custom_builtin
     (fun () -> (show_aorai_state,Cil.voidType,[],true))
-- 
GitLab


From 9059b72f0bcbfcfafaa4b3475d8b1c411cf0227d Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Tue, 12 Jan 2021 15:32:32 +0100
Subject: [PATCH 052/141] [aorai] add test case for save/load sequence

---
 .../aorai/tests/ya/oracle/saveload.res.0.log  |  1 +
 .../aorai/tests/ya/oracle/saveload.res.1.log  | 53 +++++++++++++++++++
 src/plugins/aorai/tests/ya/saveload.i         | 16 ++++++
 src/plugins/aorai/tests/ya/saveload.ya        |  6 +++
 4 files changed, 76 insertions(+)
 create mode 100644 src/plugins/aorai/tests/ya/oracle/saveload.res.0.log
 create mode 100644 src/plugins/aorai/tests/ya/oracle/saveload.res.1.log
 create mode 100644 src/plugins/aorai/tests/ya/saveload.i
 create mode 100644 src/plugins/aorai/tests/ya/saveload.ya

diff --git a/src/plugins/aorai/tests/ya/oracle/saveload.res.0.log b/src/plugins/aorai/tests/ya/oracle/saveload.res.0.log
new file mode 100644
index 00000000000..ecf6196e2f1
--- /dev/null
+++ b/src/plugins/aorai/tests/ya/oracle/saveload.res.0.log
@@ -0,0 +1 @@
+[kernel] Parsing tests/ya/saveload.i (no preprocessing)
diff --git a/src/plugins/aorai/tests/ya/oracle/saveload.res.1.log b/src/plugins/aorai/tests/ya/oracle/saveload.res.1.log
new file mode 100644
index 00000000000..7c430b30808
--- /dev/null
+++ b/src/plugins/aorai/tests/ya/oracle/saveload.res.1.log
@@ -0,0 +1,53 @@
+[kernel:annot:missing-spec] tests/ya/saveload.i:12: Warning: 
+  Neither code nor specification for function Frama_C_show_aorai_state, generating default assigns from the prototype
+[eva] Analyzing a complete application starting at main
+[eva] Computing initial state
+[eva] Initial state computed
+[eva:initial-state] Values of globals at initialization
+  aorai_CurOperation ∈ {0}
+  aorai_CurOpStatus ∈ {0}
+  aorai_CurStates ∈ {1}
+[aorai] tests/ya/saveload.i:14: accept
+[eva] done for function main
+[eva] ====== VALUES COMPUTED ======
+[eva:final-states] Values at end of function f_post_func:
+  aorai_CurOperation ∈ {1}
+  aorai_CurOpStatus ∈ {1}
+  aorai_CurStates ∈ {0}
+[eva:final-states] Values at end of function f_pre_func:
+  aorai_CurOperation ∈ {1}
+  aorai_CurOpStatus ∈ {0}
+  aorai_CurStates ∈ {0}
+[eva:final-states] Values at end of function f:
+  aorai_CurOperation ∈ {1}
+  aorai_CurOpStatus ∈ {1}
+  aorai_CurStates ∈ {0}
+[eva:final-states] Values at end of function main_post_func:
+  aorai_CurOperation ∈ {0}
+  aorai_CurOpStatus ∈ {1}
+  aorai_CurStates ∈ {0}
+[eva:final-states] Values at end of function main_pre_func:
+  aorai_CurOperation ∈ {0}
+  aorai_CurOpStatus ∈ {0}
+  aorai_CurStates ∈ {0}
+[eva:final-states] Values at end of function main:
+  __retres ∈ {0}
+  aorai_CurOperation ∈ {0}
+  aorai_CurOpStatus ∈ {1}
+  aorai_CurStates ∈ {0}
+[eva:summary] ====== ANALYSIS SUMMARY ======
+  ----------------------------------------------------------------------------
+  6 functions analyzed (out of 6): 100% coverage.
+  In these functions, 31 statements reached (out of 31): 100% coverage.
+  ----------------------------------------------------------------------------
+  Some errors and warnings have been raised during the analysis:
+    by the Eva analyzer:      0 errors    0 warnings
+    by the Frama-C kernel:    0 errors    1 warning
+  ----------------------------------------------------------------------------
+  0 alarms generated by the analysis.
+  ----------------------------------------------------------------------------
+  Evaluation of the logical properties reached by the analysis:
+    Assertions        0 valid     0 unknown     0 invalid      0 total
+    Preconditions     5 valid     0 unknown     0 invalid      5 total
+  100% of the logical properties reached have been proven.
+  ----------------------------------------------------------------------------
diff --git a/src/plugins/aorai/tests/ya/saveload.i b/src/plugins/aorai/tests/ya/saveload.i
new file mode 100644
index 00000000000..24fb0c24fec
--- /dev/null
+++ b/src/plugins/aorai/tests/ya/saveload.i
@@ -0,0 +1,16 @@
+/* run.config
+NOFRAMAC:
+EXECNOW: LOG @PTEST_NAME@.res.0.log BIN @PTEST_NAME@.sav @frama-c@ -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya @PTEST_FILE@ -save @PTEST_DIR@/result/@PTEST_NAME@.sav > @PTEST_DIR@/result/@PTEST_NAME@.res.0.log
+EXECNOW: LOG @PTEST_NAME@.res.1.log @frama-c@ -load @PTEST_DIR@/result/@PTEST_NAME@.sav -then-on aorai -eva > @PTEST_DIR@/result/@PTEST_NAME@.res.1.log
+*/
+/* run.config_prove
+DONTRUN:
+*/
+
+void f () { }
+
+int main () {
+f();
+Frama_C_show_aorai_state();
+return 0;
+}
diff --git a/src/plugins/aorai/tests/ya/saveload.ya b/src/plugins/aorai/tests/ya/saveload.ya
new file mode 100644
index 00000000000..cb6e45d39cd
--- /dev/null
+++ b/src/plugins/aorai/tests/ya/saveload.ya
@@ -0,0 +1,6 @@
+%init: init;
+%deterministic;
+%accept: accept;
+
+init: -> accept;
+accept: -> accept;
-- 
GitLab


From 1dfa451a620868704d58cf4431d0dee7bef525d9 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Tue, 12 Jan 2021 18:17:52 +0100
Subject: [PATCH 053/141] [aorai] remove now-unused -aorai-output-c-file option

---
 src/plugins/aorai/aorai_option.ml  | 10 ----------
 src/plugins/aorai/aorai_option.mli |  1 -
 2 files changed, 11 deletions(-)

diff --git a/src/plugins/aorai/aorai_option.ml b/src/plugins/aorai/aorai_option.ml
index 0920c5f83d1..307652ff225 100644
--- a/src/plugins/aorai/aorai_option.ml
+++ b/src/plugins/aorai/aorai_option.ml
@@ -73,16 +73,6 @@ module Ya =
                   (in Ya language) from file <f>."
     end)
 
-module Output_C_File =
-  Filepath
-    (struct
-      let option_name = "-aorai-output-c-file"
-      let arg_name = ""
-      let file_kind = "annotated C"
-      let existence = Fc_Filepath.Indifferent
-      let help = "specifies generated file name for annotated C code"
-    end)
-
 module Dot =
   False(struct
     let option_name = "-aorai-dot"
diff --git a/src/plugins/aorai/aorai_option.mli b/src/plugins/aorai/aorai_option.mli
index 4f8c3838eb4..633950adb90 100644
--- a/src/plugins/aorai/aorai_option.mli
+++ b/src/plugins/aorai/aorai_option.mli
@@ -29,7 +29,6 @@ module Ltl_File: Parameter_sig.Filepath
 module To_Buchi: Parameter_sig.Filepath
 module Buchi: Parameter_sig.Filepath
 module Ya: Parameter_sig.Filepath
-module Output_C_File: Parameter_sig.Filepath
 module Dot: Parameter_sig.Bool
 module DotSeparatedLabels: Parameter_sig.Bool
 module AbstractInterpretation: Parameter_sig.Bool
-- 
GitLab


From 0acb23ffa88677432851a05f1f651ec4c508c1ef Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Tue, 12 Jan 2021 18:28:20 +0100
Subject: [PATCH 054/141] [aorai] update documentation following changes

- No more generation of C file without `-print`
- Remove mention of deleted option `-aorai-output-c-file`
- No reference to Jessie anymore. Use WP instead
---
 doc/aorai/main.tex | 76 +++++++++++++++++++---------------------------
 1 file changed, 32 insertions(+), 44 deletions(-)

diff --git a/doc/aorai/main.tex b/doc/aorai/main.tex
index dd5b5a23d78..ce9e37800a6 100644
--- a/doc/aorai/main.tex
+++ b/doc/aorai/main.tex
@@ -60,11 +60,11 @@ keywordstyle=\bfseries,
 \aorai is a Frama-C plugin that provides a method to automatically annotate a 
 C program according to an automaton $F$ such that, if the annotations
 are verified, we ensure that the program respects $F$. A classical method to
-validate annotations then is to use the Jessie plugin and
+validate annotations then is to use the WP plugin and
 the Why tool or the WP plugin.
 
 This document requires basic knowledge about
-the Frama-C platform itself (See \url{http://frama-c.com} for more information),
+the Frama-C platform itself (See \url{https://frama-c.com} for more information),
 in particular the notions of {\it plug-ins} and {\it project}.
 
 \vspace*{20pt}
@@ -79,7 +79,7 @@ in particular the notions of {\it plug-ins} and {\it project}.
 \end{itemize}
 
 \vspace*{20pt}
-\noindent \textbf{Official web site:}
+\noindent \textbf{Official web site for the original version:}
 
 \begin{center}
   \url{http://amazones.gforge.inria.fr/aorai/index.html}
@@ -140,7 +140,7 @@ This document is divided into four parts:
 \item The second part defines the three \aorai input languages with which it is
 possible to describe a given property.
 \item The third part explains how to prove a program annotated with \aorai 
-using the Jessie plug-in.
+using the WP plug-in.
 \item Finally, the last part details \aorai 's underlying theory, and its
 internal architecture in order to help people who would like to contribute to
 the plug-in itself.
@@ -152,7 +152,7 @@ the plug-in itself.
 \chapter{Quick overview}
 
 In this chapter we will see how to use Frama-C and the couple
-Jessie-\aorai to prove that a C program has the same behavior than
+WP-\aorai to prove that a C program has the same behavior than
 an automaton.
 
 \section{First use}
@@ -163,9 +163,9 @@ an automaton.
   which will be described in the second part. In fact, we consider
   that we have already written the file which describes the automaton.
 
-  Jessie's verification\footnote{For more information about Jessie
+  WP verification\footnote{For more information about WP
     and code verification,please refer to
-    \url{http://frama-c.com/jessie.html}} can only be done on C
+    \url{http://frama-c.com/wp.html}} can only be done on C
   code augmented with ACSL annotations. Thus, 
   \aorai creates a new C file where the automaton is encoded into ACSL 
   annotations. Section~\ref{generated_annotated_file} will give more
@@ -179,37 +179,33 @@ an automaton.
 \end{itemize}
 
  With two files (automaton's description and C file), we can create an
-annotated file in order to process the validation with the Jessie plug-in. This
+annotated file. This
 is done by the following command:
-\begin{lstlisting}[language=sh]
-$ frama-c example.c -aorai-automata example.ya
+\begin{lstlisting}
+$ frama-c example.c -aorai-automata example.ya \
+          -then-last -ocode example_annot.c -print
 \end{lstlisting} %$
 
-This generates a new C file \texttt{example\_annot.c}\footnote{Or \texttt{example\_annot0.c} if \texttt{example\_annot.c} already exists}.
+This generates a new C file \texttt{example\_annot.c}.
 In order to decide if the original program is correct with respect to
 the automaton, it is sufficient to establish that the generated C code and
 its associated ACSL annotations are valid. For instance, the following command
-uses the Jessie plug-in to generate proof obligations and launches \texttt{gwhy}
+uses the WP plugin over the generated file:
 \begin{lstlisting}[language=sh]
-$ frama-c example_annot.c -jessie
+$ frama-c example_annot.c -wp -wp-rte
 \end{lstlisting} %$
 
-Of course, any option of Jessie itself can be used. For instance, one can use
-the Why3 interface instead of \texttt{gwhy}, and select a different algorithm
-for the generation of proof obligations:
-\begin{lstlisting}[language=sh]
-$ frama-c example_annot.c  -jessie \
-        -jessie-why-opt="-fast-wp" -jessie-atp why3ide
-\end{lstlisting} %$
-
-Finally, since Frama-C Nitrogen, it is possible to instruct Frama-C to do a
+Of course, any option of WP itself can be used, notably \texttt{-wp-rte} to
+check for the absence of runtime error.
+Finally, it is possible to instruct Frama-C to do a
 sequence of analyses over various projects, {\it via} the \texttt{-then-on}
-option. Thus, we do not need to use an intermediate file and to run Frama-C
-twice. Instead, we just instruct jessie to operate on the \texttt{aorai}
+options and \texttt{-then-last} options.
+Thus, we do not need to use an intermediate file and to run Frama-C
+twice. Instead, we just instruct WP to operate on the \texttt{aorai}
 project that contains the code annotated by \aorai:
-\begin{lstlisting}[language=sh]
+\begin{lstlisting}
 $ frama-c example.c -aorai-automata example.ya \
-        -then-on aorai -jessie -jessie-atp why3ide
+          -then-last -wp -wp-rte
 \end{lstlisting} %$
 
 \subsection{Automata and verification}
@@ -269,7 +265,7 @@ of states authorized just before (resp. after) the call.
 \aorai generates a new C program, including the automaton
 axiomatization, some coherence invariants, and annotations on
 operations, such that if this annotated program can be validated with
-the Jessie plugin, then we ensure that it respects the given
+the WP plugin, then we ensure that it respects the given
 properties.
 
 Sometimes, the automaton has not enough information to check the
@@ -294,10 +290,7 @@ information about that, please read section \ref{collaboration}.
    \item[-aorai-dot] generates a dot file of the automata.
      Dot is a graph format used by the
      GraphViz tools\footnote{\url{http://www.graphviz.org}}.
-   \item[-aorai-output-c-file <f>] outputs the annotated code in file
-     \texttt{<f>} (default is to suffix the name of the first input file
-     with \texttt{\_annot}, and a numerical suffix if that name is already
-     taken).
+     
  \end{itemize}
 
   Finally, here is a concrete example of a common call:
@@ -697,21 +690,19 @@ figure~\ref{LTL_first_use}
 % ===========================================================================
 % ===========================================================================
 \chapter{Advanced Features}
-\section{Generated Annotated File}
+\section{Generated Annotated Program}
 \label{generated_annotated_file}
 
-The default configuration is to generate a new C file
-(whose name is derived from first input file or can be set by the user; see
-section~\ref{sec:help-command} for more information). The generated file is
+The instrumented program is
 the original program (with its annotations\footnote{ ACSL language for
-  annotation is described at \url{http://frama-c.com/acsl.html}})
+  annotation is described at \url{https://github.com/acsl-language/acsl}})
 completed with the following:
 \begin{itemize}
 \item Some auxiliary C declarations representing the automaton itself
 and information needed to decide if a given transition should be taken or not;
 \item If the automaton has been marked as \texttt{deterministic}, a set of
 lemmas state that it is indeed the case;
-\item For each original C function, two functions are given with their
+\item For each original C function, two functions are defined with their
 specification. They take care of updating the automaton's state when entering
 and exiting the function respectively;
 \item Each original C function gets additional ACSL behaviors, expressing how
@@ -1017,7 +1008,7 @@ supported by Value Analysis, so that this plug-in might be used over the
 generated code, but there is no guarantee that it will be able to establish
 the validity of all annotations.
 
-Another possibility is to use deductive verification plug-ins WP or Jessie.
+Another possibility is to use the deductive verification plug-in WP.
 Note however that the generated annotations are not guaranteed to be complete,
 {\it i.e.} to it might be necessary to add further annotations in order to
 discharge all proof obligations. In particular, in presence of loops, \aorai 
@@ -1029,12 +1020,6 @@ invariants of figure~\ref{FigGeneratedLoopInvariants} that
 gets decremented at each step, while \lstinline|aorai_counter| gets
 incremented), but such a relation is well beyond the scope of \aorai itself.
 
-Finally, as a special warning, Jessie does not use the fact that globals are
-initialized to 0 when entering the \lstinline|main| function of a program
-(which is in fact treated like any other function). This fact must thus be
-sometimes added to the \lstinline|requires| of the function, especially for
-auxiliary variables.
-
 % ========================================================================
 % ========================================================================
 % ========================================================================
@@ -1239,6 +1224,9 @@ The plug-in is composed of three parts:
 \section{Recent updates}
 \subsection{Frama-C+dev}
 \begin{itemize}
+\item Aoraï does not generate a C file by default anymore, relying on
+kernel options \texttt{-print} and \texttt{-ocode} for that, like all
+plug-ins. Remove corresponding ad'hoc options.
 \item update syntax for YA sequence to avoid ambiguities with
  \texttt{+} and \texttt{*} repetition operators
 \end{itemize}
-- 
GitLab


From 56d444b9faa76bcbaaa9a47380ecab7e089bf32c Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Mon, 18 Jan 2021 18:20:53 +0100
Subject: [PATCH 055/141] [aorai] remove unused function

---
 src/plugins/aorai/data_for_aorai.ml  | 3 ---
 src/plugins/aorai/data_for_aorai.mli | 3 ---
 2 files changed, 6 deletions(-)

diff --git a/src/plugins/aorai/data_for_aorai.ml b/src/plugins/aorai/data_for_aorai.ml
index b3da1ce5c06..70b4551cbd7 100644
--- a/src/plugins/aorai/data_for_aorai.ml
+++ b/src/plugins/aorai/data_for_aorai.ml
@@ -1640,9 +1640,6 @@ let setCData () =
   defined_functions := f_def;
   ignored_functions := f_decl
 
-let addIgnoredFunction kf =
-  ignored_functions := kf :: !ignored_functions
-
 (** Return true if and only if the given string fname denotes an ignored function. *)
 let isIgnoredFunction kf =
   List.exists (Kernel_function.equal kf) !ignored_functions
diff --git a/src/plugins/aorai/data_for_aorai.mli b/src/plugins/aorai/data_for_aorai.mli
index 3478573a06b..603579cd90d 100644
--- a/src/plugins/aorai/data_for_aorai.mli
+++ b/src/plugins/aorai/data_for_aorai.mli
@@ -227,9 +227,6 @@ val getObservablesFunctions : unit -> Cil_types.kernel_function list
     is unavailable. *)
 val getIgnoredFunctions : unit -> Cil_types.kernel_function list
 
-(** Add a function to the list of ignored functions. *)
-val addIgnoredFunction : Cil_types.kernel_function -> unit
-
 (** Return true if and only if the given string fname denotes an ignored function. *)
 val isIgnoredFunction : Cil_types.kernel_function -> bool
 
-- 
GitLab


From f80cb52c2e130f1d6d33108426aa4246b1e36460 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Mon, 18 Jan 2021 18:41:33 +0100
Subject: [PATCH 056/141] [make] share/libc/aorai is no more

---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 930b19a61c5..0f4ac62279f 100644
--- a/Makefile
+++ b/Makefile
@@ -191,7 +191,7 @@ THEME_ICONS_FLAT:= \
   $(addprefix share/theme/flat/,$(THEME_ICON_NAMES))
 
 ROOT_LIBC_DIR:= share/libc
-LIBC_SUBDIRS:= sys netinet net arpa aorai
+LIBC_SUBDIRS:= sys netinet net arpa
 LIBC_DIR:= $(ROOT_LIBC_DIR) $(addprefix $(ROOT_LIBC_DIR)/,$(LIBC_SUBDIRS))
 LIBC_FILES:= \
 	$(wildcard share/*.h share/*.c) \
-- 
GitLab


From 31bf9e829cb219541d29f1ddb8d17e20cdf000c8 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Mon, 18 Jan 2021 19:10:52 +0100
Subject: [PATCH 057/141] [aorai] document -aorai-instrumentation-history and
 Frama_C_aorai_show_state

---
 doc/aorai/main.tex | 23 ++++++++++++++++++-----
 1 file changed, 18 insertions(+), 5 deletions(-)

diff --git a/doc/aorai/main.tex b/doc/aorai/main.tex
index ce9e37800a6..d63e738e029 100644
--- a/doc/aorai/main.tex
+++ b/doc/aorai/main.tex
@@ -997,16 +997,27 @@ int main(int c) {
   \label{FigGeneratedLoopInvariants}
 \end{figure}
 
-\section{Interaction with Annotated Files}
+\section{Analyzing Annotated Files with Eva or WP}
 \label{collaboration}
 Once the annotated file has been generated, it remains to verify that all the
 annotations hold. This section describes briefly how this can be done and some
 common issues that may arise during verification.
 
-\aorai tries to generate ACSL annotations that stay in the fragment
-supported by Value Analysis, so that this plug-in might be used over the
-generated code, but there is no guarantee that it will be able to establish
-the validity of all annotations.
+In addition to annotations, \aorai generates an implementation for the transition
+functions, so that it is possible to use the Eva plug-in of Frama-C on the
+instrumented code. However, there's no guarantee that Eva will be able to
+perform an analysis that stays precise enough to verify that the automaton
+always ends in an accepting state. Aoraï will set up automatically a certain number
+of parameters in Eva to help make the analysis more precise, but,
+in the case of deterministic automata it is also possible
+to use option \texttt{-aorai-instrumentation-history n} to have the instrumentation
+retain the \texttt{n} previous states of the automaton (in addition to the
+current state), that will be used for splitting Eva's abstract states. Furthermore,
+each time Eva encounters a call to the 
+built-in function \texttt{Frama\_C\_show\_aorai\_state}, it will display the current
+state (together with the previous ones up to \texttt{-aorai\-instrumentation-history}).
+If the function is called with some arguments, their abstract value will also be
+displayed.
 
 Another possibility is to use the deductive verification plug-in WP.
 Note however that the generated annotations are not guaranteed to be complete,
@@ -1224,6 +1235,8 @@ The plug-in is composed of three parts:
 \section{Recent updates}
 \subsection{Frama-C+dev}
 \begin{itemize}
+\item Documentation for option \texttt{-aorai-instrumentation-history}
+and built-in \texttt{Frama\_C\_show\_aorai\_state}
 \item Aoraï does not generate a C file by default anymore, relying on
 kernel options \texttt{-print} and \texttt{-ocode} for that, like all
 plug-ins. Remove corresponding ad'hoc options.
-- 
GitLab


From 3433c2d06aa6920be0f4cd245c61b6530a500edc Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Wed, 20 Jan 2021 19:17:55 +0100
Subject: [PATCH 058/141] [aorai] update tests and oracles after rebase

---
 src/plugins/aorai/tests/ya/aorai_ptr_field.i           |  2 +-
 .../aorai/tests/ya/oracle/aorai_ptr_field.res.oracle   |  7 ++++---
 .../tests/ya/oracle_prove/aorai_ptr_field.res.oracle   |  1 -
 src/plugins/aorai/tests/ya/serial.ya                   | 10 +++++-----
 4 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/src/plugins/aorai/tests/ya/aorai_ptr_field.i b/src/plugins/aorai/tests/ya/aorai_ptr_field.i
index 9f1316be55c..24c8ffc30a7 100644
--- a/src/plugins/aorai/tests/ya/aorai_ptr_field.i
+++ b/src/plugins/aorai/tests/ya/aorai_ptr_field.i
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 struct S { int x; };
diff --git a/src/plugins/aorai/tests/ya/oracle/aorai_ptr_field.res.oracle b/src/plugins/aorai/tests/ya/oracle/aorai_ptr_field.res.oracle
index b9750505021..d8cb4fbaee5 100644
--- a/src/plugins/aorai/tests/ya/oracle/aorai_ptr_field.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/aorai_ptr_field.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/aorai_ptr_field.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_aorai_ptr_field_0.i (no preprocessing)
 /* Generated by Frama-C */
 struct S {
@@ -12,8 +11,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int S0 = 1; */
 /*@ ghost int S1 = 0; */
 /*@ ghost
@@ -38,6 +37,7 @@ enum aorai_OpStatusList {
   {
     int S0_tmp;
     int S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     S0_tmp = S0;
@@ -73,6 +73,7 @@ enum aorai_OpStatusList {
   {
     int S0_tmp;
     int S1_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     S0_tmp = S0;
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/aorai_ptr_field.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/aorai_ptr_field.res.oracle
index 5d9a38bc1e4..45a91772ac3 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/aorai_ptr_field.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/aorai_ptr_field.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/aorai_ptr_field.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_aorai_ptr_field_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/serial.ya b/src/plugins/aorai/tests/ya/serial.ya
index 8fde0de6e29..9f995d7f19f 100644
--- a/src/plugins/aorai/tests/ya/serial.ya
+++ b/src/plugins/aorai/tests/ya/serial.ya
@@ -7,7 +7,7 @@ $x2 : int;
 $y1 : int;
 $y2 : int;
 
-Error : { 0 } -> Error;
+Error : { false } -> Error;
 
 Wait1 :
   { CALL(input_status) } -> StatusReq1
@@ -129,25 +129,25 @@ DataReq1 :
 DataReq2 :
   { input_data().\result & 192 == 128 } -> Wait2
 | { input_data().\result & 192 == 192 } -> Wait1
-| { input_data().\result & 128 == 0 } $x1 := \result -> Wait3
+| { input_data().\result & 128 == 0 } $x1 := \result; -> Wait3
 ;
 
 DataReq3 :
   { input_data().\result & 192 == 128 } -> Wait2
 | { input_data().\result & 192 == 192 } -> Wait1
-| { input_data().\result & 128 == 0 } $x2 := \result -> Wait4
+| { input_data().\result & 128 == 0 } $x2 := \result; -> Wait4
 ;
 
 DataReq4 :
   { input_data().\result & 192 == 128 } -> Wait2
 | { input_data().\result & 192 == 192 } -> Wait1
-| { input_data().\result & 128 == 0 } $y1 := \result -> Wait5
+| { input_data().\result & 128 == 0 } $y1 := \result; -> Wait5
 ;
 
 DataReq5 :
   { input_data().\result & 192 == 128 } -> Wait2
 | { input_data().\result & 192 == 192 } -> Wait1
-| { input_data().\result & 128 == 0 } $y2 := \result -> Complete
+| { input_data().\result & 128 == 0 } $y2 := \result; -> Complete
 ;
 
 Complete :
-- 
GitLab


From 673a6398f11d5659ca5decc09b2d893bd2e88acf Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Wed, 20 Jan 2021 19:18:23 +0100
Subject: [PATCH 059/141] [aorai] fix options of test serial.c in -config prove

and start debugging the issues found...
---
 src/plugins/aorai/tests/ya/serial.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/plugins/aorai/tests/ya/serial.c b/src/plugins/aorai/tests/ya/serial.c
index 8e9624c36c4..7073942e7e1 100644
--- a/src/plugins/aorai/tests/ya/serial.c
+++ b/src/plugins/aorai/tests/ya/serial.c
@@ -1,5 +1,8 @@
-/* run.config*
-  OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@ -aorai-no-acceptance -aorai-instrumentation-history 2 -aorai-no-generate-annotations -aorai-no-generate-deterministic-lemmas -then-last -eva -eva-partition-value n -eva-ilevel 256
+/* run.config
+  OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ -aorai-no-acceptance -aorai-instrumentation-history 2 -aorai-no-generate-annotations -aorai-no-generate-deterministic-lemmas -then-last -eva -eva-partition-value n -eva-ilevel 256
+*/
+/* run.config_prove
+OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ -aorai-no-acceptance @PROVE_OPTIONS@
 */
 
 #include "__fc_builtin.h"
-- 
GitLab


From a6e57d66cf7002b92074431c6c35dd63da26c1c4 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Wed, 20 Jan 2021 20:01:22 +0100
Subject: [PATCH 060/141] [aorai] only move automaton for observable functions
 in dataflow

---
 src/plugins/aorai/aorai_dataflow.ml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/plugins/aorai/aorai_dataflow.ml b/src/plugins/aorai/aorai_dataflow.ml
index 35cd5f132a0..63a0214b2a2 100644
--- a/src/plugins/aorai/aorai_dataflow.ml
+++ b/src/plugins/aorai/aorai_dataflow.ml
@@ -430,7 +430,7 @@ module Computer(I: Init) = struct
 
   let do_call s f args (state,loops as d) =
     let kf = Globals.Functions.get f in
-    if Data_for_aorai.isIgnoredFunction kf
+    if not (Data_for_aorai.isObservableFunction kf)
     then d (* we simply skip ignored functions. *)
     else begin
       set_call_state s state;
-- 
GitLab


From 8ccfdbd577c4eb877f796d61e0afca4f25403215 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Wed, 20 Jan 2021 20:02:20 +0100
Subject: [PATCH 061/141] [aorai] update oracle

---
 .../tests/ya/oracle_prove/serial.res.oracle   | 320 +-----------------
 1 file changed, 9 insertions(+), 311 deletions(-)

diff --git a/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle
index cc4a6cd6b2b..a9b85468c53 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle
@@ -1,315 +1,13 @@
 [kernel] Parsing tests/ya/serial.c (with preprocessing)
-[kernel:annot:missing-spec] tests/ya/serial.c:43: Warning: 
-  Neither code nor specification for function Frama_C_show_aorai_state, generating default assigns from the prototype
-[eva] Analyzing a complete application starting at main
-[eva] Computing initial state
-[eva] Initial state computed
-[eva:initial-state] Values of globals at initialization
-  indefinitely ∈ [--..--]
-  buffer[0..4] ∈ {0}
-  n ∈ {0}
-  aorai_x1 ∈ {0}
-  aorai_x2 ∈ {0}
-  aorai_y1 ∈ {0}
-  aorai_y2 ∈ {0}
-  aorai_CurOperation ∈ {0}
-  aorai_CurOpStatus ∈ {0}
-  aorai_CurStates ∈ {19}
-  aorai_StatesHistory_1 ∈ {19}
-  aorai_StatesHistory_2 ∈ {19}
-[eva] using specification for function Frama_C_interval
-[eva] tests/ya/serial.c:45: starting to merge loop iterations
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 100 states
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 300 states
-[aorai] tests/ya/serial.c:79: Wait1 <- Wait1 <- Complete
-[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [8192..16383]
-[aorai] tests/ya/serial.c:79: Error <- Error <- Complete
-[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [8192..16383]
-[aorai] tests/ya/serial.c:79: Complete <- Complete <- Complete
-[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [8192..16383]
-[aorai] tests/ya/serial.c:79: Wait1 <- Wait1 <- Complete
-[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [0..8191]
-[aorai] tests/ya/serial.c:79: Error <- Error <- Complete
-[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [0..8191]
-[aorai] tests/ya/serial.c:79: Complete <- Complete <- Complete
-[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [0..8191]
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 500 states
-[eva:alarm] tests/ya/serial.c:52: Warning: 
-  accessing uninitialized left-value. assert \initialized(&status);
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 700 states
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 900 states
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1200 states
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1500 states
-[aorai] tests/ya/serial.c:79: Error <- Error <- Error
-[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [8192..16383]
-[aorai] tests/ya/serial.c:79: Error <- Error <- Error
-[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [0..8191]
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1700 states
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1900 states
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 2000 states
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 2100 states
-[eva] done for function main
-[eva] ====== VALUES COMPUTED ======
-[eva:final-states] Values at end of function input_data_post_func:
-  aorai_x1 ∈
-          {0; 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}
-  aorai_x2 ∈
-          {0; 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}
-  aorai_y1 ∈
-          {0; 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}
-  aorai_y2 ∈ [0..2147483647]
-  aorai_CurOperation ∈ {2}
-  aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {0; 7; 19; 20; 21; 22; 23}
-  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 7}
-  aorai_StatesHistory_2 ∈ {7; 8; 9; 10; 11; 12; 13}
-[eva:final-states] Values at end of function input_data_pre_func:
-  aorai_CurOperation ∈ {2}
-  aorai_CurOpStatus ∈ {0}
-  aorai_CurStates ∈ {1; 2; 3; 4; 5; 6; 7}
-  aorai_StatesHistory_1 ∈ {7; 8; 9; 10; 11; 12; 13}
-  aorai_StatesHistory_2 ∈ {7; 14; 15; 16; 17; 18}
-[eva:final-states] Values at end of function input_data:
-  Frama_C_entropy_source ∈ [--..--]
-  aorai_x1 ∈
-          {0; 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}
-  aorai_x2 ∈
-          {0; 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}
-  aorai_y1 ∈
-          {0; 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}
-  aorai_y2 ∈ [0..2147483647]
-  aorai_CurOperation ∈ {2}
-  aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {0; 7; 19; 20; 21; 22; 23}
-  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 7}
-  aorai_StatesHistory_2 ∈ {7; 8; 9; 10; 11; 12; 13}
-[eva:final-states] Values at end of function input_status_post_func:
-  aorai_CurOperation ∈ {1}
-  aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {7; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
-  aorai_StatesHistory_1 ∈ {7; 14; 15; 16; 17; 18}
-  aorai_StatesHistory_2 ∈ {0; 7; 19; 20; 21; 22; 23}
-[eva:final-states] Values at end of function input_status_pre_func:
-  aorai_CurOperation ∈ {1}
-  aorai_CurOpStatus ∈ {0}
-  aorai_CurStates ∈ {7; 14; 15; 16; 17; 18}
-  aorai_StatesHistory_1 ∈ {0; 7; 19; 20; 21; 22; 23}
-  aorai_StatesHistory_2 ∈ {0; 1; 2; 3; 4; 5; 6; 7; 14; 15; 16; 17; 18; 19}
-[eva:final-states] Values at end of function input_status:
-  Frama_C_entropy_source ∈ [--..--]
-  aorai_CurOperation ∈ {1}
-  aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {7; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
-  aorai_StatesHistory_1 ∈ {7; 14; 15; 16; 17; 18}
-  aorai_StatesHistory_2 ∈ {0; 7; 19; 20; 21; 22; 23}
-[eva:final-states] Values at end of function output_post_func:
-  aorai_CurOperation ∈ {0}
-  aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {0; 7; 19}
-  aorai_StatesHistory_1 ∈ {0; 7; 19}
-  aorai_StatesHistory_2 ∈ {0; 7}
-[eva:final-states] Values at end of function output_pre_func:
-  aorai_CurOperation ∈ {0}
-  aorai_CurOpStatus ∈ {0}
-  aorai_CurStates ∈ {0; 7; 19}
-  aorai_StatesHistory_1 ∈ {0; 7}
-  aorai_StatesHistory_2 ∈ {5; 7}
-[eva:final-states] Values at end of function output:
-  aorai_CurOperation ∈ {0}
-  aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {0; 7; 19}
-  aorai_StatesHistory_1 ∈ {0; 7; 19}
-  aorai_StatesHistory_2 ∈ {0; 7}
-[eva:final-states] Values at end of function read:
-  Frama_C_entropy_source ∈ [--..--]
-  s ∈
-   {0; 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}
-  status ∈ {0; 2; 4; 6; 8; 10; 12; 14} or UNINITIALIZED
-  __retres ∈ [-1..255]
-  aorai_x1 ∈
-          {0; 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}
-  aorai_x2 ∈
-          {0; 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}
-  aorai_y1 ∈
-          {0; 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}
-  aorai_y2 ∈ [0..2147483647]
-  aorai_CurOperation ∈ {1; 2}
-  aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {0; 7; 19; 20; 21; 22; 23}
-  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 7; 14; 15; 16; 17; 18}
-  aorai_StatesHistory_2 ∈ {0; 7; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
-[eva:final-states] Values at end of function main:
-  Frama_C_entropy_source ∈ [--..--]
-  buffer[0] ∈
-        {0; 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}
-        [1..2] ∈
-        {0; 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}
-        [3..4] ∈ [0..2147483647]
-  n ∈ {0; 1; 2; 3; 4}
-  aorai_x1 ∈
-          {0; 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}
-  aorai_x2 ∈
-          {0; 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}
-  aorai_y1 ∈
-          {0; 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}
-  aorai_y2 ∈ [0..2147483647]
-  aorai_CurOperation ∈ {0; 1; 2}
-  aorai_CurOpStatus ∈ {0; 1}
-  aorai_CurStates ∈ {0; 7; 19; 20; 21; 22; 23}
-  aorai_StatesHistory_1 ∈ {0; 1; 2; 3; 4; 5; 6; 7; 14; 15; 16; 17; 18; 19}
-  aorai_StatesHistory_2 ∈ {0; 7; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
-[eva:summary] ====== ANALYSIS SUMMARY ======
-  ----------------------------------------------------------------------------
-  11 functions analyzed (out of 11): 100% coverage.
-  In these functions, 216 statements reached (out of 255): 84% coverage.
-  ----------------------------------------------------------------------------
-  Some errors and warnings have been raised during the analysis:
-    by the Eva analyzer:      0 errors    0 warnings
-    by the Frama-C kernel:    0 errors    1 warning
-  ----------------------------------------------------------------------------
-  1 alarm generated by the analysis:
-       1 access to uninitialized left-values
-  ----------------------------------------------------------------------------
-  Evaluation of the logical properties reached by the analysis:
-    Assertions        0 valid     0 unknown     0 invalid      0 total
-    Preconditions     2 valid     0 unknown     0 invalid      2 total
-  100% of the logical properties reached have been proven.
-  ----------------------------------------------------------------------------
+[aorai] tests/ya/serial.c:79: Warning: 
+  Call to output not conforming to automaton (post-cond). Assuming it is on a dead path
+[aorai] tests/ya/serial.c:25: Warning: 
+  Call to output not conforming to automaton (pre-cond). Assuming it is on a dead path
 [kernel] Parsing TMPDIR/aorai_serial_0.i (no preprocessing)
-[kernel:typing:implicit-function-declaration] TMPDIR/aorai_serial_0.i:174: Warning: 
+[kernel:typing:implicit-function-declaration] TMPDIR/aorai_serial_0.i:98: Warning: 
   Calling undeclared function Frama_C_interval. Old style K&R code?
 [wp] Warning: Missing RTE guards
-[wp] Warning: No goal generated
-[wp] Warning: No goal generated
-[wp] Warning: No goal generated
-[wp] Warning: No goal generated
-[wp] Warning: No goal generated
-[wp] Warning: No goal generated
+[kernel:annot:missing-spec] TMPDIR/aorai_serial_0.i:125: Warning: 
+  Neither code nor specification for function Frama_C_interval, generating default assigns from the prototype
+[kernel:annot:missing-spec] TMPDIR/aorai_serial_0.i:125: Warning: 
+  Neither code nor specification for function Frama_C_show_aorai_state, generating default assigns from the prototype
-- 
GitLab


From 2fb335e961cfe6c425dba7b02978feb5edeaa4a8 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Thu, 21 Jan 2021 18:20:43 +0100
Subject: [PATCH 062/141] [aorai] do not propagate \result as a binding to
 caller functions...

---
 src/plugins/aorai/aorai_dataflow.ml  | 78 +++++++++++++++++++---------
 src/plugins/aorai/aorai_utils.ml     |  2 +
 src/plugins/aorai/data_for_aorai.ml  | 10 ++++
 src/plugins/aorai/data_for_aorai.mli |  1 +
 4 files changed, 66 insertions(+), 25 deletions(-)

diff --git a/src/plugins/aorai/aorai_dataflow.ml b/src/plugins/aorai/aorai_dataflow.ml
index 63a0214b2a2..a556a8a1cd3 100644
--- a/src/plugins/aorai/aorai_dataflow.ml
+++ b/src/plugins/aorai/aorai_dataflow.ml
@@ -70,6 +70,7 @@ let compose_range loc b r1 r2 =
       ->
       if Cil.isLogicZero b then Data_for_aorai.absolute_range loc (min1 + min2)
       else Unbounded (min1 + min2)
+    | Unknown, _ | _, Unknown -> Unknown
 
 let fail_on_both k elt1 elt2 =
   match elt1, elt2 with
@@ -85,8 +86,7 @@ let compose_bindings map1 loc vals map =
   let vals = Cil_datatype.Term.Map.fold 
     (fun base intv vals ->
       let vals' =
-        if Cil.isLogicZero base then
-          Cil_datatype.Term.Map.add base intv Cil_datatype.Term.Map.empty
+        if Cil.isLogicZero base then Cil_datatype.Term.Map.singleton base intv
         else
           try
             let orig_base = Cil_datatype.Term.Map.find base map1 in
@@ -96,8 +96,7 @@ let compose_bindings map1 loc vals map =
                 Cil_datatype.Term.Map.add base intv' map
               )
               orig_base Cil_datatype.Term.Map.empty
-          with Not_found ->
-            Cil_datatype.Term.Map.add base intv Cil_datatype.Term.Map.empty
+          with Not_found -> Cil_datatype.Term.Map.singleton base intv
       in
       Cil_datatype.Term.Map.merge
         (Extlib.merge_opt (Data_for_aorai.merge_range loc)) vals' vals
@@ -273,8 +272,9 @@ let make_start_transition ?(is_main=false) kf init_states =
       (fun trans kf -> Aorai_utils.isCrossable trans kf Promelaast.Call)
   in
   let treat_one_state state acc =
-    let my_trans = Path_analysis.get_transitions_of_state state auto in
-    let treat_one_trans acc trans =
+    if Data_for_aorai.isObservableFunction kf then begin
+      let my_trans = Path_analysis.get_transitions_of_state state auto in
+      let treat_one_trans acc trans =
         if is_crossable trans kf then begin
           let bindings = actions_to_range trans.actions in
           let fst_set =
@@ -286,13 +286,23 @@ let make_start_transition ?(is_main=false) kf init_states =
           add_or_merge trans.stop (fst_set, last_set, bindings) acc
         end
         else acc
-    in
-    let possible_states =
-      List.fold_left 
-        treat_one_trans Data_for_aorai.Aorai_state.Map.empty my_trans
-    in
-    if Data_for_aorai.Aorai_state.Map.is_empty possible_states then acc
-    else Data_for_aorai.Aorai_state.Map.add state possible_states acc
+      in
+      let possible_states =
+        List.fold_left 
+          treat_one_trans Data_for_aorai.Aorai_state.Map.empty my_trans
+      in
+      if Data_for_aorai.Aorai_state.Map.is_empty possible_states then acc
+      else Data_for_aorai.Aorai_state.Map.add state possible_states acc
+    end else begin
+      (* function is not observed by automaton: this is as if there
+         were a single transition letting the state unchanged. *)
+      Data_for_aorai.Aorai_state.(
+        Map.add state
+          (Map.singleton state
+           (Set.singleton state, Set.singleton state,
+            Cil_datatype.Term.Map.empty))
+          acc)
+    end
   in
   let res =
     Data_for_aorai.Aorai_state.Set.fold 
@@ -304,16 +314,28 @@ let make_return_transition kf state =
   set_return_state s state;
   let auto = Data_for_aorai.getGraph () in
   let treat_one_state state bindings acc =
-    let my_trans = Path_analysis.get_transitions_of_state state auto in
-    let last = Data_for_aorai.Aorai_state.Set.singleton state in
-    let treat_one_trans acc trans =
-      if Aorai_utils.isCrossable trans kf Promelaast.Return then begin
-        let my_bindings = actions_to_range trans.actions in
-        let new_bindings = compose_actions bindings (last, last, my_bindings) in
-        add_or_merge trans.stop new_bindings acc
-      end else acc
-    in
-    List.fold_left treat_one_trans acc my_trans
+    if Data_for_aorai.isObservableFunction kf then begin
+      let my_trans = Path_analysis.get_transitions_of_state state auto in
+      let last = Data_for_aorai.Aorai_state.Set.singleton state in
+      let treat_one_trans acc trans =
+        if Aorai_utils.isCrossable trans kf Promelaast.Return then begin
+          let my_bindings = actions_to_range trans.actions in
+          let new_bindings =
+            compose_actions bindings (last, last, my_bindings)
+          in
+          add_or_merge trans.stop new_bindings acc
+        end else acc
+      in
+      List.fold_left treat_one_trans acc my_trans
+    end else begin
+      (* non-observable function: its return does not change the state
+         of the automaton. *)
+      let last = Data_for_aorai.Aorai_state.Set.singleton state in
+      let new_bindings =
+        compose_actions bindings (last,last,Cil_datatype.Term.Map.empty)
+      in
+      add_or_merge state new_bindings acc
+    end
   in
   let treat_one_path start_state curr_state acc =
     let res =
@@ -430,7 +452,7 @@ module Computer(I: Init) = struct
 
   let do_call s f args (state,loops as d) =
     let kf = Globals.Functions.get f in
-    if not (Data_for_aorai.isObservableFunction kf)
+    if Data_for_aorai.isIgnoredFunction kf
     then d (* we simply skip ignored functions. *)
     else begin
       set_call_state s state;
@@ -455,7 +477,13 @@ module Computer(I: Init) = struct
           let acc = Cil_datatype.Term.Map.add lv value acc in
           bind acc prms args
       in
-      let args = bind Cil_datatype.Term.Map.empty prms args in
+      let res = Logic_const.tresult (Kernel_function.get_return_type kf) in
+      let z = Logic_const.tinteger 0 in
+      (* invalidate bindings to \result of the callee.
+         TODO: generate global variable to store the result if needed?
+      *)
+      let map = Cil_datatype.Term.Map.(singleton res (singleton z Unknown)) in
+      let args = bind map prms args in
       let init_states = extract_current_states state in
       let init_trans = make_start_transition kf init_states in
       let end_state = !compute_func I.stack (Kstmt s) kf init_trans in
diff --git a/src/plugins/aorai/aorai_utils.ml b/src/plugins/aorai/aorai_utils.ml
index 7f31429c31e..d1c5ef527a9 100644
--- a/src/plugins/aorai/aorai_utils.ml
+++ b/src/plugins/aorai/aorai_utils.ml
@@ -2200,6 +2200,8 @@ let treat_val loc base range pred =
       let max = Logic_const.prel (Rle, loc, add max) in
       Logic_const.pand (min,max)
     | Unbounded min -> Logic_const.prel (Rle, add_cst min, loc)
+    | Unknown -> Logic_const.ptrue (* nothing is known: the loc can
+                                      take any value from then on. *)
   in
   Aorai_option.debug ~dkey:action_dkey "Action predicate: %a"
     Printer.pp_predicate res;
diff --git a/src/plugins/aorai/data_for_aorai.ml b/src/plugins/aorai/data_for_aorai.ml
index 70b4551cbd7..b18b1886af1 100644
--- a/src/plugins/aorai/data_for_aorai.ml
+++ b/src/plugins/aorai/data_for_aorai.ml
@@ -1755,6 +1755,7 @@ type range =
                            *)
   | Unbounded of int (** only the lower bound is known,
                          there is no upper bound *)
+  | Unknown (** completely unknown value. *)
 
 module Range = Datatype.Make_with_collections
   (struct
@@ -1782,11 +1783,15 @@ module Range = Datatype.Make_with_collections
             | Bounded _, _ -> 1
             | _, Bounded _ -> -1
             | Unbounded c1, Unbounded c2 -> Datatype.Int.compare c1 c2
+            | Unbounded _, _ -> 1
+            | _, Unbounded _ -> -1
+            | Unknown, Unknown -> 0
       let hash = function
         | Fixed c1 -> 2 * c1
         | Interval(c1,c2) -> 3 * (c1 + c2)
         | Bounded (c1,c2) -> 5 * (c1 + Cil_datatype.Term.hash c2)
         | Unbounded c1 -> 7 * c1
+        | Unknown -> 11
       let copy = function
         | Fixed c1 ->
           Fixed (Datatype.Int.copy c1)
@@ -1795,6 +1800,7 @@ module Range = Datatype.Make_with_collections
         | Bounded(c1,c2) ->
           Bounded(Datatype.Int.copy c1, Cil_datatype.Term.copy c2)
         | Unbounded c1 -> Unbounded (Datatype.Int.copy c1)
+        | Unknown -> Unknown
       let internal_pretty_code _ = Datatype.from_pretty_code
       let pretty fmt = function
         | Fixed c1 -> Format.fprintf fmt "%d" c1
@@ -1804,6 +1810,7 @@ module Range = Datatype.Make_with_collections
           Format.fprintf fmt "@[<2>[%d..@;%a]@]" c1
             Cil_datatype.Term.pretty c2
         | Unbounded c1 -> Format.fprintf fmt "[%d..]" c1
+        | Unknown -> Format.fprintf fmt "[..]"
       let varname _ = "r"
       let mem_project = Datatype.never_any_project
    end)
@@ -1879,6 +1886,7 @@ let merge_range loc base r1 r2 =
       let min =
         if Datatype.Int.compare min2 min1 < 0 then min2 else min1
       in Unbounded min
+    | Unknown, _ | _, Unknown -> Unknown
 
 let tlval lv = Logic_const.term (TLval lv) (Cil.typeOfTermLval lv)
 
@@ -1900,6 +1908,8 @@ let included_range range1 range2 =
     | Bounded(l1,_), Unbounded l2 -> Datatype.Int.compare l1 l2 <= 0
     | Unbounded l1, Unbounded l2 -> Datatype.Int.compare l1 l2 <= 0
     | Unbounded _, (Fixed _ | Interval _ | Bounded _) -> false
+    | _, Unknown -> true
+    | Unknown, _ -> false
 
 let unchanged loc =
   Cil_datatype.Term.Map.add loc (Fixed 0) Cil_datatype.Term.Map.empty
diff --git a/src/plugins/aorai/data_for_aorai.mli b/src/plugins/aorai/data_for_aorai.mli
index 603579cd90d..71ecd72e175 100644
--- a/src/plugins/aorai/data_for_aorai.mli
+++ b/src/plugins/aorai/data_for_aorai.mli
@@ -301,6 +301,7 @@ type range =
     (** range bounded by a logic term (depending on program parameter). *)
   | Unbounded of int (** only the lower bound is known,
                          there is no upper bound *)
+  | Unknown (** completely unknown relation. *)
 
 module Range: Datatype.S_with_collections with type t = range
 
-- 
GitLab


From 8e67886ed13ae6eeddbc8dd753484234d0bd4183 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Thu, 21 Jan 2021 19:23:21 +0100
Subject: [PATCH 063/141] [aorai] update serial test to have more WP-friendly
 guards

---
 .../tests/ya/oracle_prove/serial.res.oracle   |  12 +-
 src/plugins/aorai/tests/ya/serial.c           |  20 ++-
 src/plugins/aorai/tests/ya/serial.ya          |   2 +-
 src/plugins/aorai/tests/ya/serial_wp.ya       | 159 ++++++++++++++++++
 4 files changed, 179 insertions(+), 14 deletions(-)
 create mode 100644 src/plugins/aorai/tests/ya/serial_wp.ya

diff --git a/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle
index a9b85468c53..23c84d0e899 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle
@@ -1,13 +1,9 @@
 [kernel] Parsing tests/ya/serial.c (with preprocessing)
-[aorai] tests/ya/serial.c:79: Warning: 
-  Call to output not conforming to automaton (post-cond). Assuming it is on a dead path
-[aorai] tests/ya/serial.c:25: Warning: 
-  Call to output not conforming to automaton (pre-cond). Assuming it is on a dead path
 [kernel] Parsing TMPDIR/aorai_serial_0.i (no preprocessing)
-[kernel:typing:implicit-function-declaration] TMPDIR/aorai_serial_0.i:98: Warning: 
+[kernel:typing:implicit-function-declaration] TMPDIR/aorai_serial_0.i:1359: Warning: 
   Calling undeclared function Frama_C_interval. Old style K&R code?
-[wp] Warning: Missing RTE guards
-[kernel:annot:missing-spec] TMPDIR/aorai_serial_0.i:125: Warning: 
+[kernel:annot:missing-spec] TMPDIR/aorai_serial_0.i:851: Warning: 
   Neither code nor specification for function Frama_C_interval, generating default assigns from the prototype
-[kernel:annot:missing-spec] TMPDIR/aorai_serial_0.i:125: Warning: 
+[kernel:annot:missing-spec] TMPDIR/aorai_serial_0.i:851: Warning: 
   Neither code nor specification for function Frama_C_show_aorai_state, generating default assigns from the prototype
+[wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/serial.c b/src/plugins/aorai/tests/ya/serial.c
index 7073942e7e1..3bf7ab6cfac 100644
--- a/src/plugins/aorai/tests/ya/serial.c
+++ b/src/plugins/aorai/tests/ya/serial.c
@@ -2,11 +2,21 @@
   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ -aorai-no-acceptance -aorai-instrumentation-history 2 -aorai-no-generate-annotations -aorai-no-generate-deterministic-lemmas -then-last -eva -eva-partition-value n -eva-ilevel 256
 */
 /* run.config_prove
-OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ -aorai-no-acceptance @PROVE_OPTIONS@
+OPT: -cpp-extra-args="-DFOR_WP" -aorai-automata @PTEST_DIR@/@PTEST_NAME@_wp.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ -aorai-no-acceptance @PROVE_OPTIONS@
 */
 
 #include "__fc_builtin.h"
 
+#ifndef FOR_WP
+#define BW_AND &
+#define BW_AND2 &
+#define BW_AND3 &
+#else
+#define BW_AND ==
+#define BW_AND2 >=
+#define BW_AND3 <=
+#endif
+
 /*@ assigns \result \from \nothing;
     ensures 0 <= \result < 0x100; */
 int input_status(void) {
@@ -29,8 +39,8 @@ int read(int *status)
 {
   int s = input_status();
 
-  if (s & 0x01) {
-    *status = s & 0x0e;
+  if (s BW_AND2 0x01) {
+    *status = s BW_AND 0x0e;
     return input_data();
   }
 
@@ -56,7 +66,7 @@ void main(void)
         n = 0;
         continue;
       }
-      if (data & 0x80) { // status received
+      if (data BW_AND3 0x80) { // status received
         if (n != 0) { // but data was expected
           n = 0;
           continue;
@@ -72,7 +82,7 @@ void main(void)
       buffer[n++] = data;
 
       if (n == 5) { // the packet is completely read
-        if ((buffer[0] & 0x40) == 0) // it is a release action
+        if ((buffer[0] BW_AND 0x40) == 0) // it is a release action
         {
           int x = buffer[1] + 0x80 * buffer[2];
           int y = buffer[3] + 0x80 * buffer[4];
diff --git a/src/plugins/aorai/tests/ya/serial.ya b/src/plugins/aorai/tests/ya/serial.ya
index 9f995d7f19f..fed4f5cf370 100644
--- a/src/plugins/aorai/tests/ya/serial.ya
+++ b/src/plugins/aorai/tests/ya/serial.ya
@@ -7,7 +7,7 @@ $x2 : int;
 $y1 : int;
 $y2 : int;
 
-Error : { false } -> Error;
+Error : { true } -> Error;
 
 Wait1 :
   { CALL(input_status) } -> StatusReq1
diff --git a/src/plugins/aorai/tests/ya/serial_wp.ya b/src/plugins/aorai/tests/ya/serial_wp.ya
new file mode 100644
index 00000000000..a796279cdbd
--- /dev/null
+++ b/src/plugins/aorai/tests/ya/serial_wp.ya
@@ -0,0 +1,159 @@
+%init : Wait1;
+%deterministic;
+%observables: input_status, input_data, output;
+
+$x1 : int;
+$x2 : int;
+$y1 : int;
+$y2 : int;
+
+Error : { true } -> Error;
+
+Wait1 :
+  { CALL(input_status) } -> StatusReq1
+| { CALL(input_data) } -> Error
+| { CALL(output) } -> Error
+| other -> Wait1
+;
+
+Wait2 :
+  { CALL(input_status) } -> StatusReq2
+| { CALL(input_data) } -> Error
+| { CALL(output) } -> Error
+| other -> Wait2
+;
+
+Wait3 :
+  { CALL(input_status) } -> StatusReq3
+| { CALL(input_data) } -> Error
+| { CALL(output) } -> Error
+| other -> Wait3
+;
+
+Wait4 :
+  { CALL(input_status) } -> StatusReq4
+| { CALL(input_data) } -> Error
+| { CALL(output) } -> Error
+| other -> Wait4
+;
+
+Wait5 :
+  { CALL(input_status) } -> StatusReq5
+| { CALL(input_data) } -> Error
+| { CALL(output) } -> Error
+| other -> Wait5
+;
+
+StatusReq1 :
+  { input_status().\result < 1 } -> Wait1
+| { input_status().\result == 14 } -> StatusOk1
+| other -> StatusError
+;
+
+StatusReq2 :
+  { input_status().\result < 1 } -> Wait2
+| { input_status().\result == 14 } -> StatusOk2
+| other -> StatusError
+;
+
+StatusReq3 :
+  { input_status().\result < 1 } -> Wait3
+| { input_status().\result == 14 } -> StatusOk3
+| other -> StatusError
+;
+
+StatusReq4 :
+  { input_status().\result < 1 } -> Wait4
+| { input_status().\result == 14 } -> StatusOk4
+| other -> StatusError
+;
+
+StatusReq5 :
+  { input_status().\result < 1 } -> Wait5
+| { input_status().\result == 14 } -> StatusOk5
+| other -> StatusError
+;
+
+StatusError :
+  { CALL(input_status) } -> StatusReq1
+| { CALL(input_data) } -> DataReqE
+| { CALL(output) } -> Error
+| other -> StatusError
+;
+
+StatusOk1 :
+  { CALL(input_status) } -> StatusReq1
+| { CALL(input_data) } -> DataReq1
+| { CALL(output) } -> Error
+| other -> StatusOk1
+;
+
+StatusOk2 :
+  { CALL(input_status) } -> StatusReq2
+| { CALL(input_data) } -> DataReq2
+| { CALL(output) } -> Error
+| other -> StatusOk2
+;
+
+StatusOk3 :
+  { CALL(input_status) } -> StatusReq3
+| { CALL(input_data) } -> DataReq3
+| { CALL(output) } -> Error
+| other -> StatusOk3
+;
+
+StatusOk4 :
+  { CALL(input_status) } -> StatusReq4
+| { CALL(input_data) } -> DataReq4
+| { CALL(output) } -> Error
+| other -> StatusOk4
+;
+
+StatusOk5 :
+  { CALL(input_status) } -> StatusReq5
+| { CALL(input_data) } -> DataReq5
+| { CALL(output) } -> Error
+| other -> StatusOk5
+;
+
+DataReqE :
+  { RETURN(input_data) } -> Wait1
+;
+
+DataReq1 :
+  { input_data().\result <= 128 && input_data().\result != 64 } -> Wait2
+| { input_data().\result == 64 } -> Wait1
+| { input_data().\result > 128 } -> Wait1
+;
+
+DataReq2 :
+  { input_data().\result <= 128 && input_data().\result != 64 } -> Wait2
+| { input_data().\result == 64 } -> Wait1
+| { input_data().\result > 128 } $x1 := \result; -> Wait3
+;
+
+DataReq3 :
+  { input_data().\result <= 128 && input_data().\result != 64 } -> Wait2
+| { input_data().\result == 64 } -> Wait1
+| { input_data().\result > 128 } $x2 := \result; -> Wait4
+;
+
+DataReq4 :
+  { input_data().\result <= 128 && input_data().\result != 64 } -> Wait2
+| { input_data().\result == 64 } -> Wait1
+| { input_data().\result > 128 } $y1 := \result; -> Wait5
+;
+
+DataReq5 :
+  { input_data().\result <= 128 && input_data().\result != 64 } -> Wait2
+| { input_data().\result == 64 } -> Wait1
+| { input_data().\result > 128 } $y2 := \result; -> Complete
+;
+
+Complete :
+  { CALL(output) && output().x == $x1 + 128 * $x2 && output().y == $y1 + 128 * $y2 } -> Wait1
+| { CALL(output) && (output().x != $x1 + 128 * $x2 || output().y != $y1 + 128 * $y2) } -> Error
+| { CALL(input_status) } -> StatusReq1
+| { CALL(input_data) } -> Error
+| other -> Complete
+;
-- 
GitLab


From 92480bd598f863d9e960f04fa4a45940522a52d2 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Fri, 22 Jan 2021 09:55:36 +0100
Subject: [PATCH 064/141] [aorai] fixes assigns in test serial.c

---
 src/plugins/aorai/tests/ya/serial.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/plugins/aorai/tests/ya/serial.c b/src/plugins/aorai/tests/ya/serial.c
index 3bf7ab6cfac..98795b7b3d5 100644
--- a/src/plugins/aorai/tests/ya/serial.c
+++ b/src/plugins/aorai/tests/ya/serial.c
@@ -17,13 +17,13 @@ OPT: -cpp-extra-args="-DFOR_WP" -aorai-automata @PTEST_DIR@/@PTEST_NAME@_wp.ya -
 #define BW_AND3 <=
 #endif
 
-/*@ assigns \result \from \nothing;
+/*@ assigns \result,Frama_C_entropy_source \from Frama_C_entropy_source;
     ensures 0 <= \result < 0x100; */
 int input_status(void) {
   return Frama_C_interval(0x00, 0xff);
 }
 
-/*@ assigns \result \from \nothing;
+/*@ assigns \result,Frama_C_entropy_source \from Frama_C_entropy_source;
     ensures 0 <= \result < 0x100; */
 int input_data(void) {
   return Frama_C_interval(0x00, 0xff);
-- 
GitLab


From 7d7027ce6e06f391612078d441b878dbd1558c20 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Fri, 22 Jan 2021 12:12:17 +0100
Subject: [PATCH 065/141] [aorai] fix pretty-printing of intermediate file in
 Aorai_test

---
 src/plugins/aorai/tests/Aorai_test.ml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/plugins/aorai/tests/Aorai_test.ml b/src/plugins/aorai/tests/Aorai_test.ml
index 54d04d63939..2e55921a891 100644
--- a/src/plugins/aorai/tests/Aorai_test.ml
+++ b/src/plugins/aorai/tests/Aorai_test.ml
@@ -92,7 +92,9 @@ let extend () =
       in
       let chan = open_out tmpfile in
       let fmt = Format.formatter_of_out_channel chan in
-      File.pretty_ast ~prj:(Project.from_unique_name "aorai") ~fmt ();
+      let aorai_prj = Project.from_unique_name "aorai" in
+      Project.on aorai_prj Kernel.PrintLibc.on ();
+      File.pretty_ast ~prj:aorai_prj ~fmt ();
       close_out chan;
       let selection =
         State_selection.of_list [ InternalWpShare.self; ProveAuxSpec.self ]
-- 
GitLab


From 5eff574f16124022c8048bf61d1e41f95c3c9926 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Fri, 22 Jan 2021 12:13:55 +0100
Subject: [PATCH 066/141] [aorai] moving back Error translation to initial
 guard in serial.ya

---
 .../aorai/tests/ya/oracle/serial.res.oracle   | 262 +++++++++++++++---
 .../tests/ya/oracle_prove/serial.res.oracle   |   6 +-
 src/plugins/aorai/tests/ya/serial.ya          |   2 +-
 src/plugins/aorai/tests/ya/serial_wp.ya       |   2 +-
 4 files changed, 227 insertions(+), 45 deletions(-)

diff --git a/src/plugins/aorai/tests/ya/oracle/serial.res.oracle b/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
index 6cc4d3484ec..668ee72c09b 100644
--- a/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
@@ -1,5 +1,5 @@
 [kernel] Parsing tests/ya/serial.c (with preprocessing)
-[kernel:annot:missing-spec] tests/ya/serial.c:43: Warning: 
+[kernel:annot:missing-spec] tests/ya/serial.c:56: Warning: 
   Neither code nor specification for function Frama_C_show_aorai_state, generating default assigns from the prototype
 [eva] Analyzing a complete application starting at main
 [eva] Computing initial state
@@ -18,36 +18,36 @@
   aorai_StatesHistory_1 ∈ {19}
   aorai_StatesHistory_2 ∈ {19}
 [eva] using specification for function Frama_C_interval
-[eva] tests/ya/serial.c:45: starting to merge loop iterations
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 100 states
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 300 states
-[aorai] tests/ya/serial.c:79: Wait1 <- Wait1 <- Complete
-[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [8192..16383]
-[aorai] tests/ya/serial.c:79: Error <- Error <- Complete
-[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [8192..16383]
-[aorai] tests/ya/serial.c:79: Complete <- Complete <- Complete
-[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [8192..16383]
-[aorai] tests/ya/serial.c:79: Wait1 <- Wait1 <- Complete
-[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [0..8191]
-[aorai] tests/ya/serial.c:79: Error <- Error <- Complete
-[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [0..8191]
-[aorai] tests/ya/serial.c:79: Complete <- Complete <- Complete
-[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [0..8191]
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 500 states
-[eva:alarm] tests/ya/serial.c:52: Warning: 
+[eva] tests/ya/serial.c:58: starting to merge loop iterations
+[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 100 states
+[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 300 states
+[aorai] tests/ya/serial.c:92: Wait1 <- Wait1 <- Complete
+[aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [8192..16383]
+[aorai] tests/ya/serial.c:92: Error <- Error <- Complete
+[aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [8192..16383]
+[aorai] tests/ya/serial.c:92: Complete <- Complete <- Complete
+[aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [8192..16383]
+[aorai] tests/ya/serial.c:92: Wait1 <- Wait1 <- Complete
+[aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [0..8191]
+[aorai] tests/ya/serial.c:92: Error <- Error <- Complete
+[aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [0..8191]
+[aorai] tests/ya/serial.c:92: Complete <- Complete <- Complete
+[aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [0..8191]
+[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 500 states
+[eva:alarm] tests/ya/serial.c:65: Warning: 
   accessing uninitialized left-value. assert \initialized(&status);
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 700 states
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 900 states
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1200 states
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1500 states
-[aorai] tests/ya/serial.c:79: Error <- Error <- Error
-[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [8192..16383]
-[aorai] tests/ya/serial.c:79: Error <- Error <- Error
-[aorai] tests/ya/serial.c:79: n in {5},x in [0..16383],y in [0..8191]
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1700 states
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 1900 states
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 2000 states
-[eva] tests/ya/serial.c:50: Trace partitioning superposing up to 2100 states
+[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 700 states
+[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 900 states
+[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 1200 states
+[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 1500 states
+[aorai] tests/ya/serial.c:92: Error <- Error <- Error
+[aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [8192..16383]
+[aorai] tests/ya/serial.c:92: Error <- Error <- Error
+[aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [0..8191]
+[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 1700 states
+[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 1900 states
+[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 2000 states
+[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 2100 states
 [eva] done for function main
 [eva] ====== VALUES COMPUTED ======
 [eva:final-states] Values at end of function input_data_post_func:
@@ -304,9 +304,8 @@
   100% of the logical properties reached have been proven.
   ----------------------------------------------------------------------------
 [kernel] Parsing TMPDIR/aorai_serial_0.i (no preprocessing)
-[kernel:typing:implicit-function-declaration] TMPDIR/aorai_serial_0.i:174: Warning: 
-  Calling undeclared function Frama_C_interval. Old style K&R code?
 /* Generated by Frama-C */
+typedef unsigned long size_t;
 enum aorai_States {
     aorai_reject_state = -2,
     Complete = 0,
@@ -345,6 +344,193 @@ enum aorai_OpStatusList {
 };
 /* compiler builtin: 
    void Frama_C_show_aorai_state(...);   */
+extern int volatile Frama_C_entropy_source __attribute__((__unused__));
+
+/*@ requires valid_p: \valid(p + (0 .. l - 1));
+    ensures initialization: \initialized(\old(p) + (0 .. \old(l) - 1));
+    assigns *(p + (0 .. l - 1)), Frama_C_entropy_source;
+    assigns *(p + (0 .. l - 1)) \from Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
+ */
+extern void Frama_C_make_unknown(char *p, size_t l);
+
+/*@ ensures result_a_or_b: \result ≡ \old(a) ∨ \result ≡ \old(b);
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from a, b, Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
+ */
+extern int Frama_C_nondet(int a, int b);
+
+/*@ ensures result_a_or_b: \result ≡ \old(a) ∨ \result ≡ \old(b);
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from a, b, Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
+ */
+extern void *Frama_C_nondet_ptr(void *a, void *b);
+
+/*@ requires order: min ≤ max;
+    ensures result_bounded: \old(min) ≤ \result ≤ \old(max);
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from min, max, Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
+ */
+extern int Frama_C_interval(int min, int max);
+
+/*@ requires order: min ≤ max;
+    ensures result_bounded: \old(min) ≤ \result ≤ \old(max);
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from min, max, Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
+ */
+extern int Frama_C_interval_split(int min, int max);
+
+/*@ requires order: min ≤ max;
+    ensures result_bounded: \old(min) ≤ \result ≤ \old(max);
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from min, max, Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
+ */
+extern unsigned char Frama_C_unsigned_char_interval(unsigned char min,
+                                                    unsigned char max);
+
+/*@ requires order: min ≤ max;
+    ensures result_bounded: \old(min) ≤ \result ≤ \old(max);
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from min, max, Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
+ */
+extern char Frama_C_char_interval(char min, char max);
+
+/*@ requires order: min ≤ max;
+    ensures result_bounded: \old(min) ≤ \result ≤ \old(max);
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from min, max, Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
+ */
+extern unsigned short Frama_C_unsigned_short_interval(unsigned short min,
+                                                      unsigned short max);
+
+/*@ requires order: min ≤ max;
+    ensures result_bounded: \old(min) ≤ \result ≤ \old(max);
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from min, max, Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
+ */
+extern short Frama_C_short_interval(short min, short max);
+
+/*@ requires order: min ≤ max;
+    ensures result_bounded: \old(min) ≤ \result ≤ \old(max);
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from min, max, Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
+ */
+extern unsigned int Frama_C_unsigned_int_interval(unsigned int min,
+                                                  unsigned int max);
+
+/*@ requires order: min ≤ max;
+    ensures result_bounded: \old(min) ≤ \result ≤ \old(max);
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from min, max, Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
+ */
+extern int Frama_C_int_interval(int min, int max);
+
+/*@ requires order: min ≤ max;
+    ensures result_bounded: \old(min) ≤ \result ≤ \old(max);
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from min, max, Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
+ */
+extern unsigned long Frama_C_unsigned_long_interval(unsigned long min,
+                                                    unsigned long max);
+
+/*@ requires order: min ≤ max;
+    ensures result_bounded: \old(min) ≤ \result ≤ \old(max);
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from min, max, Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
+ */
+extern long Frama_C_long_interval(long min, long max);
+
+/*@ requires order: min ≤ max;
+    ensures result_bounded: \old(min) ≤ \result ≤ \old(max);
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from min, max, Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
+ */
+extern unsigned long long Frama_C_unsigned_long_long_interval(unsigned long long min,
+                                                              unsigned long long max);
+
+/*@ requires order: min ≤ max;
+    ensures result_bounded: \old(min) ≤ \result ≤ \old(max);
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from min, max, Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
+ */
+extern long long Frama_C_long_long_interval(long long min, long long max);
+
+/*@ requires order: min ≤ max;
+    ensures result_bounded: \old(min) ≤ \result ≤ \old(max);
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from min, max, Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
+ */
+extern size_t Frama_C_size_t_interval(size_t min, size_t max);
+
+/*@ requires finite: \is_finite(min) ∧ \is_finite(max);
+    requires order: min ≤ max;
+    ensures
+      result_bounded:
+        \is_finite(\result) ∧ \old(min) ≤ \result ≤ \old(max);
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from min, max, Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
+ */
+extern float Frama_C_float_interval(float min, float max);
+
+/*@ requires finite: \is_finite(min) ∧ \is_finite(max);
+    requires order: min ≤ max;
+    ensures
+      result_bounded:
+        \is_finite(\result) ∧ \old(min) ≤ \result ≤ \old(max);
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from min, max, Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
+ */
+extern double Frama_C_double_interval(double min, double max);
+
+/*@ requires finite: \is_finite(min) ∧ \is_finite(max);
+    requires order: min ≤ max;
+    ensures
+      result_bounded:
+        \is_finite(\result) ∧ \old(min) ≤ \result ≤ \old(max);
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from min, max, Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
+ */
+extern double Frama_C_real_interval_as_double(double min, double max);
+
+/*@ terminates \false;
+    ensures never_terminates: \false;
+    assigns \nothing; */
+extern  __attribute__((__noreturn__)) void Frama_C_abort(void);
+
+/*@ assigns \result;
+    assigns \result \from p; */
+extern size_t Frama_C_offset(void const *p);
+
+/*@ assigns \result;
+    assigns \result \from i; */
+extern long long Frama_C_abstract_cardinal(long long i);
+
+/*@ assigns \result;
+    assigns \result \from i; */
+extern long long Frama_C_abstract_max(long long i);
+
+/*@ assigns \result;
+    assigns \result \from i; */
+extern long long Frama_C_abstract_min(long long i);
+
 int volatile indefinitely;
 int buffer[5];
 int n = 0;
@@ -445,11 +631,10 @@ int n = 0;
 
 */
 
-extern int ( /* missing proto */ Frama_C_interval)(int x_0, int x_1);
-
 /*@ ensures 0 ≤ \result < 0x100;
-    assigns \result;
-    assigns \result \from \nothing;
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
  */
 int input_status(void)
 {
@@ -555,8 +740,9 @@ int input_status(void)
 */
 
 /*@ ensures 0 ≤ \result < 0x100;
-    assigns \result;
-    assigns \result \from \nothing;
+    assigns \result, Frama_C_entropy_source;
+    assigns \result \from Frama_C_entropy_source;
+    assigns Frama_C_entropy_source \from Frama_C_entropy_source;
  */
 int input_data(void)
 {
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle
index 23c84d0e899..ea3fc004743 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle
@@ -1,9 +1,5 @@
 [kernel] Parsing tests/ya/serial.c (with preprocessing)
 [kernel] Parsing TMPDIR/aorai_serial_0.i (no preprocessing)
-[kernel:typing:implicit-function-declaration] TMPDIR/aorai_serial_0.i:1359: Warning: 
-  Calling undeclared function Frama_C_interval. Old style K&R code?
-[kernel:annot:missing-spec] TMPDIR/aorai_serial_0.i:851: Warning: 
-  Neither code nor specification for function Frama_C_interval, generating default assigns from the prototype
-[kernel:annot:missing-spec] TMPDIR/aorai_serial_0.i:851: Warning: 
+[kernel:annot:missing-spec] TMPDIR/aorai_serial_0.i:1036: Warning: 
   Neither code nor specification for function Frama_C_show_aorai_state, generating default assigns from the prototype
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/serial.ya b/src/plugins/aorai/tests/ya/serial.ya
index fed4f5cf370..6e893819100 100644
--- a/src/plugins/aorai/tests/ya/serial.ya
+++ b/src/plugins/aorai/tests/ya/serial.ya
@@ -7,7 +7,7 @@ $x2 : int;
 $y1 : int;
 $y2 : int;
 
-Error : { true } -> Error;
+Error : { 0 == 1 } -> Error;
 
 Wait1 :
   { CALL(input_status) } -> StatusReq1
diff --git a/src/plugins/aorai/tests/ya/serial_wp.ya b/src/plugins/aorai/tests/ya/serial_wp.ya
index a796279cdbd..e915c3cbbd9 100644
--- a/src/plugins/aorai/tests/ya/serial_wp.ya
+++ b/src/plugins/aorai/tests/ya/serial_wp.ya
@@ -7,7 +7,7 @@ $x2 : int;
 $y1 : int;
 $y2 : int;
 
-Error : { true } -> Error;
+Error : { 0 == 1 } -> Error;
 
 Wait1 :
   { CALL(input_status) } -> StatusReq1
-- 
GitLab


From 63ecb43d7d95fbe332497b71b4d9cc4e24bdd197 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Fri, 22 Jan 2021 15:35:51 +0100
Subject: [PATCH 067/141] [aorai] add an explicit rejecting state for
 deterministic automata

---
 src/plugins/aorai/aorai_utils.ml              |  16 +--
 src/plugins/aorai/data_for_aorai.ml           |  27 +++--
 src/plugins/aorai/data_for_aorai.mli          |   6 ++
 .../tests/ya/oracle/assigns.1.res.oracle      |  24 ++++-
 .../ya/oracle/declared_function.res.oracle    |  14 ++-
 .../tests/ya/oracle/deterministic.res.oracle  |  38 ++++++-
 .../aorai/tests/ya/oracle/formals.res.oracle  |   7 +-
 .../tests/ya/oracle/incorrect.res.oracle      |  14 ++-
 .../ya/oracle/metavariables-right.res.oracle  |  79 ++++++++++----
 .../tests/ya/oracle/monostate.res.oracle      |   5 +-
 .../aorai/tests/ya/oracle/saveload.res.1.log  |   4 +-
 .../aorai/tests/ya/oracle/serial.res.oracle   | 102 +++++++++---------
 .../oracle/singleassignment-right.res.oracle  |  18 +++-
 .../aorai/tests/ya/oracle/stack.res.oracle    |  54 +++++++---
 .../oracle_prove/declared_function.res.oracle |   2 +-
 .../ya/oracle_prove/incorrect.res.oracle      |   2 +-
 .../tests/ya/oracle_prove/serial.res.oracle   |   2 +-
 src/plugins/aorai/tests/ya/serial_wp.ya       |   2 +-
 18 files changed, 296 insertions(+), 120 deletions(-)

diff --git a/src/plugins/aorai/aorai_utils.ml b/src/plugins/aorai/aorai_utils.ml
index d1c5ef527a9..d2691257484 100644
--- a/src/plugins/aorai/aorai_utils.ml
+++ b/src/plugins/aorai/aorai_utils.ml
@@ -1073,18 +1073,6 @@ let make_enum_states () =
   let state_list =
     List.map (fun x -> (x.Promelaast.name, x.Promelaast.nums)) state_list
   in
-  let state_list =
-    if not (Aorai_option.Deterministic.get ()) then state_list
-    else
-      (*[VP] Strictly speaking this is not needed, but Jessie tends
-        to consider that a value of enum type can only be one of the
-        tags, so that we must add this dummy state that is always a
-        possible value, even when a contract concludes that curState
-        is none of the others. Note that ISO C does not impose this
-        limitation to values of enum types.
-      *)
-      (get_fresh "aorai_reject_state", -2)::state_list
-  in
   let enum = mk_global_c_enum_type_tagged states state_list in
   let mapping =
     List.map
@@ -2042,7 +2030,9 @@ let mk_deterministic_body generated_kf loc f st status res =
     List.fold_right
       (mk_deterministic_stmt generated_kf loc auto f st status res)
       states
-      ([], Cil_datatype.Varinfo.Set.empty, [],[])
+      ([], Cil_datatype.Varinfo.Set.empty, [],
+       (* if all else fails, go to reject state. *)
+       [is_state_det_stmt (Data_for_aorai.get_reject_state()) loc])
   in
   aux_funcs, aux_vars, aux_stmts @ trans_stmts
 
diff --git a/src/plugins/aorai/data_for_aorai.ml b/src/plugins/aorai/data_for_aorai.ml
index b18b1886af1..b1423f97bef 100644
--- a/src/plugins/aorai/data_for_aorai.ml
+++ b/src/plugins/aorai/data_for_aorai.ml
@@ -984,7 +984,7 @@ module Reject_state =
     (struct
         let name = "Data_for_aorai.Reject_state"
         let dependencies =
-          [ Ast.self; Aorai_option.Ltl_File.self; Aorai_option.Buchi.self;
+          [ Aorai_option.Ltl_File.self; Aorai_option.Buchi.self;
             Aorai_option.Ya.self]
      end)
 
@@ -992,6 +992,14 @@ let get_reject_state () =
   let create () = new_state "aorai_reject" in
   Reject_state.memo create
 
+let is_reject_state state =
+  match Reject_state.get_option () with
+      None -> false
+    | Some state' -> Aorai_state.equal state state'
+
+let has_reject_state () =
+  match Reject_state.get_option () with None -> false | Some _ -> true
+
 let add_if_needed states st =
   if List.for_all (fun x -> not (Aorai_state.equal x st)) states
   then st::states
@@ -1540,10 +1548,16 @@ let type_cond_auto auto =
           | _ -> (i+1,{ t with cross = cond; numt = i } :: l))
       (0,[]) trans
   in
+  let states =
+    if Aorai_option.Deterministic.get () then
+      add_if_needed states (get_reject_state())
+    else states
+  in
   let _, states =
     List.fold_left
       (fun (i,l as acc) s ->
         if
+          is_reject_state s ||
           List.exists
             (fun t -> t.start.nums = s.nums || t.stop.nums = s.nums)
             trans
@@ -1663,11 +1677,6 @@ let getObservablesFunctions () =
 let getIgnoredFunctions () =
   List.filter isDeclaredObservable !ignored_functions
 
-let is_reject_state state =
-  match Reject_state.get_option () with
-      None -> false
-    | Some state' -> Aorai_state.equal state state'
-
 (* ************************************************************************* *)
 (* Table giving the varinfo structure associated to a given variable name *)
 (* In practice it contains all variables (from promela and globals from C file) and only variables *)
@@ -2170,6 +2179,12 @@ let removeUnusedTransitionsAndStates () =
   let reached_states = Loop_invariant_state.fold reached reached_states in
   if Aorai_state.Set.is_empty reached_states then
     raise Empty_automaton;
+  let reached_states =
+    if Aorai_option.Deterministic.get() then
+      (* keep the rejecting state anyways. *)
+      Aorai_state.Set.add (get_reject_state()) reached_states
+    else reached_states
+  in
   (* Step 2 : computation of translation tables *)
   let state_list =
     List.sort
diff --git a/src/plugins/aorai/data_for_aorai.mli b/src/plugins/aorai/data_for_aorai.mli
index 71ecd72e175..b90f1272235 100644
--- a/src/plugins/aorai/data_for_aorai.mli
+++ b/src/plugins/aorai/data_for_aorai.mli
@@ -244,6 +244,12 @@ val getStateName : int -> string
     sequences. *)
 val is_reject_state: state -> bool
 
+(** [true] iff a rejecting state already exists. *)
+val has_reject_state: unit -> bool
+
+(** return the rejecting state of the graph, creating it if needed. *)
+val get_reject_state: unit -> state
+
 (** returns the transition having the corresponding id.
     @raise Not_found if this is not the case.
 *)
diff --git a/src/plugins/aorai/tests/ya/oracle/assigns.1.res.oracle b/src/plugins/aorai/tests/ya/oracle/assigns.1.res.oracle
index 067dda49b4d..5b81ca1fbe6 100644
--- a/src/plugins/aorai/tests/ya/oracle/assigns.1.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/assigns.1.res.oracle
@@ -2,12 +2,12 @@
 [kernel] Parsing TMPDIR/aorai_assigns_1.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_States {
-    aorai_reject_state = -2,
     S1 = 0,
     S2 = 1,
     S_in_f = 2,
     Sf = 3,
-    in_main = 4
+    aorai_reject = 4,
+    in_main = 5
 };
 enum aorai_ListOper {
     op_f = 1,
@@ -19,6 +19,8 @@ enum aorai_OpStatusList {
 };
 /*@ check lemma in_main_deterministic_trans{L}: \true;
  */
+/*@ check lemma aorai_reject_deterministic_trans{L}: \true;
+ */
 /*@ check lemma Sf_deterministic_trans{L}: \true;
  */
 /*@ check lemma S_in_f_deterministic_trans{L}: \true;
@@ -54,6 +56,9 @@ int X;
      behavior buch_state_Sf_out:
        ensures aorai_CurStates ≢ Sf;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_in_main_out:
        ensures aorai_CurStates ≢ in_main;
    @/
@@ -63,6 +68,7 @@ int X;
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_f;
     if (3 == aorai_CurStates) aorai_CurStates = S_in_f;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -86,6 +92,9 @@ int X;
      behavior buch_state_Sf_out:
        ensures aorai_CurStates ≢ Sf;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_in_main_in:
        assumes aorai_CurStates ≡ S_in_f;
        ensures aorai_CurStates ≡ in_main;
@@ -100,6 +109,7 @@ int X;
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_f;
     if (2 == aorai_CurStates) aorai_CurStates = in_main;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -141,6 +151,9 @@ void f(void)
        assumes aorai_CurStates ≢ S1;
        ensures aorai_CurStates ≢ Sf;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_in_main_out:
        ensures aorai_CurStates ≢ in_main;
    @/
@@ -150,6 +163,7 @@ void f(void)
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     if (0 == aorai_CurStates) aorai_CurStates = Sf;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -178,6 +192,9 @@ void f(void)
      behavior buch_state_Sf_out:
        ensures aorai_CurStates ≢ Sf;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_in_main_out:
        ensures aorai_CurStates ≢ in_main;
    @/
@@ -186,7 +203,8 @@ void f(void)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
-    if (4 == aorai_CurStates) aorai_CurStates = S2;
+    if (5 == aorai_CurStates) aorai_CurStates = S2;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
diff --git a/src/plugins/aorai/tests/ya/oracle/declared_function.res.oracle b/src/plugins/aorai/tests/ya/oracle/declared_function.res.oracle
index 038d8c1a870..0b0ae22a400 100644
--- a/src/plugins/aorai/tests/ya/oracle/declared_function.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/declared_function.res.oracle
@@ -2,8 +2,8 @@
 [kernel] Parsing TMPDIR/aorai_declared_function_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_States {
-    aorai_reject_state = -2,
-    I = 0
+    I = 0,
+    aorai_reject = 1
 };
 enum aorai_ListOper {
     op_f = 1,
@@ -13,6 +13,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
+/*@ check lemma aorai_reject_deterministic_trans{L}: \true;
+ */
 int f(void);
 
 /*@ ghost enum aorai_ListOper aorai_CurOperation; */
@@ -57,6 +59,9 @@ check lemma I_deterministic_trans{L}:
      behavior buch_state_I_out:
        assumes aorai_CurStates ≢ I;
        ensures aorai_CurStates ≢ I;
+     
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
    @/
   void main_pre_func(void)
   {
@@ -64,6 +69,7 @@ check lemma I_deterministic_trans{L}:
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     if (0 == aorai_CurStates) aorai_CurStates = I;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -82,6 +88,9 @@ check lemma I_deterministic_trans{L}:
      behavior buch_state_I_out:
        assumes aorai_CurStates ≢ I;
        ensures aorai_CurStates ≢ I;
+     
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
    @/
   void main_post_func(void)
   {
@@ -89,6 +98,7 @@ check lemma I_deterministic_trans{L}:
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     if (0 == aorai_CurStates) aorai_CurStates = I;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
diff --git a/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle b/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle
index 72d48028936..7982cfe7c16 100644
--- a/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle
@@ -2,7 +2,6 @@
 [kernel] Parsing TMPDIR/aorai_deterministic_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_States {
-    aorai_reject_state = -2,
     S0 = 0,
     S1 = 1,
     S2 = 2,
@@ -10,7 +9,8 @@ enum aorai_States {
     S4 = 4,
     S5 = 5,
     Sf = 6,
-    Si = 7
+    Si = 7,
+    aorai_reject = 8
 };
 enum aorai_ListOper {
     op_f = 3,
@@ -22,6 +22,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
+/*@ check lemma aorai_reject_deterministic_trans{L}: \true;
+ */
 /*@ check lemma Si_deterministic_trans{L}: \true;
  */
 /*@ check lemma Sf_deterministic_trans{L}: \true;
@@ -101,6 +103,9 @@ check lemma S0_deterministic_trans{L}:
      
      behavior buch_state_Si_out:
        ensures aorai_CurStates ≢ Si;
+     
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
    @/
   void g_pre_func(int x)
   {
@@ -110,6 +115,7 @@ check lemma S0_deterministic_trans{L}:
     if (3 == aorai_CurStates && x == 4) aorai_CurStates = S4;
     else 
       if (3 == aorai_CurStates && x == 5) aorai_CurStates = S5;
+      else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -154,6 +160,9 @@ check lemma S0_deterministic_trans{L}:
      
      behavior buch_state_Si_out:
        ensures aorai_CurStates ≢ Si;
+     
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
    @/
   void g_post_func(void)
   {
@@ -163,6 +172,7 @@ check lemma S0_deterministic_trans{L}:
     if (5 == aorai_CurStates) aorai_CurStates = S1;
     else 
       if (4 == aorai_CurStates) aorai_CurStates = S3;
+      else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -222,6 +232,9 @@ void g(int x)
      
      behavior buch_state_Si_out:
        ensures aorai_CurStates ≢ Si;
+     
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
    @/
   void f_pre_func(int x)
   {
@@ -229,6 +242,7 @@ void g(int x)
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_f;
     if (1 == aorai_CurStates && x == 4) aorai_CurStates = S3;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -269,6 +283,9 @@ void g(int x)
      
      behavior buch_state_Si_out:
        ensures aorai_CurStates ≢ Si;
+     
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
    @/
   void f_post_func(int res)
   {
@@ -276,6 +293,7 @@ void g(int x)
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_f;
     if (1 == aorai_CurStates && (res == 0 && X == 5)) aorai_CurStates = S2;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -341,6 +359,9 @@ int f(int x)
      
      behavior buch_state_Si_out:
        ensures aorai_CurStates ≢ Si;
+     
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
    @/
   void real_main_pre_func(int c)
   {
@@ -350,6 +371,7 @@ int f(int x)
     if (0 == aorai_CurStates && c != 0) aorai_CurStates = S1;
     else 
       if (0 == aorai_CurStates && c == 0) aorai_CurStates = S2;
+      else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -389,6 +411,9 @@ int f(int x)
      
      behavior buch_state_Si_out:
        ensures aorai_CurStates ≢ Si;
+     
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
    @/
   void real_main_post_func(int res)
   {
@@ -396,6 +421,7 @@ int f(int x)
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_real_main;
     if (2 == aorai_CurStates) aorai_CurStates = Sf;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -451,6 +477,9 @@ int real_main(int c)
      
      behavior buch_state_Si_out:
        ensures aorai_CurStates ≢ Si;
+     
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
    @/
   void main_pre_func(int c)
   {
@@ -458,6 +487,7 @@ int real_main(int c)
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     if (7 == aorai_CurStates) aorai_CurStates = S0;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -497,6 +527,9 @@ int real_main(int c)
      
      behavior buch_state_Si_out:
        ensures aorai_CurStates ≢ Si;
+     
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
    @/
   void main_post_func(int res)
   {
@@ -504,6 +537,7 @@ int real_main(int c)
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     if (6 == aorai_CurStates) aorai_CurStates = Sf;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
diff --git a/src/plugins/aorai/tests/ya/oracle/formals.res.oracle b/src/plugins/aorai/tests/ya/oracle/formals.res.oracle
index e93f5561f08..2d0f4d7bd8a 100644
--- a/src/plugins/aorai/tests/ya/oracle/formals.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/formals.res.oracle
@@ -2,7 +2,6 @@
 [kernel] Parsing TMPDIR/aorai_formals_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_States {
-    aorai_reject_state = -2,
     OK = 0,
     aorai_intermediate_state = 1,
     aorai_intermediate_state_0 = 2,
@@ -141,6 +140,7 @@ check lemma aorai_intermediate_state_deterministic_trans{L}:
         aorai_CurStates = aorai_intermediate_state_2;
         aorai_x_0 = x;
       }
+      else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -221,6 +221,7 @@ check lemma aorai_intermediate_state_deterministic_trans{L}:
         if (4 == aorai_CurStates && aorai_x_0 != 3) aorai_CurStates = aorai_reject;
         else 
           if (1 == aorai_CurStates && aorai_x != 1) aorai_CurStates = aorai_reject;
+          else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -355,6 +356,7 @@ int f(int x)
       }
       else 
         if (5 == aorai_CurStates) aorai_CurStates = aorai_reject;
+        else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -427,6 +429,7 @@ int f(int x)
         if (5 == aorai_CurStates) aorai_CurStates = aorai_reject;
         else 
           if (3 == aorai_CurStates && aorai_y != 2) aorai_CurStates = aorai_reject;
+          else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -509,6 +512,7 @@ int g(int y)
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     if (6 == aorai_CurStates) aorai_CurStates = main_0;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -562,6 +566,7 @@ int g(int y)
     if (0 == aorai_CurStates) aorai_CurStates = OK;
     else 
       if (5 == aorai_CurStates) aorai_CurStates = aorai_reject;
+      else aorai_CurStates = aorai_reject;
     return;
   }
 
diff --git a/src/plugins/aorai/tests/ya/oracle/incorrect.res.oracle b/src/plugins/aorai/tests/ya/oracle/incorrect.res.oracle
index 22596de4c18..7c674204cb3 100644
--- a/src/plugins/aorai/tests/ya/oracle/incorrect.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/incorrect.res.oracle
@@ -3,8 +3,8 @@
 [kernel] Parsing TMPDIR/aorai_incorrect_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_States {
-    aorai_reject_state = -2,
-    s0 = 0
+    aorai_reject = 0,
+    s0 = 1
 };
 enum aorai_ListOper {
     op_f = 1,
@@ -16,6 +16,8 @@ enum aorai_OpStatusList {
 };
 /*@ check lemma s0_deterministic_trans{L}: \true;
  */
+/*@ check lemma aorai_reject_deterministic_trans{L}: \true;
+ */
 int f(void);
 
 /*@ ghost enum aorai_ListOper aorai_CurOperation; */
@@ -27,6 +29,9 @@ int f(void);
      ensures aorai_CurOperation ≡ op_main;
      assigns aorai_CurOpStatus, aorai_CurOperation, aorai_CurStates;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_s0_out:
        ensures aorai_CurStates ≢ s0;
    @/
@@ -35,6 +40,7 @@ int f(void);
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
+    aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -46,6 +52,9 @@ int f(void);
      ensures aorai_CurOperation ≡ op_main;
      assigns aorai_CurOpStatus, aorai_CurOperation, aorai_CurStates;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_s0_out:
        ensures aorai_CurStates ≢ s0;
    @/
@@ -54,6 +63,7 @@ int f(void);
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
+    aorai_CurStates = aorai_reject;
     return;
   }
 
diff --git a/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle b/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle
index ee94f69b384..1ad02912fd1 100644
--- a/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle
@@ -2,16 +2,16 @@
 [kernel] Parsing TMPDIR/aorai_metavariables-right_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_States {
-    aorai_reject_state = -2,
     a = 0,
-    b = 1,
-    c = 2,
-    d = 3,
-    e = 4,
-    f_0 = 5,
-    g_0 = 6,
-    h_0 = 7,
-    i_0 = 8
+    aorai_reject = 1,
+    b = 2,
+    c = 3,
+    d = 4,
+    e = 5,
+    f_0 = 6,
+    g_0 = 7,
+    h_0 = 8,
+    i_0 = 9
 };
 enum aorai_ListOper {
     op_f = 4,
@@ -36,6 +36,8 @@ enum aorai_OpStatusList {
  */
 /*@ check lemma c_deterministic_trans{L}: \true;
  */
+/*@ check lemma aorai_reject_deterministic_trans{L}: \true;
+ */
 /*@ check lemma a_deterministic_trans{L}: \true;
  */
 /*@ ghost enum aorai_ListOper aorai_CurOperation; */
@@ -67,6 +69,9 @@ check lemma e_deterministic_trans{L}:
      behavior buch_state_a_out:
        ensures aorai_CurStates ≢ a;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_b_out:
        ensures aorai_CurStates ≢ b;
      
@@ -111,11 +116,12 @@ check lemma e_deterministic_trans{L}:
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_f;
-    if (1 == aorai_CurStates) {
+    if (2 == aorai_CurStates) {
       aorai_CurStates = c;
       aorai_x = x;
       aorai_y = aorai_x;
     }
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -130,6 +136,9 @@ check lemma e_deterministic_trans{L}:
      behavior buch_state_a_out:
        ensures aorai_CurStates ≢ a;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_b_out:
        ensures aorai_CurStates ≢ b;
      
@@ -164,7 +173,8 @@ check lemma e_deterministic_trans{L}:
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_f;
-    if (2 == aorai_CurStates) aorai_CurStates = e;
+    if (3 == aorai_CurStates) aorai_CurStates = e;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -197,6 +207,9 @@ void f(int x)
      behavior buch_state_a_out:
        ensures aorai_CurStates ≢ a;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_b_out:
        ensures aorai_CurStates ≢ b;
      
@@ -231,7 +244,8 @@ void f(int x)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_g;
-    if (1 == aorai_CurStates) aorai_CurStates = d;
+    if (2 == aorai_CurStates) aorai_CurStates = d;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -246,6 +260,9 @@ void f(int x)
      behavior buch_state_a_out:
        ensures aorai_CurStates ≢ a;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_b_out:
        ensures aorai_CurStates ≢ b;
      
@@ -280,7 +297,8 @@ void f(int x)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_g;
-    if (3 == aorai_CurStates) aorai_CurStates = g_0;
+    if (4 == aorai_CurStates) aorai_CurStates = g_0;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -308,6 +326,9 @@ void g(void)
      behavior buch_state_a_out:
        ensures aorai_CurStates ≢ a;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_b_out:
        ensures aorai_CurStates ≢ b;
      
@@ -342,7 +363,8 @@ void g(void)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_h;
-    if (4 == aorai_CurStates && aorai_x > 0) aorai_CurStates = f_0;
+    if (5 == aorai_CurStates && aorai_x > 0) aorai_CurStates = f_0;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -357,6 +379,9 @@ void g(void)
      behavior buch_state_a_out:
        ensures aorai_CurStates ≢ a;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_b_out:
        ensures aorai_CurStates ≢ b;
      
@@ -391,7 +416,8 @@ void g(void)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_h;
-    if (5 == aorai_CurStates) aorai_CurStates = g_0;
+    if (6 == aorai_CurStates) aorai_CurStates = g_0;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -419,6 +445,9 @@ void h(int x)
      behavior buch_state_a_out:
        ensures aorai_CurStates ≢ a;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_b_out:
        ensures aorai_CurStates ≢ b;
      
@@ -453,7 +482,8 @@ void h(int x)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_i;
-    if (6 == aorai_CurStates) aorai_CurStates = h_0;
+    if (7 == aorai_CurStates) aorai_CurStates = h_0;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -469,6 +499,9 @@ void h(int x)
      behavior buch_state_a_out:
        ensures aorai_CurStates ≢ a;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_b_out:
        ensures aorai_CurStates ≢ b;
      
@@ -513,11 +546,12 @@ void h(int x)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_i;
-    if (7 == aorai_CurStates) {
+    if (8 == aorai_CurStates) {
       aorai_CurStates = e;
       aorai_y = 0;
       aorai_x = 1;
     }
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -550,6 +584,9 @@ void i(void)
      behavior buch_state_a_out:
        ensures aorai_CurStates ≢ a;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_b_in:
        assumes aorai_CurStates ≡ a;
        ensures aorai_CurStates ≡ b;
@@ -585,6 +622,7 @@ void i(void)
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     if (0 == aorai_CurStates) aorai_CurStates = b;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -599,6 +637,9 @@ void i(void)
      behavior buch_state_a_out:
        ensures aorai_CurStates ≢ a;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_b_out:
        ensures aorai_CurStates ≢ b;
      
@@ -633,7 +674,8 @@ void i(void)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
-    if (4 == aorai_CurStates) aorai_CurStates = i_0;
+    if (5 == aorai_CurStates) aorai_CurStates = i_0;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -663,6 +705,7 @@ void main(int t)
   /*@ ghost aorai_Loop_Init_15 = 1; */
   aorai_loop_15:
   /*@ loop invariant Aorai: aorai_CurStates ≢ a;
+      loop invariant Aorai: aorai_CurStates ≢ aorai_reject;
       loop invariant Aorai: aorai_CurStates ≢ b;
       loop invariant Aorai: aorai_CurStates ≢ c;
       loop invariant Aorai: aorai_CurStates ≢ d;
diff --git a/src/plugins/aorai/tests/ya/oracle/monostate.res.oracle b/src/plugins/aorai/tests/ya/oracle/monostate.res.oracle
index 984890928fa..9ee345cafbf 100644
--- a/src/plugins/aorai/tests/ya/oracle/monostate.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/monostate.res.oracle
@@ -5,7 +5,6 @@
 [kernel] Parsing TMPDIR/aorai_monostate_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_States {
-    aorai_reject_state = -2,
     Init = 0,
     aorai_intermediate_state = 1,
     aorai_reject = 2
@@ -69,6 +68,7 @@ check lemma Init_deterministic_trans{L}:
     if (2 == aorai_CurStates) aorai_CurStates = aorai_reject;
     else 
       if (1 == aorai_CurStates) aorai_CurStates = aorai_reject;
+      else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -100,6 +100,7 @@ check lemma Init_deterministic_trans{L}:
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_f;
     if (2 == aorai_CurStates) aorai_CurStates = aorai_reject;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -143,6 +144,7 @@ void f(void)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
+    aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -168,6 +170,7 @@ void f(void)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
+    aorai_CurStates = aorai_reject;
     return;
   }
 
diff --git a/src/plugins/aorai/tests/ya/oracle/saveload.res.1.log b/src/plugins/aorai/tests/ya/oracle/saveload.res.1.log
index 7c430b30808..8c7beb3ffd1 100644
--- a/src/plugins/aorai/tests/ya/oracle/saveload.res.1.log
+++ b/src/plugins/aorai/tests/ya/oracle/saveload.res.1.log
@@ -6,7 +6,7 @@
 [eva:initial-state] Values of globals at initialization
   aorai_CurOperation ∈ {0}
   aorai_CurOpStatus ∈ {0}
-  aorai_CurStates ∈ {1}
+  aorai_CurStates ∈ {2}
 [aorai] tests/ya/saveload.i:14: accept
 [eva] done for function main
 [eva] ====== VALUES COMPUTED ======
@@ -38,7 +38,7 @@
 [eva:summary] ====== ANALYSIS SUMMARY ======
   ----------------------------------------------------------------------------
   6 functions analyzed (out of 6): 100% coverage.
-  In these functions, 31 statements reached (out of 31): 100% coverage.
+  In these functions, 31 statements reached (out of 35): 88% coverage.
   ----------------------------------------------------------------------------
   Some errors and warnings have been raised during the analysis:
     by the Eva analyzer:      0 errors    0 warnings
diff --git a/src/plugins/aorai/tests/ya/oracle/serial.res.oracle b/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
index 668ee72c09b..2692e58379b 100644
--- a/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
@@ -21,17 +21,17 @@
 [eva] tests/ya/serial.c:58: starting to merge loop iterations
 [eva] tests/ya/serial.c:63: Trace partitioning superposing up to 100 states
 [eva] tests/ya/serial.c:63: Trace partitioning superposing up to 300 states
-[aorai] tests/ya/serial.c:92: Wait1 <- Wait1 <- Complete
-[aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [8192..16383]
-[aorai] tests/ya/serial.c:92: Error <- Error <- Complete
+[aorai] tests/ya/serial.c:92: aorai_reject <- aorai_reject <- Complete
 [aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [8192..16383]
-[aorai] tests/ya/serial.c:92: Complete <- Complete <- Complete
+[aorai] tests/ya/serial.c:92: aorai_reject <- Error <- Complete
 [aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [8192..16383]
 [aorai] tests/ya/serial.c:92: Wait1 <- Wait1 <- Complete
+[aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [8192..16383]
+[aorai] tests/ya/serial.c:92: aorai_reject <- aorai_reject <- Complete
 [aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [0..8191]
-[aorai] tests/ya/serial.c:92: Error <- Error <- Complete
+[aorai] tests/ya/serial.c:92: aorai_reject <- Error <- Complete
 [aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [0..8191]
-[aorai] tests/ya/serial.c:92: Complete <- Complete <- Complete
+[aorai] tests/ya/serial.c:92: Wait1 <- Wait1 <- Complete
 [aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [0..8191]
 [eva] tests/ya/serial.c:63: Trace partitioning superposing up to 500 states
 [eva:alarm] tests/ya/serial.c:65: Warning: 
@@ -39,15 +39,15 @@
 [eva] tests/ya/serial.c:63: Trace partitioning superposing up to 700 states
 [eva] tests/ya/serial.c:63: Trace partitioning superposing up to 900 states
 [eva] tests/ya/serial.c:63: Trace partitioning superposing up to 1200 states
-[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 1500 states
-[aorai] tests/ya/serial.c:92: Error <- Error <- Error
+[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 1400 states
+[aorai] tests/ya/serial.c:92: aorai_reject <- aorai_reject <- aorai_reject
 [aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [8192..16383]
-[aorai] tests/ya/serial.c:92: Error <- Error <- Error
+[aorai] tests/ya/serial.c:92: aorai_reject <- aorai_reject <- aorai_reject
 [aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [0..8191]
+[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 1500 states
+[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 1600 states
 [eva] tests/ya/serial.c:63: Trace partitioning superposing up to 1700 states
-[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 1900 states
-[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 2000 states
-[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 2100 states
+[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 1800 states
 [eva] done for function main
 [eva] ====== VALUES COMPUTED ======
 [eva:final-states] Values at end of function input_data_post_func:
@@ -84,15 +84,15 @@
   aorai_y2 ∈ [0..2147483647]
   aorai_CurOperation ∈ {2}
   aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {0; 7; 19; 20; 21; 22; 23}
-  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 7}
-  aorai_StatesHistory_2 ∈ {7; 8; 9; 10; 11; 12; 13}
+  aorai_CurStates ∈ {0; 19; 20; 21; 22; 23; 24}
+  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 24}
+  aorai_StatesHistory_2 ∈ {8; 9; 10; 11; 12; 13; 24}
 [eva:final-states] Values at end of function input_data_pre_func:
   aorai_CurOperation ∈ {2}
   aorai_CurOpStatus ∈ {0}
-  aorai_CurStates ∈ {1; 2; 3; 4; 5; 6; 7}
-  aorai_StatesHistory_1 ∈ {7; 8; 9; 10; 11; 12; 13}
-  aorai_StatesHistory_2 ∈ {7; 14; 15; 16; 17; 18}
+  aorai_CurStates ∈ {1; 2; 3; 4; 5; 6; 24}
+  aorai_StatesHistory_1 ∈ {8; 9; 10; 11; 12; 13; 24}
+  aorai_StatesHistory_2 ∈ {14; 15; 16; 17; 18; 24}
 [eva:final-states] Values at end of function input_data:
   Frama_C_entropy_source ∈ [--..--]
   aorai_x1 ∈
@@ -128,46 +128,46 @@
   aorai_y2 ∈ [0..2147483647]
   aorai_CurOperation ∈ {2}
   aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {0; 7; 19; 20; 21; 22; 23}
-  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 7}
-  aorai_StatesHistory_2 ∈ {7; 8; 9; 10; 11; 12; 13}
+  aorai_CurStates ∈ {0; 19; 20; 21; 22; 23; 24}
+  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 24}
+  aorai_StatesHistory_2 ∈ {8; 9; 10; 11; 12; 13; 24}
 [eva:final-states] Values at end of function input_status_post_func:
   aorai_CurOperation ∈ {1}
   aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {7; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
-  aorai_StatesHistory_1 ∈ {7; 14; 15; 16; 17; 18}
-  aorai_StatesHistory_2 ∈ {0; 7; 19; 20; 21; 22; 23}
+  aorai_CurStates ∈ {8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23; 24}
+  aorai_StatesHistory_1 ∈ {14; 15; 16; 17; 18; 24}
+  aorai_StatesHistory_2 ∈ {0; 19; 20; 21; 22; 23; 24}
 [eva:final-states] Values at end of function input_status_pre_func:
   aorai_CurOperation ∈ {1}
   aorai_CurOpStatus ∈ {0}
-  aorai_CurStates ∈ {7; 14; 15; 16; 17; 18}
-  aorai_StatesHistory_1 ∈ {0; 7; 19; 20; 21; 22; 23}
-  aorai_StatesHistory_2 ∈ {0; 1; 2; 3; 4; 5; 6; 7; 14; 15; 16; 17; 18; 19}
+  aorai_CurStates ∈ {14; 15; 16; 17; 18; 24}
+  aorai_StatesHistory_1 ∈ {0; 19; 20; 21; 22; 23; 24}
+  aorai_StatesHistory_2 ∈ {1; 2; 3; 4; 5; 6; 7; 14; 15; 16; 17; 18; 19; 24}
 [eva:final-states] Values at end of function input_status:
   Frama_C_entropy_source ∈ [--..--]
   aorai_CurOperation ∈ {1}
   aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {7; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
-  aorai_StatesHistory_1 ∈ {7; 14; 15; 16; 17; 18}
-  aorai_StatesHistory_2 ∈ {0; 7; 19; 20; 21; 22; 23}
+  aorai_CurStates ∈ {8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23; 24}
+  aorai_StatesHistory_1 ∈ {14; 15; 16; 17; 18; 24}
+  aorai_StatesHistory_2 ∈ {0; 19; 20; 21; 22; 23; 24}
 [eva:final-states] Values at end of function output_post_func:
   aorai_CurOperation ∈ {0}
   aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {0; 7; 19}
-  aorai_StatesHistory_1 ∈ {0; 7; 19}
-  aorai_StatesHistory_2 ∈ {0; 7}
+  aorai_CurStates ∈ {19; 24}
+  aorai_StatesHistory_1 ∈ {7; 19; 24}
+  aorai_StatesHistory_2 ∈ {0; 24}
 [eva:final-states] Values at end of function output_pre_func:
   aorai_CurOperation ∈ {0}
   aorai_CurOpStatus ∈ {0}
-  aorai_CurStates ∈ {0; 7; 19}
-  aorai_StatesHistory_1 ∈ {0; 7}
-  aorai_StatesHistory_2 ∈ {5; 7}
+  aorai_CurStates ∈ {7; 19; 24}
+  aorai_StatesHistory_1 ∈ {0; 24}
+  aorai_StatesHistory_2 ∈ {5; 24}
 [eva:final-states] Values at end of function output:
   aorai_CurOperation ∈ {0}
   aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {0; 7; 19}
-  aorai_StatesHistory_1 ∈ {0; 7; 19}
-  aorai_StatesHistory_2 ∈ {0; 7}
+  aorai_CurStates ∈ {19; 24}
+  aorai_StatesHistory_1 ∈ {7; 19; 24}
+  aorai_StatesHistory_2 ∈ {0; 24}
 [eva:final-states] Values at end of function read:
   Frama_C_entropy_source ∈ [--..--]
   s ∈
@@ -223,9 +223,9 @@
   aorai_y2 ∈ [0..2147483647]
   aorai_CurOperation ∈ {1; 2}
   aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {0; 7; 19; 20; 21; 22; 23}
-  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 7; 14; 15; 16; 17; 18}
-  aorai_StatesHistory_2 ∈ {0; 7; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
+  aorai_CurStates ∈ {0; 19; 20; 21; 22; 23; 24}
+  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 14; 15; 16; 17; 18; 24}
+  aorai_StatesHistory_2 ∈ {0; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23; 24}
 [eva:final-states] Values at end of function main:
   Frama_C_entropy_source ∈ [--..--]
   buffer[0] ∈
@@ -283,13 +283,13 @@
   aorai_y2 ∈ [0..2147483647]
   aorai_CurOperation ∈ {0; 1; 2}
   aorai_CurOpStatus ∈ {0; 1}
-  aorai_CurStates ∈ {0; 7; 19; 20; 21; 22; 23}
-  aorai_StatesHistory_1 ∈ {0; 1; 2; 3; 4; 5; 6; 7; 14; 15; 16; 17; 18; 19}
-  aorai_StatesHistory_2 ∈ {0; 7; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
+  aorai_CurStates ∈ {0; 19; 20; 21; 22; 23; 24}
+  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 7; 14; 15; 16; 17; 18; 19; 24}
+  aorai_StatesHistory_2 ∈ {0; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23; 24}
 [eva:summary] ====== ANALYSIS SUMMARY ======
   ----------------------------------------------------------------------------
   11 functions analyzed (out of 11): 100% coverage.
-  In these functions, 216 statements reached (out of 255): 84% coverage.
+  In these functions, 222 statements reached (out of 261): 85% coverage.
   ----------------------------------------------------------------------------
   Some errors and warnings have been raised during the analysis:
     by the Eva analyzer:      0 errors    0 warnings
@@ -307,7 +307,6 @@
 /* Generated by Frama-C */
 typedef unsigned long size_t;
 enum aorai_States {
-    aorai_reject_state = -2,
     Complete = 0,
     DataReq1 = 1,
     DataReq2 = 2,
@@ -331,7 +330,8 @@ enum aorai_States {
     Wait2 = 20,
     Wait3 = 21,
     Wait4 = 22,
-    Wait5 = 23
+    Wait5 = 23,
+    aorai_reject = 24
 };
 enum aorai_ListOper {
     op_input_data = 2,
@@ -574,6 +574,7 @@ int n = 0;
                         if (23 == aorai_CurStates) aorai_CurStates = StatusReq5;
                         else 
                           if (13 == aorai_CurStates) aorai_CurStates = StatusReq5;
+                          else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -626,6 +627,7 @@ int n = 0;
                               else 
                                 if (18 == aorai_CurStates && (res & 1) == 0) 
                                   aorai_CurStates = Wait5;
+                                else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -674,6 +676,7 @@ int input_status(void)
                       if (20 == aorai_CurStates) aorai_CurStates = Error;
                       else 
                         if (19 == aorai_CurStates) aorai_CurStates = Error;
+                        else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -734,6 +737,7 @@ int input_status(void)
                                     aorai_CurStates = Wait5;
                                     aorai_y1 = res;
                                   }
+                                  else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -794,6 +798,7 @@ int input_data(void)
                                                          y == aorai_y1 + 
                                                               128 * aorai_y2)) 
                               aorai_CurStates = Wait1;
+                            else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -808,6 +813,7 @@ int input_data(void)
     aorai_StatesHistory_2 = aorai_StatesHistory_1;
     aorai_StatesHistory_1 = aorai_CurStates;
     if (19 == aorai_CurStates) aorai_CurStates = Wait1;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
diff --git a/src/plugins/aorai/tests/ya/oracle/singleassignment-right.res.oracle b/src/plugins/aorai/tests/ya/oracle/singleassignment-right.res.oracle
index 311412524b5..067d521b934 100644
--- a/src/plugins/aorai/tests/ya/oracle/singleassignment-right.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/singleassignment-right.res.oracle
@@ -2,10 +2,10 @@
 [kernel] Parsing TMPDIR/aorai_singleassignment-right_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_States {
-    aorai_reject_state = -2,
     a = 0,
-    b = 1,
-    c = 2
+    aorai_reject = 1,
+    b = 2,
+    c = 3
 };
 enum aorai_ListOper {
     op_main = 0
@@ -18,6 +18,8 @@ enum aorai_OpStatusList {
  */
 /*@ check lemma b_deterministic_trans{L}: \true;
  */
+/*@ check lemma aorai_reject_deterministic_trans{L}: \true;
+ */
 /*@ check lemma a_deterministic_trans{L}: \true;
  */
 /*@ ghost enum aorai_ListOper aorai_CurOperation; */
@@ -35,6 +37,9 @@ enum aorai_OpStatusList {
      behavior buch_state_a_out:
        ensures aorai_CurStates ≢ a;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_b_in_0:
        assumes aorai_CurStates ≡ a;
        ensures aorai_CurStates ≡ b;
@@ -66,6 +71,7 @@ enum aorai_OpStatusList {
       aorai_x = *x;
       aorai_y = *y;
     }
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -81,6 +87,9 @@ enum aorai_OpStatusList {
      behavior buch_state_a_out:
        ensures aorai_CurStates ≢ a;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_b_out:
        ensures aorai_CurStates ≢ b;
      
@@ -107,11 +116,12 @@ enum aorai_OpStatusList {
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
-    if (1 == aorai_CurStates) {
+    if (2 == aorai_CurStates) {
       aorai_CurStates = c;
       aorai_x = aorai_y;
       aorai_y = aorai_x;
     }
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
diff --git a/src/plugins/aorai/tests/ya/oracle/stack.res.oracle b/src/plugins/aorai/tests/ya/oracle/stack.res.oracle
index 7bb7948a156..1c87bd33576 100644
--- a/src/plugins/aorai/tests/ya/oracle/stack.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/stack.res.oracle
@@ -2,13 +2,13 @@
 [kernel] Parsing TMPDIR/aorai_stack_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_States {
-    aorai_reject_state = -2,
     accept = 0,
-    empty_stack = 1,
-    emptying_stack = 2,
-    filled_stack = 3,
-    filling_stack = 4,
-    init = 5
+    aorai_reject = 1,
+    empty_stack = 2,
+    emptying_stack = 3,
+    filled_stack = 4,
+    filling_stack = 5,
+    init = 6
 };
 enum aorai_ListOper {
     op_main = 2,
@@ -23,6 +23,8 @@ enum aorai_OpStatusList {
  */
 /*@ check lemma filling_stack_deterministic_trans{L}: \true;
  */
+/*@ check lemma aorai_reject_deterministic_trans{L}: \true;
+ */
 /*@ check lemma accept_deterministic_trans{L}: \true;
  */
 int g = 0;
@@ -61,6 +63,9 @@ check lemma emptying_stack_deterministic_trans{L}:
      behavior buch_state_accept_out:
        ensures aorai_CurStates ≢ accept;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_empty_stack_out:
        ensures aorai_CurStates ≢ empty_stack;
      
@@ -88,9 +93,10 @@ check lemma emptying_stack_deterministic_trans{L}:
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_push;
-    if (3 == aorai_CurStates) aorai_CurStates = filling_stack;
+    if (4 == aorai_CurStates) aorai_CurStates = filling_stack;
     else 
-      if (1 == aorai_CurStates) aorai_CurStates = filling_stack;
+      if (2 == aorai_CurStates) aorai_CurStates = filling_stack;
+      else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -105,6 +111,9 @@ check lemma emptying_stack_deterministic_trans{L}:
      behavior buch_state_accept_out:
        ensures aorai_CurStates ≢ accept;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_empty_stack_out:
        ensures aorai_CurStates ≢ empty_stack;
      
@@ -136,10 +145,11 @@ check lemma emptying_stack_deterministic_trans{L}:
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_push;
-    if (4 == aorai_CurStates) {
+    if (5 == aorai_CurStates) {
       aorai_CurStates = filled_stack;
       aorai_n ++;
     }
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -181,6 +191,9 @@ void push(void)
      behavior buch_state_accept_out:
        ensures aorai_CurStates ≢ accept;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_empty_stack_out:
        ensures aorai_CurStates ≢ empty_stack;
      
@@ -206,7 +219,8 @@ void push(void)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_pop;
-    if (3 == aorai_CurStates && aorai_n > 0) aorai_CurStates = emptying_stack;
+    if (4 == aorai_CurStates && aorai_n > 0) aorai_CurStates = emptying_stack;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -223,6 +237,9 @@ void push(void)
      behavior buch_state_accept_out:
        ensures aorai_CurStates ≢ accept;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_empty_stack_in_0:
        assumes aorai_CurStates ≡ emptying_stack ∧ aorai_n ≡ 1;
        ensures aorai_CurStates ≡ empty_stack;
@@ -260,15 +277,16 @@ void push(void)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_pop;
-    if (2 == aorai_CurStates && aorai_n == 1) {
+    if (3 == aorai_CurStates && aorai_n == 1) {
       aorai_CurStates = empty_stack;
       aorai_n --;
     }
     else 
-      if (2 == aorai_CurStates && aorai_n > 1) {
+      if (3 == aorai_CurStates && aorai_n > 1) {
         aorai_CurStates = filled_stack;
         aorai_n --;
       }
+      else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -310,6 +328,9 @@ void pop(void)
      behavior buch_state_accept_out:
        ensures aorai_CurStates ≢ accept;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_empty_stack_in_0:
        assumes aorai_CurStates ≡ init;
        ensures aorai_CurStates ≡ empty_stack;
@@ -340,10 +361,11 @@ void pop(void)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
-    if (5 == aorai_CurStates) {
+    if (6 == aorai_CurStates) {
       aorai_CurStates = empty_stack;
       aorai_n = 0;
     }
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
@@ -363,6 +385,9 @@ void pop(void)
        assumes aorai_CurStates ≢ empty_stack;
        ensures aorai_CurStates ≢ accept;
      
+     behavior buch_state_aorai_reject_out:
+       ensures aorai_CurStates ≢ aorai_reject;
+     
      behavior buch_state_empty_stack_out:
        ensures aorai_CurStates ≢ empty_stack;
      
@@ -383,7 +408,8 @@ void pop(void)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
-    if (1 == aorai_CurStates) aorai_CurStates = accept;
+    if (2 == aorai_CurStates) aorai_CurStates = accept;
+    else aorai_CurStates = aorai_reject;
     return;
   }
 
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/declared_function.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/declared_function.res.oracle
index dda7d91ed57..500161bb9b8 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/declared_function.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/declared_function.res.oracle
@@ -1,5 +1,5 @@
 [kernel] Parsing tests/ya/declared_function.i (no preprocessing)
 [kernel] Parsing TMPDIR/aorai_declared_function_0.i (no preprocessing)
-[kernel:annot:missing-spec] TMPDIR/aorai_declared_function_0.i:48: Warning: 
+[kernel:annot:missing-spec] TMPDIR/aorai_declared_function_0.i:50: Warning: 
   Neither code nor specification for function f, generating default assigns from the prototype
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/incorrect.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/incorrect.res.oracle
index b8e7296acf0..30ba0541d81 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/incorrect.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/incorrect.res.oracle
@@ -2,5 +2,5 @@
 [aorai] Warning: Call to main does not follow automaton's specification. This path is assumed to be dead
 [kernel] Parsing TMPDIR/aorai_incorrect_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
-[kernel:annot:missing-spec] TMPDIR/aorai_incorrect_0.i:63: Warning: 
+[kernel:annot:missing-spec] TMPDIR/aorai_incorrect_0.i:69: Warning: 
   Neither code nor specification for function f, generating default assigns from the prototype
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle
index ea3fc004743..2dd3de37879 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/serial.res.oracle
@@ -1,5 +1,5 @@
 [kernel] Parsing tests/ya/serial.c (with preprocessing)
 [kernel] Parsing TMPDIR/aorai_serial_0.i (no preprocessing)
-[kernel:annot:missing-spec] TMPDIR/aorai_serial_0.i:1036: Warning: 
+[kernel:annot:missing-spec] TMPDIR/aorai_serial_0.i:738: Warning: 
   Neither code nor specification for function Frama_C_show_aorai_state, generating default assigns from the prototype
 [wp] Warning: Missing RTE guards
diff --git a/src/plugins/aorai/tests/ya/serial_wp.ya b/src/plugins/aorai/tests/ya/serial_wp.ya
index e915c3cbbd9..1a28de31009 100644
--- a/src/plugins/aorai/tests/ya/serial_wp.ya
+++ b/src/plugins/aorai/tests/ya/serial_wp.ya
@@ -7,7 +7,7 @@ $x2 : int;
 $y1 : int;
 $y2 : int;
 
-Error : { 0 == 1 } -> Error;
+Error : { false } -> Error;
 
 Wait1 :
   { CALL(input_status) } -> StatusReq1
-- 
GitLab


From c20bbd8ff28c917a43ecfea2b4b8079270ab3677 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Fri, 22 Jan 2021 19:41:20 +0100
Subject: [PATCH 068/141] [aorai] add smoke tests asserting that there's always
 an active state

---
 src/plugins/aorai/aorai_option.ml             |   8 ++
 src/plugins/aorai/aorai_option.mli            |   7 ++
 src/plugins/aorai/aorai_utils.ml              |  27 ++++-
 .../aorai/tests/ya/oracle/serial.res.oracle   | 101 +++++++++---------
 src/plugins/aorai/tests/ya/serial.c           |   4 +-
 5 files changed, 91 insertions(+), 56 deletions(-)

diff --git a/src/plugins/aorai/aorai_option.ml b/src/plugins/aorai/aorai_option.ml
index 307652ff225..90946d86242 100644
--- a/src/plugins/aorai/aorai_option.ml
+++ b/src/plugins/aorai/aorai_option.ml
@@ -150,6 +150,14 @@ module Deterministic=
       let default () = false
     end)
 
+module SmokeTests=
+  False
+    (struct
+      let option_name = "-aorai-smoke-tests"
+      let help = "Add assertion in the generated functions to ensure \
+                  that the automaton is always in at least one state"
+    end)
+
 module InstrumentationHistory =
   Int
     (struct
diff --git a/src/plugins/aorai/aorai_option.mli b/src/plugins/aorai/aorai_option.mli
index 633950adb90..b6b220f0fe3 100644
--- a/src/plugins/aorai/aorai_option.mli
+++ b/src/plugins/aorai/aorai_option.mli
@@ -39,6 +39,13 @@ module ConsiderAcceptance: Parameter_sig.Bool
 module AutomataSimplification: Parameter_sig.Bool
 module AddingOperationNameAndStatusInSpecification: Parameter_sig.Bool
 
+(** if [true], adds assertion at the end of the generated function
+    to check that the automaton is not in the rejecting state (in
+    the deterministic case), or that at least one non-rejecting state
+    is active (in the non-deterministic state).
+*)
+module SmokeTests: Parameter_sig.Bool
+
 (** [true] if the user declares that its ya automaton is deterministic. *)
 module Deterministic: State_builder.Ref with type data = bool
 
diff --git a/src/plugins/aorai/aorai_utils.ml b/src/plugins/aorai/aorai_utils.ml
index d2691257484..dd533767fdd 100644
--- a/src/plugins/aorai/aorai_utils.ml
+++ b/src/plugins/aorai/aorai_utils.ml
@@ -874,6 +874,24 @@ let is_out_of_state_exp state loc =
       (Cil.evar (Data_for_aorai.get_state_var state))
       (mk_int_exp 0)
 
+let assert_alive_automaton kf stmt =
+  let pred =
+    if Aorai_option.Deterministic.get() then
+      let reject_state = Data_for_aorai.get_reject_state() in
+      is_out_of_state_pred reject_state
+    else begin
+      let valid_states =
+        List.filter
+          (fun x -> not (Data_for_aorai.is_reject_state x))
+          (fst (Data_for_aorai.getGraph ()))
+      in
+      let valid_preds = List.map is_state_pred valid_states in
+      Logic_const.pors valid_preds
+    end
+  in
+  let pred = { pred with pred_name = "aorai_smoke_test" :: pred.pred_name } in
+  Annotations.add_assert Aorai_option.emitter ~kf stmt pred
+
 (* Utilities for other globals *)
 
 let mk_global_comment txt = add_global (GText (txt))
@@ -2126,10 +2144,15 @@ let auto_func_block generated_kf loc f st status res =
     else
       mk_non_deterministic_body generated_kf loc f st status res
   in
-  let ret = [ Cil.mkStmt ~ghost:true (Cil_types.Return(None,loc)) ] in
+  let ret =
+    Cil.mkStmt ~ghost:true ~valid_sid:true (Cil_types.Return(None,loc))
+  in
+  if Aorai_option.SmokeTests.get () then begin
+    assert_alive_automaton generated_kf ret;
+  end;
   let res_block =
     (Cil.mkBlock
-       ( stmt_begin_list @ stmt_history_update @ main_stmt @ ret))
+       ( stmt_begin_list @ stmt_history_update @ main_stmt @ [ret]))
   in
   res_block.blocals <- local_var;
   Aorai_option.debug ~dkey "Generated body is:@\n%a"
diff --git a/src/plugins/aorai/tests/ya/oracle/serial.res.oracle b/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
index 2692e58379b..dbf366abac3 100644
--- a/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
@@ -21,33 +21,20 @@
 [eva] tests/ya/serial.c:58: starting to merge loop iterations
 [eva] tests/ya/serial.c:63: Trace partitioning superposing up to 100 states
 [eva] tests/ya/serial.c:63: Trace partitioning superposing up to 300 states
-[aorai] tests/ya/serial.c:92: aorai_reject <- aorai_reject <- Complete
-[aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [8192..16383]
-[aorai] tests/ya/serial.c:92: aorai_reject <- Error <- Complete
-[aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [8192..16383]
+[eva:alarm] tests/ya/serial.c:33: Warning: 
+  assertion 'Aorai,aorai_smoke_test' got status invalid (stopping propagation).
 [aorai] tests/ya/serial.c:92: Wait1 <- Wait1 <- Complete
 [aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [8192..16383]
-[aorai] tests/ya/serial.c:92: aorai_reject <- aorai_reject <- Complete
-[aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [0..8191]
-[aorai] tests/ya/serial.c:92: aorai_reject <- Error <- Complete
-[aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [0..8191]
 [aorai] tests/ya/serial.c:92: Wait1 <- Wait1 <- Complete
 [aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [0..8191]
 [eva] tests/ya/serial.c:63: Trace partitioning superposing up to 500 states
-[eva:alarm] tests/ya/serial.c:65: Warning: 
-  accessing uninitialized left-value. assert \initialized(&status);
 [eva] tests/ya/serial.c:63: Trace partitioning superposing up to 700 states
 [eva] tests/ya/serial.c:63: Trace partitioning superposing up to 900 states
 [eva] tests/ya/serial.c:63: Trace partitioning superposing up to 1200 states
 [eva] tests/ya/serial.c:63: Trace partitioning superposing up to 1400 states
-[aorai] tests/ya/serial.c:92: aorai_reject <- aorai_reject <- aorai_reject
-[aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [8192..16383]
-[aorai] tests/ya/serial.c:92: aorai_reject <- aorai_reject <- aorai_reject
-[aorai] tests/ya/serial.c:92: n in {5},x in [0..16383],y in [0..8191]
 [eva] tests/ya/serial.c:63: Trace partitioning superposing up to 1500 states
 [eva] tests/ya/serial.c:63: Trace partitioning superposing up to 1600 states
 [eva] tests/ya/serial.c:63: Trace partitioning superposing up to 1700 states
-[eva] tests/ya/serial.c:63: Trace partitioning superposing up to 1800 states
 [eva] done for function main
 [eva] ====== VALUES COMPUTED ======
 [eva:final-states] Values at end of function input_data_post_func:
@@ -84,15 +71,15 @@
   aorai_y2 ∈ [0..2147483647]
   aorai_CurOperation ∈ {2}
   aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {0; 19; 20; 21; 22; 23; 24}
-  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 24}
-  aorai_StatesHistory_2 ∈ {8; 9; 10; 11; 12; 13; 24}
+  aorai_CurStates ∈ {0; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6}
+  aorai_StatesHistory_2 ∈ {8; 9; 10; 11; 12; 13}
 [eva:final-states] Values at end of function input_data_pre_func:
   aorai_CurOperation ∈ {2}
   aorai_CurOpStatus ∈ {0}
-  aorai_CurStates ∈ {1; 2; 3; 4; 5; 6; 24}
-  aorai_StatesHistory_1 ∈ {8; 9; 10; 11; 12; 13; 24}
-  aorai_StatesHistory_2 ∈ {14; 15; 16; 17; 18; 24}
+  aorai_CurStates ∈ {1; 2; 3; 4; 5; 6}
+  aorai_StatesHistory_1 ∈ {8; 9; 10; 11; 12; 13}
+  aorai_StatesHistory_2 ∈ {14; 15; 16; 17; 18}
 [eva:final-states] Values at end of function input_data:
   Frama_C_entropy_source ∈ [--..--]
   aorai_x1 ∈
@@ -128,46 +115,46 @@
   aorai_y2 ∈ [0..2147483647]
   aorai_CurOperation ∈ {2}
   aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {0; 19; 20; 21; 22; 23; 24}
-  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 24}
-  aorai_StatesHistory_2 ∈ {8; 9; 10; 11; 12; 13; 24}
+  aorai_CurStates ∈ {0; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6}
+  aorai_StatesHistory_2 ∈ {8; 9; 10; 11; 12; 13}
 [eva:final-states] Values at end of function input_status_post_func:
   aorai_CurOperation ∈ {1}
   aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23; 24}
-  aorai_StatesHistory_1 ∈ {14; 15; 16; 17; 18; 24}
-  aorai_StatesHistory_2 ∈ {0; 19; 20; 21; 22; 23; 24}
+  aorai_CurStates ∈ {8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_1 ∈ {14; 15; 16; 17; 18}
+  aorai_StatesHistory_2 ∈ {0; 19; 20; 21; 22; 23}
 [eva:final-states] Values at end of function input_status_pre_func:
   aorai_CurOperation ∈ {1}
   aorai_CurOpStatus ∈ {0}
-  aorai_CurStates ∈ {14; 15; 16; 17; 18; 24}
-  aorai_StatesHistory_1 ∈ {0; 19; 20; 21; 22; 23; 24}
-  aorai_StatesHistory_2 ∈ {1; 2; 3; 4; 5; 6; 7; 14; 15; 16; 17; 18; 19; 24}
+  aorai_CurStates ∈ {14; 15; 16; 17; 18}
+  aorai_StatesHistory_1 ∈ {0; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_2 ∈ {1; 2; 3; 4; 5; 6; 14; 15; 16; 17; 18; 19}
 [eva:final-states] Values at end of function input_status:
   Frama_C_entropy_source ∈ [--..--]
   aorai_CurOperation ∈ {1}
   aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23; 24}
-  aorai_StatesHistory_1 ∈ {14; 15; 16; 17; 18; 24}
-  aorai_StatesHistory_2 ∈ {0; 19; 20; 21; 22; 23; 24}
+  aorai_CurStates ∈ {8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_1 ∈ {14; 15; 16; 17; 18}
+  aorai_StatesHistory_2 ∈ {0; 19; 20; 21; 22; 23}
 [eva:final-states] Values at end of function output_post_func:
   aorai_CurOperation ∈ {0}
   aorai_CurOpStatus ∈ {1}
   aorai_CurStates ∈ {19; 24}
-  aorai_StatesHistory_1 ∈ {7; 19; 24}
-  aorai_StatesHistory_2 ∈ {0; 24}
+  aorai_StatesHistory_1 ∈ {7; 19}
+  aorai_StatesHistory_2 ∈ {0}
 [eva:final-states] Values at end of function output_pre_func:
   aorai_CurOperation ∈ {0}
   aorai_CurOpStatus ∈ {0}
   aorai_CurStates ∈ {7; 19; 24}
-  aorai_StatesHistory_1 ∈ {0; 24}
-  aorai_StatesHistory_2 ∈ {5; 24}
+  aorai_StatesHistory_1 ∈ {0}
+  aorai_StatesHistory_2 ∈ {5}
 [eva:final-states] Values at end of function output:
   aorai_CurOperation ∈ {0}
   aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {19; 24}
-  aorai_StatesHistory_1 ∈ {7; 19; 24}
-  aorai_StatesHistory_2 ∈ {0; 24}
+  aorai_CurStates ∈ {19}
+  aorai_StatesHistory_1 ∈ {19}
+  aorai_StatesHistory_2 ∈ {0}
 [eva:final-states] Values at end of function read:
   Frama_C_entropy_source ∈ [--..--]
   s ∈
@@ -223,9 +210,9 @@
   aorai_y2 ∈ [0..2147483647]
   aorai_CurOperation ∈ {1; 2}
   aorai_CurOpStatus ∈ {1}
-  aorai_CurStates ∈ {0; 19; 20; 21; 22; 23; 24}
-  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 14; 15; 16; 17; 18; 24}
-  aorai_StatesHistory_2 ∈ {0; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23; 24}
+  aorai_CurStates ∈ {0; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 14; 15; 16; 17; 18}
+  aorai_StatesHistory_2 ∈ {0; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
 [eva:final-states] Values at end of function main:
   Frama_C_entropy_source ∈ [--..--]
   buffer[0] ∈
@@ -283,25 +270,24 @@
   aorai_y2 ∈ [0..2147483647]
   aorai_CurOperation ∈ {0; 1; 2}
   aorai_CurOpStatus ∈ {0; 1}
-  aorai_CurStates ∈ {0; 19; 20; 21; 22; 23; 24}
-  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 7; 14; 15; 16; 17; 18; 19; 24}
-  aorai_StatesHistory_2 ∈ {0; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23; 24}
+  aorai_CurStates ∈ {0; 19; 20; 21; 22; 23}
+  aorai_StatesHistory_1 ∈ {1; 2; 3; 4; 5; 6; 14; 15; 16; 17; 18; 19}
+  aorai_StatesHistory_2 ∈ {0; 8; 9; 10; 11; 12; 13; 19; 20; 21; 22; 23}
 [eva:summary] ====== ANALYSIS SUMMARY ======
   ----------------------------------------------------------------------------
   11 functions analyzed (out of 11): 100% coverage.
-  In these functions, 222 statements reached (out of 261): 85% coverage.
+  In these functions, 206 statements reached (out of 261): 78% coverage.
   ----------------------------------------------------------------------------
   Some errors and warnings have been raised during the analysis:
     by the Eva analyzer:      0 errors    0 warnings
     by the Frama-C kernel:    0 errors    1 warning
   ----------------------------------------------------------------------------
-  1 alarm generated by the analysis:
-       1 access to uninitialized left-values
+  0 alarms generated by the analysis.
   ----------------------------------------------------------------------------
   Evaluation of the logical properties reached by the analysis:
-    Assertions        0 valid     0 unknown     0 invalid      0 total
+    Assertions        4 valid     2 unknown     0 invalid      6 total
     Preconditions     2 valid     0 unknown     0 invalid      2 total
-  100% of the logical properties reached have been proven.
+  75% of the logical properties reached have been proven.
   ----------------------------------------------------------------------------
 [kernel] Parsing TMPDIR/aorai_serial_0.i (no preprocessing)
 /* Generated by Frama-C */
@@ -575,6 +561,8 @@ int n = 0;
                         else 
                           if (13 == aorai_CurStates) aorai_CurStates = StatusReq5;
                           else aorai_CurStates = aorai_reject;
+    /@ assert Aorai: aorai_smoke_test: aorai_CurStates ≢ aorai_reject; @/
+    ;
     return;
   }
 
@@ -628,6 +616,8 @@ int n = 0;
                                 if (18 == aorai_CurStates && (res & 1) == 0) 
                                   aorai_CurStates = Wait5;
                                 else aorai_CurStates = aorai_reject;
+    /@ assert Aorai: aorai_smoke_test: aorai_CurStates ≢ aorai_reject; @/
+    ;
     return;
   }
 
@@ -677,6 +667,8 @@ int input_status(void)
                       else 
                         if (19 == aorai_CurStates) aorai_CurStates = Error;
                         else aorai_CurStates = aorai_reject;
+    /@ assert Aorai: aorai_smoke_test: aorai_CurStates ≢ aorai_reject; @/
+    ;
     return;
   }
 
@@ -738,6 +730,8 @@ int input_status(void)
                                     aorai_y1 = res;
                                   }
                                   else aorai_CurStates = aorai_reject;
+    /@ assert Aorai: aorai_smoke_test: aorai_CurStates ≢ aorai_reject; @/
+    ;
     return;
   }
 
@@ -799,6 +793,8 @@ int input_data(void)
                                                               128 * aorai_y2)) 
                               aorai_CurStates = Wait1;
                             else aorai_CurStates = aorai_reject;
+    /@ assert Aorai: aorai_smoke_test: aorai_CurStates ≢ aorai_reject; @/
+    ;
     return;
   }
 
@@ -814,6 +810,8 @@ int input_data(void)
     aorai_StatesHistory_1 = aorai_CurStates;
     if (19 == aorai_CurStates) aorai_CurStates = Wait1;
     else aorai_CurStates = aorai_reject;
+    /@ assert Aorai: aorai_smoke_test: aorai_CurStates ≢ aorai_reject; @/
+    ;
     return;
   }
 
@@ -851,7 +849,6 @@ void main(void)
     int data = read(& status);
     if (data != -1) {
       int tmp_0;
-      /*@ assert Eva: initialization: \initialized(&status); */ ;
       if (status != 0) {
         n = 0;
         continue;
diff --git a/src/plugins/aorai/tests/ya/serial.c b/src/plugins/aorai/tests/ya/serial.c
index 98795b7b3d5..9efe13a270b 100644
--- a/src/plugins/aorai/tests/ya/serial.c
+++ b/src/plugins/aorai/tests/ya/serial.c
@@ -1,8 +1,8 @@
 /* run.config
-  OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ -aorai-no-acceptance -aorai-instrumentation-history 2 -aorai-no-generate-annotations -aorai-no-generate-deterministic-lemmas -then-last -eva -eva-partition-value n -eva-ilevel 256
+  OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-smoke-tests -aorai-test-number @PTEST_NUMBER@ -aorai-no-acceptance -aorai-instrumentation-history 2 -aorai-no-generate-annotations -aorai-no-generate-deterministic-lemmas -then-last -eva -eva-partition-value n -eva-ilevel 256
 */
 /* run.config_prove
-OPT: -cpp-extra-args="-DFOR_WP" -aorai-automata @PTEST_DIR@/@PTEST_NAME@_wp.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ -aorai-no-acceptance @PROVE_OPTIONS@
+OPT: -cpp-extra-args="-DFOR_WP" -aorai-automata @PTEST_DIR@/@PTEST_NAME@_wp.ya -load-module tests/Aorai_test.cmxs  -aorai-smoke-tests -aorai-test-number @PTEST_NUMBER@ -aorai-no-acceptance @PROVE_OPTIONS@
 */
 
 #include "__fc_builtin.h"
-- 
GitLab


From 117c1abc464c995df2320554a5f3902cb4de5fcb Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Fri, 29 Jan 2021 13:33:20 +0100
Subject: [PATCH 069/141] [kernel] Allow iterating over Properties in a fixed
 order

---
 src/kernel_services/ast_data/property_status.ml  |  3 ++-
 src/kernel_services/ast_data/property_status.mli | 15 ++++++++++++---
 2 files changed, 14 insertions(+), 4 deletions(-)

diff --git a/src/kernel_services/ast_data/property_status.ml b/src/kernel_services/ast_data/property_status.ml
index 807c37dc474..82c81ac995e 100644
--- a/src/kernel_services/ast_data/property_status.ml
+++ b/src/kernel_services/ast_data/property_status.ml
@@ -182,9 +182,10 @@ let fold_on_statuses f ip acc =
     Emitter_with_properties.Hashtbl.fold f h acc
   with Not_found -> acc
 
-
 let iter f = Status.iter (fun p _ -> f p)
 let fold f = Status.fold (fun p _ -> f p)
+let iter_sorted ~cmp f = Status.iter_sorted ~cmp (fun p _ -> f p)
+let fold_sorted ~cmp f = Status.fold_sorted ~cmp (fun p _ -> f p)
 
 (* ok to be computed once right now since there is no parameter dependency *)
 let usable_kernel_emitter = Emitter.get Emitter.kernel
diff --git a/src/kernel_services/ast_data/property_status.mli b/src/kernel_services/ast_data/property_status.mli
index 5656c38152b..94f0418c371 100644
--- a/src/kernel_services/ast_data/property_status.mli
+++ b/src/kernel_services/ast_data/property_status.mli
@@ -124,6 +124,9 @@ val get: Property.t -> status
     Consider using {!Property_status.Consolidation.get} if you want to know the
     consolidated status of the property. *)
 
+(** Iteration on all the individual statuses emitted for the given property.
+    @since Aluminium-20160501 *)
+
 val iter_on_statuses:
   (emitter_with_properties -> emitted_status -> unit) -> Property.t -> unit
 
@@ -131,8 +134,6 @@ val fold_on_statuses:
   (emitter_with_properties -> emitted_status -> 'a -> 'a) ->
   Property.t ->
   'a -> 'a
-(** Iteration on all the individual statuses emitted for the given property.
-    @since Aluminium-20160501 *)
 
 (* ************************************************************************ *)
 (** {2 Consolidated status} *)
@@ -232,12 +233,20 @@ module Consolidation_graph: sig
 end
   
 (* ************************************************************************* *)
-(** {2 Access to the registered properties} *)
+(** {2 Iteration over the registered properties} *)
 (* ************************************************************************* *)
 
 val iter: (Property.t -> unit) -> unit
 val fold: (Property.t -> 'a -> 'a) -> 'a -> 'a
 
+(** @since Frama-C+dev *)
+val iter_sorted:
+  cmp:(Property.t -> Property.t -> int) -> (Property.t -> unit) -> unit
+
+val fold_sorted:
+  cmp:(Property.t -> Property.t -> int) ->
+  (Property.t -> 'a -> 'a) -> 'a -> 'a
+
 (* ************************************************************************* *)
 (** {2 API not for casual users} *)
 (* ************************************************************************* *)
-- 
GitLab


From 9440af4b9bdb32c19670572663bb9da2aafceff2 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Fri, 29 Jan 2021 16:09:11 +0100
Subject: [PATCH 070/141] [kernel] propose alternative ordering for identified
 properties

---
 src/kernel_services/ast_data/property.ml  | 399 ++++++++++++++--------
 src/kernel_services/ast_data/property.mli |  12 +
 2 files changed, 278 insertions(+), 133 deletions(-)

diff --git a/src/kernel_services/ast_data/property.ml b/src/kernel_services/ast_data/property.ml
index 2be8813645a..53209718642 100644
--- a/src/kernel_services/ast_data/property.ml
+++ b/src/kernel_services/ast_data/property.ml
@@ -412,6 +412,141 @@ let rec has_status = function
 (* -------------------------------------------------------------------------- *)
 (* --- Datatype                                                           --- *)
 (* -------------------------------------------------------------------------- *)
+let pp_active fmt active =
+  let sep = ref false in
+  let print_one a =
+    Format.fprintf fmt "%s%s" (if !sep then ", " else "") a;
+    sep:=true
+  in
+  Datatype.String.Set.iter print_one active
+
+let rec pretty_ip fmt = function
+  | IPPredicate {ip_kind; ip_pred} ->
+    Format.fprintf fmt "%a@ %a"
+      pretty_predicate_kind ip_kind
+      Cil_printer.pp_identified_predicate ip_pred
+  | IPExtended {ie_ext} -> Cil_printer.pp_extended fmt ie_ext
+  | IPAxiom {il_name} -> Format.fprintf fmt "axiom@ %s" il_name
+  | IPAxiomatic {iax_name} -> Format.fprintf fmt "axiomatic@ %s" iax_name
+  | IPLemma {il_name} -> Format.fprintf fmt "lemma@ %s" il_name
+  | IPTypeInvariant {iti_name; iti_type} ->
+    Format.fprintf fmt "invariant@ %s for type %a" iti_name
+      Cil_printer.pp_typ iti_type
+  | IPGlobalInvariant {igi_name} ->
+    Format.fprintf fmt "global invariant@ %s" igi_name
+  | IPBehavior {ib_bhv; ib_kinstr; ib_active} ->
+    if Cil.is_default_behavior ib_bhv then
+      Format.pp_print_string fmt "default behavior"
+    else
+      Format.fprintf fmt "behavior %s" ib_bhv.b_name;
+    (match ib_kinstr with
+     | Kstmt s -> Format.fprintf fmt " for statement %d" s.sid
+     | Kglobal -> ());
+    pp_active fmt ib_active
+  | IPCodeAnnot {ica_ca} -> Cil_printer.pp_code_annotation fmt ica_ca
+  | IPComplete {ic_active; ic_bhvs} ->
+    Format.fprintf fmt "complete@ %a"
+      (Pretty_utils.pp_iter ~sep:","
+         Datatype.String.Set.iter
+         (fun fmt s -> Format.fprintf fmt "@ %s" s))
+      ic_bhvs;
+    pp_active fmt ic_active
+  | IPDisjoint {ic_active; ic_bhvs} ->
+    Format.fprintf fmt "disjoint@ %a"
+      (Pretty_utils.pp_iter ~sep:","
+         Datatype.String.Set.iter
+         (fun fmt s -> Format.fprintf fmt "@ %s" s))
+      ic_bhvs;
+    pp_active fmt ic_active
+  | IPAllocation {ial_allocs=(f,a)} ->
+    Cil_printer.pp_allocation fmt (FreeAlloc(f,a))
+  | IPAssigns {ias_froms} -> Cil_printer.pp_assigns fmt (Writes ias_froms)
+  | IPFrom {if_from} -> Cil_printer.pp_from fmt if_from
+  | IPDecrease {id_ca=None; id_variant=v} -> Cil_printer.pp_decreases fmt v
+  | IPDecrease {id_variant=v} -> Cil_printer.pp_variant fmt v
+  | IPReachable {ir_kf=None; ir_kinstr=Kstmt _} ->  assert false
+  | IPReachable {ir_kf=None; ir_kinstr=Kglobal} ->
+    Format.fprintf fmt "reachability of entry point"
+  | IPReachable {ir_kf=Some kf; ir_kinstr=Kglobal} ->
+    Format.fprintf fmt "reachability of function %a" Kf.pretty kf
+  | IPReachable {ir_kf=Some kf; ir_kinstr=Kstmt stmt; ir_program_point=ba} ->
+    Format.fprintf fmt "reachability %s stmt %a in %a"
+      (match ba with Before -> "of" | After -> "post")
+      Cil_datatype.Location.pretty_line (Cil_datatype.Stmt.loc stmt)
+      Kf.pretty kf
+  | IPPropertyInstance {ii_kf; ii_stmt; ii_ip} ->
+    Format.fprintf fmt "status of '%a'%t %a"
+      pretty_ip ii_ip
+      (fun fmt -> match get_kf ii_ip with
+         | Some kf -> Format.fprintf fmt " of %a" Kernel_function.pretty kf
+         | None -> ())
+      pretty_instance_location (ii_kf, ii_stmt)
+  | IPOther {io_name} -> Format.pp_print_string fmt io_name
+
+let rec hash_ip =
+  let hash_bhv_loop = function
+    | Id_contract (a,b) -> (0, Hashtbl.hash (a,b.b_name))
+    | Id_loop ca -> (1, ca.annot_id)
+  in
+  function
+  | IPPredicate {ip_pred=x} -> Hashtbl.hash (1, x.ip_id)
+  | IPAxiom {il_name=x} -> Hashtbl.hash (2, (x:string))
+  | IPAxiomatic {iax_name=x} -> Hashtbl.hash (3, (x:string))
+  | IPLemma {il_name=x} -> Hashtbl.hash (4, (x:string))
+  | IPCodeAnnot {ica_ca=ca} -> Hashtbl.hash (5, ca.annot_id)
+  | IPComplete {ic_kf=f; ic_kinstr=ki; ic_bhvs=y; ic_active=x} ->
+    (* complete list is more likely to discriminate than active list. *)
+    Hashtbl.hash
+      (6, Kf.hash f, Kinstr.hash ki,
+       Datatype.String.Set.hash y, Datatype.String.Set.hash x)
+  | IPDisjoint {ic_kf=f; ic_kinstr=ki; ic_bhvs=y; ic_active=x} ->
+    Hashtbl.hash
+      (7, Kf.hash f, Kinstr.hash ki,
+       Datatype.String.Set.hash y, Datatype.String.Set.hash x)
+  | IPAssigns {ias_kf=f; ias_kinstr=ki; ias_bhv=b} ->
+    Hashtbl.hash (8, Kf.hash f, Kinstr.hash ki, hash_bhv_loop b)
+  | IPFrom {if_kf=kf; if_kinstr=ki; if_bhv=b; if_from=(t, _)} ->
+    Hashtbl.hash
+      (9, Kf.hash kf, Kinstr.hash ki,
+       hash_bhv_loop b, Identified_term.hash t)
+  | IPDecrease {id_kf=kf; id_kinstr=ki} ->
+    (* At most one loop variant per statement anyway, no
+       need to discriminate against the code annotation itself *)
+    Hashtbl.hash (10, Kf.hash kf, Kinstr.hash ki)
+  | IPBehavior {ib_kf=kf; ib_kinstr=s; ib_active=a; ib_bhv=b} ->
+    Hashtbl.hash
+      (11, Kf.hash kf, Kinstr.hash s,
+       (b.b_name:string), (a:Datatype.String.Set.t))
+  | IPReachable {ir_kf=kf; ir_kinstr=ki; ir_program_point=ba} ->
+    Hashtbl.hash(12, Option.fold ~some:Kf.hash ~none:0 kf,
+                 Kinstr.hash ki, Hashtbl.hash ba)
+  | IPAllocation {ial_kf=f; ial_kinstr=ki; ial_bhv=b} ->
+    Hashtbl.hash (13, Kf.hash f, Kinstr.hash ki, hash_bhv_loop b)
+  | IPPropertyInstance {ii_kf=kf_caller; ii_stmt=stmt; ii_ip=ip} ->
+    Hashtbl.hash (14, Kf.hash kf_caller,
+                  Stmt.hash stmt, hash_ip ip)
+  | IPOther {io_name=s} -> Hashtbl.hash (15, (s:string))
+  | IPTypeInvariant {iti_name=s} -> Hashtbl.hash (16, (s:string))
+  | IPGlobalInvariant {igi_name=s} -> Hashtbl.hash (17, (s:string))
+  | IPExtended {ie_ext={ext_id}} -> Hashtbl.hash (18, ext_id)
+
+let reprs = [
+  IPAxiom {
+    il_name="";il_labels=[];il_args=[];
+    il_pred=Logic_const.(toplevel_predicate ptrue);
+    il_attrs=[];
+    il_loc=Location.unknown
+  }]
+
+let compare_behavior_or_loop b1 b2 =
+  match b1, b2 with
+  | Id_contract (a1,b1), Id_contract (a2,b2) ->
+    let n = Datatype.String.compare b1.b_name b2.b_name in
+    if n = 0 then Datatype.String.Set.compare a1 a2 else n
+  | Id_loop ca1, Id_loop ca2 ->
+    Datatype.Int.compare ca1.annot_id ca2.annot_id
+  | Id_contract _, Id_loop _ -> -1
+  | Id_loop _, Id_contract _ -> 1
 
 include Datatype.Make_with_collections
     (struct
@@ -420,133 +555,14 @@ include Datatype.Make_with_collections
 
       type t = identified_property
       let name = "Property.t"
-      let reprs = [
-        IPAxiom {
-          il_name="";il_labels=[];il_args=[];
-          il_pred=Logic_const.(toplevel_predicate ptrue);
-          il_attrs=[];
-          il_loc=Location.unknown
-        }]
+
+      let reprs = reprs
 
       let mem_project = Datatype.never_any_project
 
-      let pp_active fmt active =
-        let sep = ref false in
-        let print_one a =
-          Format.fprintf fmt "%s%s" (if !sep then ", " else "") a;
-          sep:=true
-        in
-        Datatype.String.Set.iter print_one active
-
-      let rec pretty fmt = function
-        | IPPredicate {ip_kind; ip_pred} ->
-          Format.fprintf fmt "%a@ %a"
-            pretty_predicate_kind ip_kind
-            Cil_printer.pp_identified_predicate ip_pred
-        | IPExtended {ie_ext} -> Cil_printer.pp_extended fmt ie_ext
-        | IPAxiom {il_name} -> Format.fprintf fmt "axiom@ %s" il_name
-        | IPAxiomatic {iax_name} -> Format.fprintf fmt "axiomatic@ %s" iax_name
-        | IPLemma {il_name} -> Format.fprintf fmt "lemma@ %s" il_name
-        | IPTypeInvariant {iti_name; iti_type} ->
-          Format.fprintf fmt "invariant@ %s for type %a" iti_name
-            Cil_printer.pp_typ iti_type
-        | IPGlobalInvariant {igi_name} ->
-          Format.fprintf fmt "global invariant@ %s" igi_name
-        | IPBehavior {ib_bhv; ib_kinstr; ib_active} ->
-          if Cil.is_default_behavior ib_bhv then
-            Format.pp_print_string fmt "default behavior"
-          else
-            Format.fprintf fmt "behavior %s" ib_bhv.b_name;
-          (match ib_kinstr with
-           | Kstmt s -> Format.fprintf fmt " for statement %d" s.sid
-           | Kglobal -> ());
-          pp_active fmt ib_active
-        | IPCodeAnnot {ica_ca} -> Cil_printer.pp_code_annotation fmt ica_ca
-        | IPComplete {ic_active; ic_bhvs} ->
-          Format.fprintf fmt "complete@ %a"
-            (Pretty_utils.pp_iter ~sep:","
-               Datatype.String.Set.iter
-               (fun fmt s -> Format.fprintf fmt "@ %s" s))
-            ic_bhvs;
-          pp_active fmt ic_active
-        | IPDisjoint {ic_active; ic_bhvs} ->
-          Format.fprintf fmt "disjoint@ %a"
-            (Pretty_utils.pp_iter ~sep:","
-               Datatype.String.Set.iter
-               (fun fmt s -> Format.fprintf fmt "@ %s" s))
-            ic_bhvs;
-          pp_active fmt ic_active
-        | IPAllocation {ial_allocs=(f,a)} ->
-          Cil_printer.pp_allocation fmt (FreeAlloc(f,a))
-        | IPAssigns {ias_froms} -> Cil_printer.pp_assigns fmt (Writes ias_froms)
-        | IPFrom {if_from} -> Cil_printer.pp_from fmt if_from
-        | IPDecrease {id_ca=None; id_variant=v} -> Cil_printer.pp_decreases fmt v
-        | IPDecrease {id_variant=v} -> Cil_printer.pp_variant fmt v
-        | IPReachable {ir_kf=None; ir_kinstr=Kstmt _} ->  assert false
-        | IPReachable {ir_kf=None; ir_kinstr=Kglobal} ->
-          Format.fprintf fmt "reachability of entry point"
-        | IPReachable {ir_kf=Some kf; ir_kinstr=Kglobal} ->
-          Format.fprintf fmt "reachability of function %a" Kf.pretty kf
-        | IPReachable {ir_kf=Some kf; ir_kinstr=Kstmt stmt; ir_program_point=ba} ->
-          Format.fprintf fmt "reachability %s stmt %a in %a"
-            (match ba with Before -> "of" | After -> "post")
-            Cil_datatype.Location.pretty_line (Cil_datatype.Stmt.loc stmt)
-            Kf.pretty kf
-        | IPPropertyInstance {ii_kf; ii_stmt; ii_ip} ->
-          Format.fprintf fmt "status of '%a'%t %a"
-            pretty ii_ip
-            (fun fmt -> match get_kf ii_ip with
-               | Some kf -> Format.fprintf fmt " of %a" Kernel_function.pretty kf
-               | None -> ())
-            pretty_instance_location (ii_kf, ii_stmt)
-        | IPOther {io_name} -> Format.pp_print_string fmt io_name
-
-      let rec hash =
-        let hash_bhv_loop = function
-          | Id_contract (a,b) -> (0, Hashtbl.hash (a,b.b_name))
-          | Id_loop ca -> (1, ca.annot_id)
-        in
-        function
-        | IPPredicate {ip_pred=x} -> Hashtbl.hash (1, x.ip_id)
-        | IPAxiom {il_name=x} -> Hashtbl.hash (2, (x:string))
-        | IPAxiomatic {iax_name=x} -> Hashtbl.hash (3, (x:string))
-        | IPLemma {il_name=x} -> Hashtbl.hash (4, (x:string))
-        | IPCodeAnnot {ica_ca=ca} -> Hashtbl.hash (5, ca.annot_id)
-        | IPComplete {ic_kf=f; ic_kinstr=ki; ic_bhvs=y; ic_active=x} ->
-          (* complete list is more likely to discriminate than active list. *)
-          Hashtbl.hash
-            (6, Kf.hash f, Kinstr.hash ki,
-             Datatype.String.Set.hash y, Datatype.String.Set.hash x)
-        | IPDisjoint {ic_kf=f; ic_kinstr=ki; ic_bhvs=y; ic_active=x} ->
-          Hashtbl.hash
-            (7, Kf.hash f, Kinstr.hash ki,
-             Datatype.String.Set.hash y, Datatype.String.Set.hash x)
-        | IPAssigns {ias_kf=f; ias_kinstr=ki; ias_bhv=b} ->
-          Hashtbl.hash (8, Kf.hash f, Kinstr.hash ki, hash_bhv_loop b)
-        | IPFrom {if_kf=kf; if_kinstr=ki; if_bhv=b; if_from=(t, _)} ->
-          Hashtbl.hash
-            (9, Kf.hash kf, Kinstr.hash ki,
-             hash_bhv_loop b, Identified_term.hash t)
-        | IPDecrease {id_kf=kf; id_kinstr=ki} ->
-          (* At most one loop variant per statement anyway, no
-             need to discriminate against the code annotation itself *)
-          Hashtbl.hash (10, Kf.hash kf, Kinstr.hash ki)
-        | IPBehavior {ib_kf=kf; ib_kinstr=s; ib_active=a; ib_bhv=b} ->
-          Hashtbl.hash
-            (11, Kf.hash kf, Kinstr.hash s,
-             (b.b_name:string), (a:Datatype.String.Set.t))
-        | IPReachable {ir_kf=kf; ir_kinstr=ki; ir_program_point=ba} ->
-          Hashtbl.hash(12, Option.fold ~some:Kf.hash ~none:0 kf,
-                       Kinstr.hash ki, Hashtbl.hash ba)
-        | IPAllocation {ial_kf=f; ial_kinstr=ki; ial_bhv=b} ->
-          Hashtbl.hash (13, Kf.hash f, Kinstr.hash ki, hash_bhv_loop b)
-        | IPPropertyInstance {ii_kf=kf_caller; ii_stmt=stmt; ii_ip=ip} ->
-          Hashtbl.hash (14, Kf.hash kf_caller,
-                        Stmt.hash stmt, hash ip)
-        | IPOther {io_name=s} -> Hashtbl.hash (15, (s:string))
-        | IPTypeInvariant {iti_name=s} -> Hashtbl.hash (16, (s:string))
-        | IPGlobalInvariant {igi_name=s} -> Hashtbl.hash (17, (s:string))
-        | IPExtended {ie_ext={ext_id}} -> Hashtbl.hash (18, ext_id)
+      let pretty = pretty_ip
+
+      let hash = hash_ip
 
       let rec equal p1 p2 =
         let eq_bhv (f1,ki1,b1) (f2,ki2,b2) =
@@ -577,7 +593,8 @@ include Datatype.Make_with_collections
           IPComplete {ic_kf=f2;ic_kinstr=ki2;ic_active=a2;ic_bhvs=x2}
         | IPDisjoint {ic_kf=f1;ic_kinstr=ki1;ic_active=a1;ic_bhvs=x1},
           IPDisjoint {ic_kf=f2;ic_kinstr=ki2;ic_active=a2;ic_bhvs=x2} ->
-          Kf.equal f1 f2 && Kinstr.equal ki1 ki2 && a1 = a2 && Datatype.String.Set.equal x1 x2
+          Kf.equal f1 f2 && Kinstr.equal ki1 ki2 && a1 = a2
+          && Datatype.String.Set.equal x1 x2
         | IPAllocation {ial_kf=f1;ial_kinstr=ki1;ial_bhv=b1},
           IPAllocation {ial_kf=f2;ial_kinstr=ki2;ial_bhv=b2}
         | IPAssigns {ias_kf=f1;ias_kinstr=ki1;ias_bhv=b1},
@@ -617,14 +634,7 @@ include Datatype.Make_with_collections
           if n = 0 then
             let n = Kinstr.compare ki1 ki2 in
             if n = 0 then
-              match b1, b2 with
-              | Id_contract (a1,b1), Id_contract (a2,b2) ->
-                let n = Datatype.String.compare b1.b_name b2.b_name in
-                if n = 0 then Datatype.String.Set.compare a1 a2 else n
-              | Id_loop ca1, Id_loop ca2 ->
-                Datatype.Int.compare ca1.annot_id ca2.annot_id
-              | Id_contract _, Id_loop _ -> -1
-              | Id_loop _, Id_contract _ -> 1
+              compare_behavior_or_loop b1 b2
             else n
           else n
         in
@@ -718,6 +728,129 @@ include Datatype.Make_with_collections
 
     end)
 
+module Ordered_by_function = Datatype.Make_with_collections(
+  struct
+    include Datatype.Serializable_undefined
+    type t = identified_property
+    let name = "Property.Ordered_by_function"
+    let reprs = reprs
+    let hash = hash_ip
+    let pretty = pretty_ip
+
+    (* be sure to keep cmp_same_kind synchronized with this function. *)
+    let cmp_kind p1 p2 =
+      let nb = function
+        | IPAxiomatic _ -> 1
+        | IPAxiom _ -> 2
+        | IPLemma _ -> 3
+        | IPTypeInvariant _ -> 4
+        | IPGlobalInvariant _ -> 5
+        | IPPropertyInstance _ -> 6
+        | IPBehavior _ -> 7
+        | IPPredicate { ip_kind = PKRequires _ } -> 8
+        | IPPredicate { ip_kind = PKAssumes _ } -> 9
+        | IPPredicate { ip_kind = PKEnsures _ } -> 10
+        | IPCodeAnnot { ica_ca = { annot_content = AAssert _ }} -> 11
+        | IPCodeAnnot { ica_ca = { annot_content = AInvariant _ }} -> 12
+        | IPCodeAnnot { ica_ca = { annot_content = APragma _ }} -> 13
+        | IPAssigns _ -> 14
+        | IPFrom _ -> 15
+        | IPAllocation _ -> 16
+        | IPPredicate { ip_kind = PKTerminates } -> 17
+        | IPDecrease _ -> 18
+        | IPReachable _ -> 18
+        | IPComplete _ -> 19
+        | IPDisjoint _ -> 20
+        | IPExtended _ -> 21
+        | IPOther _ -> 22
+        | IPCodeAnnot ca ->
+          Kernel.fatal "Unexpected code annot %a in identified property"
+            Cil_printer.pp_code_annotation ca.ica_ca
+      in
+      Datatype.Int.compare (nb p1) (nb p2)
+
+    let rec cmp_same_kind p1 p2 =
+      match (p1,p2) with
+      | IPAxiomatic { iax_name = n1 }, IPAxiomatic { iax_name = n2 }
+      | IPAxiom { il_name = n1 }, IPAxiom { il_name = n2 }
+      | IPLemma { il_name = n1 }, IPAxiom { il_name = n2 }
+      | IPTypeInvariant { iti_name = n1 }, IPTypeInvariant { iti_name = n2 }
+      | IPGlobalInvariant { igi_name = n1 },
+        IPGlobalInvariant { igi_name = n2 }
+        ->
+        String.compare n1 n2
+      | IPPropertyInstance { ii_ip = p1 }, IPPropertyInstance { ii_ip = p2 }
+        ->
+        let res = cmp_kind p1 p2 in
+        if res <> 0 then res else cmp_same_kind p1 p2
+      | IPBehavior { ib_active = a1; ib_bhv = b1 },
+        IPBehavior { ib_active = a2; ib_bhv = b2 } ->
+        compare_behavior_or_loop (Id_contract(a1,b1)) (Id_contract(a2,b2))
+      | IPPredicate { ip_pred = i1 }, IPPredicate { ip_pred = i2 } ->
+        Datatype.Int.compare i1.ip_id i2.ip_id
+      | IPCodeAnnot { ica_ca = a1 }, IPCodeAnnot { ica_ca = a2 } ->
+        Datatype.Int.compare a1.annot_id a2.annot_id
+      | IPAssigns { ias_bhv = b1 }, IPAssigns { ias_bhv = b2 }
+      | IPAllocation { ial_bhv = b1 }, IPAllocation { ial_bhv = b2 } ->
+        compare_behavior_or_loop b1 b2
+      | IPFrom { if_bhv = b1; if_from = (f1,_) },
+        IPFrom { if_bhv = b2; if_from = (f2,_) } ->
+        let res = compare_behavior_or_loop b1 b2 in
+        if res <> 0 then res
+        else Datatype.Int.compare f1.it_id f2.it_id
+      (* at most one decrease per statement *)
+      | IPDecrease _, IPDecrease _ -> 0
+      | IPReachable { ir_program_point = Before },
+        IPReachable { ir_program_point = After } -> -1
+      | IPReachable { ir_program_point = After },
+        IPReachable { ir_program_point = Before } -> 1
+      | IPReachable _, IPReachable _ -> 0
+
+      | IPComplete { ic_active = b1; ic_bhvs = s1 },
+        IPComplete { ic_active = b2; ic_bhvs = s2 }
+      | IPDisjoint { ic_active = b1; ic_bhvs = s1 },
+        IPDisjoint { ic_active = b2; ic_bhvs = s2 } ->
+        let res = Datatype.String.Set.compare b1 b2 in
+        if res <> 0 then res
+        else Datatype.String.Set.compare s1 s2
+      | IPExtended { ie_ext = e1 }, IPExtended { ie_ext = e2 } ->
+        Datatype.Int.compare e1.ext_id e2.ext_id
+      | IPOther { io_name = n1; io_loc = l1 },
+        IPOther { io_name = n2; io_loc = l2 } ->
+        let res = other_loc_compare l1 l2 in
+        if res <> 0 then res
+        else String.compare n1 n2
+      | _ ->
+        Kernel.fatal
+          "Property.cmp_same_kind called with 2 arguments of different kind"
+
+    let compare p1 p2 =
+      let kf1 = get_kf p1 and kf2 = get_kf p2 in
+      let cmp_kf kf1 kf2 =
+        String.compare
+          (Kernel_function.get_name kf1) (Kernel_function.get_name kf2)
+      in
+      let res = Option.compare cmp_kf kf1 kf2 in
+      if res <> 0 then res
+      else begin
+        let ki1 = get_kinstr p1 and ki2 = get_kinstr p2 in
+        let res =
+          match ki1, ki2 with
+          | Kglobal, Kglobal -> 0
+          | Kstmt _, Kglobal -> 1
+          | Kglobal, Kstmt _ -> -1
+          | Kstmt s1, Kstmt s2 -> Datatype.Int.compare s1.sid s2.sid
+        in
+        if res <> 0 then res
+        else begin
+          let res = cmp_kind p1 p2 in
+          if res <> 0 then res
+          else cmp_same_kind p1 p2
+        end
+      end
+    let equal = Datatype.from_compare
+  end)
+
 let rec short_pretty fmt p = match p with
   | IPPredicate {ip_pred} ->
     (match (Logic_const.pred_of_id_pred ip_pred).pred_name with
diff --git a/src/kernel_services/ast_data/property.mli b/src/kernel_services/ast_data/property.mli
index 6ad7e28371f..ab15f381a1b 100644
--- a/src/kernel_services/ast_data/property.mli
+++ b/src/kernel_services/ast_data/property.mli
@@ -214,6 +214,18 @@ and identified_property = private
 
 include Datatype.S_with_collections with type t = identified_property
 
+(** Datatype with alternative ordering, where properties are ordered according
+    the following criteria:
+    1. Kf name (global properties ranked first)
+    2. Kinstr
+    3. kind of property
+    4. id of the property
+
+    @since Frama-C+dev
+*)
+module Ordered_by_function:
+  Datatype.S_with_collections with type t = identified_property
+
 val short_pretty: Format.formatter -> t -> unit
 (** output a meaningful name for the property (e.g. the name of the
     corresponding identified predicate when available)
-- 
GitLab


From ea01e74141d0c814bd6ef3763de0d90c25eb332c Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Fri, 29 Jan 2021 16:09:32 +0100
Subject: [PATCH 071/141] [MdR] iterate over properties in fixed order for
 sarif output

---
 src/plugins/markdown-report/sarif_gen.ml      |    3 +-
 .../tests/sarif/oracle/cwe125.sarif           |   20 +-
 .../tests/sarif/oracle/with-libc.sarif        | 5236 ++++++++---------
 3 files changed, 2630 insertions(+), 2629 deletions(-)

diff --git a/src/plugins/markdown-report/sarif_gen.ml b/src/plugins/markdown-report/sarif_gen.ml
index 37fd6b824e3..7c9df870307 100644
--- a/src/plugins/markdown-report/sarif_gen.ml
+++ b/src/plugins/markdown-report/sarif_gen.ml
@@ -206,6 +206,7 @@ let gen_status ip =
   Sarif_result.create ~ruleId:user_annot_id ~level ~locations ~message ()
 
 let gen_statuses () =
+  let cmp = Property.Ordered_by_function.compare in
   let f ip content =
     let exclude =
       is_alarm ip ||
@@ -213,7 +214,7 @@ let gen_statuses () =
     in
     if exclude then content else (gen_status ip) :: content
   in
-  List.rev (Property_status.fold f [])
+  List.rev (Property_status.fold_sorted ~cmp f [])
 
 let gen_artifacts () =
   let add_src_file f =
diff --git a/src/plugins/markdown-report/tests/sarif/oracle/cwe125.sarif b/src/plugins/markdown-report/tests/sarif/oracle/cwe125.sarif
index 5855585658f..01038bb8a72 100644
--- a/src/plugins/markdown-report/tests/sarif/oracle/cwe125.sarif
+++ b/src/plugins/markdown-report/tests/sarif/oracle/cwe125.sarif
@@ -120,7 +120,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function printf." },
+          "message": {
+            "text": "reachability of stmt line 27 in getValueFromArray."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -131,8 +133,8 @@
                 "region": {
                   "startLine": 27,
                   "endLine": 27,
-                  "endColumn": 6,
-                  "byteLength": 6
+                  "endColumn": 38,
+                  "byteLength": 38
                 }
               }
             }
@@ -165,9 +167,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function printf."
-          },
+          "message": { "text": "behavior default! in function printf." },
           "locations": [
             {
               "physicalLocation": {
@@ -189,7 +189,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function printf." },
+          "message": { "text": "assigns clause in function printf." },
           "locations": [
             {
               "physicalLocation": {
@@ -212,7 +212,7 @@
           "kind": "pass",
           "level": "none",
           "message": {
-            "text": "reachability of stmt line 27 in getValueFromArray."
+            "text": "from clause of term \\result in function printf."
           },
           "locations": [
             {
@@ -224,8 +224,8 @@
                 "region": {
                   "startLine": 27,
                   "endLine": 27,
-                  "endColumn": 38,
-                  "byteLength": 38
+                  "endColumn": 6,
+                  "byteLength": 6
                 }
               }
             }
diff --git a/src/plugins/markdown-report/tests/sarif/oracle/with-libc.sarif b/src/plugins/markdown-report/tests/sarif/oracle/with-libc.sarif
index fa8798f3f64..f9bed3f4dee 100644
--- a/src/plugins/markdown-report/tests/sarif/oracle/with-libc.sarif
+++ b/src/plugins/markdown-report/tests/sarif/oracle/with-libc.sarif
@@ -50,22 +50,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term __fc_strtok_ptr in function strtok."
-          },
+          "message": { "text": "MemChr." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 261,
-                  "startColumn": 12,
-                  "endLine": 261,
-                  "endColumn": 27,
-                  "byteLength": 15
+                  "startLine": 57,
+                  "startColumn": 4,
+                  "endLine": 59,
+                  "endColumn": 62,
+                  "byteLength": 134
                 }
               }
             }
@@ -75,22 +73,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strcpy."
-          },
+          "message": { "text": "MemCmp." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 356,
-                  "startColumn": 12,
-                  "endLine": 356,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 39,
+                  "startColumn": 4,
+                  "endLine": 42,
+                  "endColumn": 70,
+                  "byteLength": 170
                 }
               }
             }
@@ -100,20 +96,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strnlen." },
+          "message": { "text": "MemSet." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 135,
-                  "startColumn": 14,
-                  "endLine": 135,
-                  "endColumn": 21,
-                  "byteLength": 7
+                  "startLine": 68,
+                  "startColumn": 4,
+                  "endLine": 70,
+                  "endColumn": 63,
+                  "byteLength": 135
                 }
               }
             }
@@ -123,20 +119,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strcasecmp." },
+          "message": { "text": "StrChr." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/strings.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 50,
-                  "startColumn": 11,
-                  "endLine": 50,
-                  "endColumn": 21,
-                  "byteLength": 10
+                  "startLine": 168,
+                  "startColumn": 4,
+                  "endLine": 170,
+                  "endColumn": 75,
+                  "byteLength": 132
                 }
               }
             }
@@ -146,22 +142,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strpbrk."
-          },
+          "message": { "text": "StrCmp." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 214,
-                  "startColumn": 12,
-                  "endLine": 214,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 143,
+                  "startColumn": 4,
+                  "endLine": 147,
+                  "endColumn": 63,
+                  "byteLength": 170
                 }
               }
             }
@@ -171,22 +165,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strncat."
-          },
+          "message": { "text": "StrLen." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 433,
-                  "startColumn": 12,
-                  "endLine": 433,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 132,
+                  "startColumn": 4,
+                  "endLine": 135,
+                  "endColumn": 38,
+                  "byteLength": 185
                 }
               }
             }
@@ -196,22 +188,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term *(s + (0 ..)) in function strtok_r."
-          },
+          "message": { "text": "StrNCmp." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 288,
-                  "startColumn": 10,
-                  "endLine": 288,
-                  "endColumn": 16,
-                  "byteLength": 6
+                  "startLine": 155,
+                  "startColumn": 4,
+                  "endLine": 159,
+                  "endColumn": 53,
+                  "byteLength": 191
                 }
               }
             }
@@ -221,20 +211,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior partial in function strncpy." },
+          "message": { "text": "WMemChr." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 378,
-                  "startColumn": 12,
-                  "endLine": 378,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 183,
+                  "startColumn": 4,
+                  "endLine": 185,
+                  "endColumn": 63,
+                  "byteLength": 143
                 }
               }
             }
@@ -244,22 +234,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strcat."
-          },
+          "message": { "text": "WcsChr." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 414,
-                  "startColumn": 12,
-                  "endLine": 414,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 266,
+                  "startColumn": 4,
+                  "endLine": 269,
+                  "endColumn": 29,
+                  "byteLength": 153
                 }
               }
             }
@@ -269,20 +257,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default in function strrchr." },
+          "message": { "text": "WcsCmp." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 195,
-                  "startColumn": 12,
-                  "endLine": 195,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 240,
+                  "startColumn": 4,
+                  "endLine": 244,
+                  "endColumn": 63,
+                  "byteLength": 173
                 }
               }
             }
@@ -292,20 +280,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "dest_null_terminated." },
+          "message": { "text": "WcsLen." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 417,
-                  "startColumn": 34,
-                  "endLine": 417,
-                  "endColumn": 77,
-                  "byteLength": 43
+                  "startLine": 230,
+                  "startColumn": 4,
+                  "endLine": 232,
+                  "endColumn": 63,
+                  "byteLength": 147
                 }
               }
             }
@@ -315,20 +303,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function bzero." },
+          "message": { "text": "WcsNCmp." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/strings.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 40,
-                  "startColumn": 12,
-                  "endLine": 40,
-                  "endColumn": 17,
-                  "byteLength": 5
+                  "startLine": 252,
+                  "startColumn": 4,
+                  "endLine": 256,
+                  "endColumn": 53,
+                  "byteLength": 194
                 }
               }
             }
@@ -338,20 +326,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior new_str in function strtok_r." },
+          "message": { "text": "dynamic_allocation." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_alloc_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 327,
-                  "startColumn": 12,
-                  "endLine": 327,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 39,
+                  "startColumn": 4,
+                  "endLine": 41,
+                  "endColumn": 61,
+                  "byteLength": 110
                 }
               }
             }
@@ -361,22 +349,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term __fc_strtok_ptr in function strtok."
-          },
+          "message": { "text": "memchr_def." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 272,
-                  "startColumn": 12,
-                  "endLine": 272,
-                  "endColumn": 27,
-                  "byteLength": 15
+                  "startLine": 57,
+                  "startColumn": 4,
+                  "endLine": 59,
+                  "endColumn": 62,
+                  "byteLength": 134
                 }
               }
             }
@@ -386,23 +372,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text":
-              "from clause of term *(dest + (strlen{Old}(dest) .. strlen{Old}(dest) + n)) in function strncat."
-          },
+          "message": { "text": "memcmp_strlen_left." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 439,
-                  "startColumn": 12,
-                  "endLine": 439,
-                  "endColumn": 48,
-                  "byteLength": 36
+                  "startLine": 119,
+                  "startColumn": 4,
+                  "endLine": 121,
+                  "endColumn": 77,
+                  "byteLength": 148
                 }
               }
             }
@@ -412,20 +395,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s." },
+          "message": { "text": "memcmp_strlen_right." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 486,
-                  "startColumn": 29,
-                  "endLine": 486,
-                  "endColumn": 49,
-                  "byteLength": 20
+                  "startLine": 123,
+                  "startColumn": 4,
+                  "endLine": 125,
+                  "endColumn": 77,
+                  "byteLength": 149
                 }
               }
             }
@@ -435,20 +418,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "room_string." },
+          "message": { "text": "memcmp_strlen_shift_left." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 438,
-                  "startColumn": 26,
-                  "endLine": 438,
-                  "endColumn": 64,
-                  "byteLength": 38
+                  "startLine": 127,
+                  "startColumn": 4,
+                  "endLine": 130,
+                  "endColumn": 38,
+                  "byteLength": 184
                 }
               }
             }
@@ -458,20 +441,43 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s_or_delim_not_found." },
+          "message": { "text": "memcmp_strlen_shift_right." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 258,
-                  "startColumn": 6,
-                  "endLine": 260,
+                  "startLine": 132,
+                  "startColumn": 4,
+                  "endLine": 135,
+                  "endColumn": 38,
+                  "byteLength": 185
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "memcmp_zero." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 39,
+                  "startColumn": 4,
+                  "endLine": 42,
                   "endColumn": 70,
-                  "byteLength": 120
+                  "byteLength": 170
                 }
               }
             }
@@ -481,7 +487,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "wcslen_create_shift." },
+          "message": { "text": "memset_def." },
           "locations": [
             {
               "physicalLocation": {
@@ -490,11 +496,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 230,
+                  "startLine": 68,
                   "startColumn": 4,
-                  "endLine": 232,
+                  "endLine": 70,
                   "endColumn": 63,
-                  "byteLength": 147
+                  "byteLength": 135
                 }
               }
             }
@@ -504,7 +510,30 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "StrChr." },
+          "message": { "text": "never_allocable." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_alloc_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 39,
+                  "startColumn": 4,
+                  "endLine": 41,
+                  "endColumn": 61,
+                  "byteLength": 110
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "strchr_def." },
           "locations": [
             {
               "physicalLocation": {
@@ -527,22 +556,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function memmove."
-          },
+          "message": { "text": "strcmp_zero." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 107,
-                  "startColumn": 12,
-                  "endLine": 107,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 143,
+                  "startColumn": 4,
+                  "endLine": 147,
+                  "endColumn": 63,
+                  "byteLength": 170
                 }
               }
             }
@@ -552,20 +579,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strchr." },
+          "message": { "text": "strlen_at_null." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 173,
-                  "startColumn": 12,
-                  "endLine": 173,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 92,
+                  "startColumn": 4,
+                  "endLine": 93,
+                  "endColumn": 61,
+                  "byteLength": 86
                 }
               }
             }
@@ -575,7 +602,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "wcscmp_zero." },
+          "message": { "text": "strlen_before_null." },
           "locations": [
             {
               "physicalLocation": {
@@ -584,11 +611,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 240,
+                  "startLine": 89,
                   "startColumn": 4,
-                  "endLine": 244,
-                  "endColumn": 63,
-                  "byteLength": 173
+                  "endLine": 90,
+                  "endColumn": 72,
+                  "byteLength": 101
                 }
               }
             }
@@ -598,20 +625,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_valid_string." },
+          "message": { "text": "strlen_create." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 164,
-                  "startColumn": 33,
-                  "endLine": 164,
-                  "endColumn": 59,
-                  "byteLength": 26
+                  "startLine": 111,
+                  "startColumn": 4,
+                  "endLine": 113,
+                  "endColumn": 51,
+                  "byteLength": 111
                 }
               }
             }
@@ -621,20 +648,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "equal_prefix." },
+          "message": { "text": "strlen_create_shift." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 376,
-                  "startColumn": 26,
-                  "endLine": 376,
-                  "endColumn": 60,
-                  "byteLength": 34
+                  "startLine": 115,
+                  "startColumn": 4,
+                  "endLine": 117,
+                  "endColumn": 62,
+                  "byteLength": 143
                 }
               }
             }
@@ -644,20 +671,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_ptr." },
+          "message": { "text": "strlen_neg." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 358,
-                  "startColumn": 24,
-                  "endLine": 358,
-                  "endColumn": 39,
-                  "byteLength": 15
+                  "startLine": 84,
+                  "startColumn": 4,
+                  "endLine": 87,
+                  "endColumn": 22,
+                  "byteLength": 109
                 }
               }
             }
@@ -667,20 +694,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_same_base." },
+          "message": { "text": "strlen_not_zero." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 177,
-                  "startColumn": 30,
-                  "endLine": 177,
-                  "endColumn": 64,
-                  "byteLength": 34
+                  "startLine": 95,
+                  "startColumn": 4,
+                  "endLine": 97,
+                  "endColumn": 58,
+                  "byteLength": 120
                 }
               }
             }
@@ -690,20 +717,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_nstring_src." },
+          "message": { "text": "strlen_pos_or_null." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 423,
-                  "startColumn": 32,
-                  "endLine": 423,
-                  "endColumn": 58,
-                  "byteLength": 26
+                  "startLine": 78,
+                  "startColumn": 4,
+                  "endLine": 82,
+                  "endColumn": 40,
+                  "byteLength": 169
                 }
               }
             }
@@ -713,20 +740,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strtok." },
+          "message": { "text": "strlen_shift." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 246,
-                  "startColumn": 10,
-                  "endLine": 246,
-                  "endColumn": 16,
-                  "byteLength": 6
+                  "startLine": 107,
+                  "startColumn": 4,
+                  "endLine": 109,
+                  "endColumn": 59,
+                  "byteLength": 118
                 }
               }
             }
@@ -736,20 +763,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "equal_after_copy." },
+          "message": { "text": "strlen_sup." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 373,
-                  "startColumn": 30,
-                  "endLine": 373,
+                  "startLine": 103,
+                  "startColumn": 4,
+                  "endLine": 105,
                   "endColumn": 51,
-                  "byteLength": 21
+                  "byteLength": 108
                 }
               }
             }
@@ -759,20 +786,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_same_base." },
+          "message": { "text": "strlen_zero." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 79,
-                  "startColumn": 30,
-                  "endLine": 79,
-                  "endColumn": 66,
-                  "byteLength": 36
+                  "startLine": 99,
+                  "startColumn": 4,
+                  "endLine": 101,
+                  "endColumn": 59,
+                  "byteLength": 117
                 }
               }
             }
@@ -782,22 +809,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strsignal."
-          },
+          "message": { "text": "strncmp_zero." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 518,
-                  "startColumn": 12,
-                  "endLine": 518,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 155,
+                  "startColumn": 4,
+                  "endLine": 159,
+                  "endColumn": 53,
+                  "byteLength": 191
                 }
               }
             }
@@ -807,20 +832,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_src." },
+          "message": { "text": "wcschr_def." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 459,
-                  "startColumn": 31,
-                  "endLine": 459,
-                  "endColumn": 53,
-                  "byteLength": 22
+                  "startLine": 266,
+                  "startColumn": 4,
+                  "endLine": 269,
+                  "endColumn": 29,
+                  "byteLength": 153
                 }
               }
             }
@@ -830,22 +855,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strdup."
-          },
+          "message": { "text": "wcscmp_zero." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 480,
-                  "startColumn": 12,
-                  "endLine": 480,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 240,
+                  "startColumn": 4,
+                  "endLine": 244,
+                  "endColumn": 63,
+                  "byteLength": 173
                 }
               }
             }
@@ -855,20 +878,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strcoll." },
+          "message": { "text": "wcslen_at_null." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 155,
-                  "startColumn": 11,
-                  "endLine": 155,
-                  "endColumn": 18,
-                  "byteLength": 7
+                  "startLine": 207,
+                  "startColumn": 4,
+                  "endLine": 208,
+                  "endColumn": 65,
+                  "byteLength": 90
                 }
               }
             }
@@ -878,20 +901,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_null_or_same_base." },
+          "message": { "text": "wcslen_before_null." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 171,
+                  "startLine": 204,
                   "startColumn": 4,
-                  "endLine": 171,
-                  "endColumn": 60,
-                  "byteLength": 56
+                  "endLine": 205,
+                  "endColumn": 76,
+                  "byteLength": 105
                 }
               }
             }
@@ -901,20 +924,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s." },
+          "message": { "text": "wcslen_create." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 131,
-                  "startColumn": 29,
-                  "endLine": 131,
-                  "endColumn": 53,
-                  "byteLength": 24
+                  "startLine": 226,
+                  "startColumn": 4,
+                  "endLine": 228,
+                  "endColumn": 52,
+                  "byteLength": 115
                 }
               }
             }
@@ -924,22 +947,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strndup."
-          },
+          "message": { "text": "wcslen_create_shift." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 493,
-                  "startColumn": 12,
-                  "endLine": 493,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 230,
+                  "startColumn": 4,
+                  "endLine": 232,
+                  "endColumn": 63,
+                  "byteLength": 147
                 }
               }
             }
@@ -949,20 +970,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "not_first_call." },
+          "message": { "text": "wcslen_neg." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 268,
-                  "startColumn": 29,
-                  "endLine": 268,
-                  "endColumn": 53,
-                  "byteLength": 24
+                  "startLine": 199,
+                  "startColumn": 4,
+                  "endLine": 202,
+                  "endColumn": 22,
+                  "byteLength": 113
                 }
               }
             }
@@ -972,20 +993,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function memchr." },
+          "message": { "text": "wcslen_not_zero." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 88,
-                  "startColumn": 12,
-                  "endLine": 88,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 210,
+                  "startColumn": 4,
+                  "endLine": 212,
+                  "endColumn": 59,
+                  "byteLength": 124
                 }
               }
             }
@@ -995,22 +1016,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term *saveptr in function strtok_r."
-          },
+          "message": { "text": "wcslen_pos_or_null." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 316,
-                  "startColumn": 12,
-                  "endLine": 316,
-                  "endColumn": 20,
-                  "byteLength": 8
+                  "startLine": 193,
+                  "startColumn": 4,
+                  "endLine": 197,
+                  "endColumn": 41,
+                  "byteLength": 174
                 }
               }
             }
@@ -1020,20 +1039,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "separation." },
+          "message": { "text": "wcslen_shift." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 95,
-                  "startColumn": 4,
-                  "endLine": 95,
-                  "endColumn": 62,
-                  "byteLength": 58
+                  "startLine": 222,
+                  "startColumn": 4,
+                  "endLine": 224,
+                  "endColumn": 55,
+                  "byteLength": 117
                 }
               }
             }
@@ -1043,20 +1062,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "room_nstring." },
+          "message": { "text": "wcslen_sup." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 364,
-                  "startColumn": 27,
-                  "endLine": 364,
-                  "endColumn": 50,
-                  "byteLength": 23
+                  "startLine": 218,
+                  "startColumn": 4,
+                  "endLine": 220,
+                  "endColumn": 52,
+                  "byteLength": 112
                 }
               }
             }
@@ -1066,20 +1085,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "acsl_c_equiv." },
+          "message": { "text": "wcslen_zero." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 127,
-                  "startColumn": 26,
-                  "endLine": 127,
-                  "endColumn": 46,
-                  "byteLength": 20
+                  "startLine": 214,
+                  "startColumn": 4,
+                  "endLine": 216,
+                  "endColumn": 60,
+                  "byteLength": 121
                 }
               }
             }
@@ -1089,23 +1108,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text":
-              "from clause of term *(dest + (0 .. n - 1)) in function strncpy."
-          },
+          "message": { "text": "wcsncmp_zero." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 367,
-                  "startColumn": 12,
-                  "endLine": 367,
-                  "endColumn": 26,
-                  "byteLength": 14
+                  "startLine": 252,
+                  "startColumn": 4,
+                  "endLine": 256,
+                  "endColumn": 53,
+                  "byteLength": 194
                 }
               }
             }
@@ -1115,20 +1131,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "initialization." },
+          "message": { "text": "wmemchr_def." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/__fc_string_axiomatic.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 370,
-                  "startColumn": 28,
-                  "endLine": 370,
-                  "endColumn": 57,
-                  "byteLength": 29
+                  "startLine": 183,
+                  "startColumn": 4,
+                  "endLine": 185,
+                  "endColumn": 63,
+                  "byteLength": 143
                 }
               }
             }
@@ -1138,20 +1154,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "memcmp_strlen_left." },
+          "message": { "text": "behavior default! in function bzero." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/strings.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 119,
-                  "startColumn": 4,
-                  "endLine": 121,
-                  "endColumn": 77,
-                  "byteLength": 148
+                  "startLine": 40,
+                  "startColumn": 12,
+                  "endLine": 40,
+                  "endColumn": 17,
+                  "byteLength": 5
                 }
               }
             }
@@ -1161,20 +1177,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strlcat." },
+          "message": { "text": "valid_memory_area." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/strings.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 451,
-                  "startColumn": 12,
-                  "endLine": 451,
-                  "endColumn": 33,
-                  "byteLength": 21
+                  "startLine": 36,
+                  "startColumn": 32,
+                  "endLine": 36,
+                  "endColumn": 63,
+                  "byteLength": 31
                 }
               }
             }
@@ -1184,20 +1200,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "danglingness." },
+          "message": { "text": "s_initialized." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/strings.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 74,
-                  "startColumn": 8,
-                  "endLine": 75,
-                  "endColumn": 61,
-                  "byteLength": 80
+                  "startLine": 38,
+                  "startColumn": 39,
+                  "endLine": 38,
+                  "endColumn": 75,
+                  "byteLength": 36
                 }
               }
             }
@@ -1207,20 +1223,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_delim." },
+          "message": { "text": "zero_initialized." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/strings.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 245,
-                  "startColumn": 31,
-                  "endLine": 245,
-                  "endColumn": 55,
-                  "byteLength": 24
+                  "startLine": 39,
+                  "startColumn": 28,
+                  "endLine": 39,
+                  "endColumn": 63,
+                  "byteLength": 35
                 }
               }
             }
@@ -1230,20 +1246,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "allocation." },
+          "message": { "text": "assigns clause in function bzero." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/strings.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 475,
-                  "startColumn": 24,
-                  "endLine": 475,
-                  "endColumn": 49,
-                  "byteLength": 25
+                  "startLine": 37,
+                  "startColumn": 10,
+                  "endLine": 37,
+                  "endColumn": 31,
+                  "byteLength": 21
                 }
               }
             }
@@ -1253,20 +1269,23 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "memcmp_strlen_right." },
+          "message": {
+            "text":
+              "from clause of term *((char *)s + (0 .. n - 1)) in function bzero."
+          },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/strings.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 123,
-                  "startColumn": 4,
-                  "endLine": 125,
-                  "endColumn": 77,
-                  "byteLength": 149
+                  "startLine": 37,
+                  "startColumn": 10,
+                  "endLine": 37,
+                  "endColumn": 31,
+                  "byteLength": 21
                 }
               }
             }
@@ -1276,20 +1295,22 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_null." },
+          "message": {
+            "text": "specialization of valid_string_s at stmt 2."
+          },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
-                  "uriBaseId": "FRAMAC_SHARE"
+                  "uri": "tests/sarif/libc.c",
+                  "uriBaseId": "PWD"
                 },
                 "region": {
-                  "startLine": 190,
-                  "startColumn": 25,
-                  "endLine": 190,
-                  "endColumn": 41,
-                  "byteLength": 16
+                  "startLine": 13,
+                  "startColumn": 10,
+                  "endLine": 13,
+                  "endColumn": 19,
+                  "byteLength": 9
                 }
               }
             }
@@ -1299,10 +1320,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text":
-              "from clause of term *((char *)dest + (0 .. n - 1)) in function memcpy."
-          },
+          "message": { "text": "behavior default! in function memchr." },
           "locations": [
             {
               "physicalLocation": {
@@ -1311,11 +1329,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 96,
+                  "startLine": 88,
                   "startColumn": 12,
-                  "endLine": 96,
-                  "endColumn": 35,
-                  "byteLength": 23
+                  "endLine": 88,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -1325,7 +1343,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "initialization." },
+          "message": { "text": "behavior found in function memchr." },
           "locations": [
             {
               "physicalLocation": {
@@ -1334,11 +1352,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 71,
-                  "startColumn": 8,
-                  "endLine": 72,
-                  "endColumn": 71,
-                  "byteLength": 116
+                  "startLine": 88,
+                  "startColumn": 12,
+                  "endLine": 88,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -1348,7 +1366,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s1." },
+          "message": { "text": "behavior not_found in function memchr." },
           "locations": [
             {
               "physicalLocation": {
@@ -1357,11 +1375,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 151,
-                  "startColumn": 30,
-                  "endLine": 151,
-                  "endColumn": 51,
-                  "byteLength": 21
+                  "startLine": 88,
+                  "startColumn": 12,
+                  "endLine": 88,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -1371,7 +1389,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_null." },
+          "message": { "text": "valid." },
           "locations": [
             {
               "physicalLocation": {
@@ -1380,11 +1398,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 168,
-                  "startColumn": 25,
-                  "endLine": 168,
-                  "endColumn": 41,
-                  "byteLength": 16
+                  "startLine": 68,
+                  "startColumn": 9,
+                  "endLine": 69,
+                  "endColumn": 74,
+                  "byteLength": 100
                 }
               }
             }
@@ -1394,7 +1412,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "danglingness." },
+          "message": { "text": "initialization." },
           "locations": [
             {
               "physicalLocation": {
@@ -1403,11 +1421,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 59,
-                  "startColumn": 30,
-                  "endLine": 59,
-                  "endColumn": 49,
-                  "byteLength": 19
+                  "startLine": 71,
+                  "startColumn": 8,
+                  "endLine": 72,
+                  "endColumn": 71,
+                  "byteLength": 116
                 }
               }
             }
@@ -1417,9 +1435,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strerror."
-          },
+          "message": { "text": "danglingness." },
           "locations": [
             {
               "physicalLocation": {
@@ -1428,11 +1444,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 342,
-                  "startColumn": 12,
-                  "endLine": 342,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 74,
+                  "startColumn": 8,
+                  "endLine": 75,
+                  "endColumn": 61,
+                  "byteLength": 80
                 }
               }
             }
@@ -1442,20 +1458,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "strlen_shift." },
+          "message": { "text": "char_found." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
-                  "uriBaseId": "FRAMAC_SHARE"
-                },
-                "region": {
-                  "startLine": 107,
-                  "startColumn": 4,
-                  "endLine": 109,
-                  "endColumn": 59,
-                  "byteLength": 118
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 78,
+                  "startColumn": 24,
+                  "endLine": 78,
+                  "endColumn": 44,
+                  "byteLength": 20
                 }
               }
             }
@@ -1465,7 +1481,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior not_found in function strrchr." },
+          "message": { "text": "char_not_found." },
           "locations": [
             {
               "physicalLocation": {
@@ -1474,11 +1490,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 195,
-                  "startColumn": 12,
-                  "endLine": 195,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 85,
+                  "startColumn": 28,
+                  "endLine": 85,
+                  "endColumn": 49,
+                  "byteLength": 21
                 }
               }
             }
@@ -1488,7 +1504,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "cannot_allocate." },
+          "message": { "text": "result_same_base." },
           "locations": [
             {
               "physicalLocation": {
@@ -1497,11 +1513,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 501,
-                  "startColumn": 29,
-                  "endLine": 501,
-                  "endColumn": 64,
-                  "byteLength": 35
+                  "startLine": 79,
+                  "startColumn": 30,
+                  "endLine": 79,
+                  "endColumn": 66,
+                  "byteLength": 36
                 }
               }
             }
@@ -1511,7 +1527,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strcasestr." },
+          "message": { "text": "result_char." },
           "locations": [
             {
               "physicalLocation": {
@@ -1520,11 +1536,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 239,
-                  "startColumn": 12,
-                  "endLine": 239,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 80,
+                  "startColumn": 25,
+                  "endLine": 80,
+                  "endColumn": 45,
+                  "byteLength": 20
                 }
               }
             }
@@ -1534,7 +1550,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "ptr_subset." },
+          "message": { "text": "result_in_str." },
           "locations": [
             {
               "physicalLocation": {
@@ -1543,11 +1559,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 265,
-                  "startColumn": 24,
-                  "endLine": 265,
-                  "endColumn": 57,
-                  "byteLength": 33
+                  "startLine": 81,
+                  "startColumn": 27,
+                  "endLine": 83,
+                  "endColumn": 54,
+                  "byteLength": 120
                 }
               }
             }
@@ -1557,7 +1573,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strncpy." },
+          "message": { "text": "result_null." },
           "locations": [
             {
               "physicalLocation": {
@@ -1566,11 +1582,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 367,
-                  "startColumn": 12,
-                  "endLine": 367,
-                  "endColumn": 26,
-                  "byteLength": 14
+                  "startLine": 86,
+                  "startColumn": 25,
+                  "endLine": 86,
+                  "endColumn": 41,
+                  "byteLength": 16
                 }
               }
             }
@@ -1580,7 +1596,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_s1." },
+          "message": { "text": "assigns clause in function memchr." },
           "locations": [
             {
               "physicalLocation": {
@@ -1589,11 +1605,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 55,
-                  "startColumn": 23,
-                  "endLine": 55,
-                  "endColumn": 49,
-                  "byteLength": 26
+                  "startLine": 88,
+                  "startColumn": 12,
+                  "endLine": 88,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -1603,7 +1619,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior complete in function strncat." },
+          "message": {
+            "text": "from clause of term \\result in function memchr."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -1612,11 +1630,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 444,
+                  "startLine": 76,
                   "startColumn": 12,
-                  "endLine": 444,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "endLine": 76,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -1626,7 +1644,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s." },
+          "message": { "text": "behavior default! in function memcmp." },
           "locations": [
             {
               "physicalLocation": {
@@ -1635,11 +1653,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 125,
-                  "startColumn": 29,
-                  "endLine": 125,
-                  "endColumn": 49,
-                  "byteLength": 20
+                  "startLine": 65,
+                  "startColumn": 11,
+                  "endLine": 65,
+                  "endColumn": 17,
+                  "byteLength": 6
                 }
               }
             }
@@ -1649,9 +1667,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strcoll."
-          },
+          "message": { "text": "valid_s1." },
           "locations": [
             {
               "physicalLocation": {
@@ -1660,11 +1676,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 153,
-                  "startColumn": 12,
-                  "endLine": 153,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 55,
+                  "startColumn": 23,
+                  "endLine": 55,
+                  "endColumn": 49,
+                  "byteLength": 26
                 }
               }
             }
@@ -1674,9 +1690,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "result_valid_string_bounded_and_same_prefix."
-          },
+          "message": { "text": "valid_s2." },
           "locations": [
             {
               "physicalLocation": {
@@ -1685,11 +1699,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 497,
-                  "startColumn": 4,
-                  "endLine": 499,
-                  "endColumn": 29,
-                  "byteLength": 124
+                  "startLine": 56,
+                  "startColumn": 23,
+                  "endLine": 56,
+                  "endColumn": 49,
+                  "byteLength": 26
                 }
               }
             }
@@ -1699,7 +1713,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s." },
+          "message": { "text": "initialization." },
           "locations": [
             {
               "physicalLocation": {
@@ -1708,11 +1722,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 204,
-                  "startColumn": 29,
-                  "endLine": 204,
-                  "endColumn": 49,
-                  "byteLength": 20
+                  "startLine": 57,
+                  "startColumn": 32,
+                  "endLine": 57,
+                  "endColumn": 68,
+                  "byteLength": 36
                 }
               }
             }
@@ -1722,7 +1736,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior allocation in function strndup." },
+          "message": { "text": "initialization." },
           "locations": [
             {
               "physicalLocation": {
@@ -1731,11 +1745,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 506,
-                  "startColumn": 12,
-                  "endLine": 506,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 58,
+                  "startColumn": 32,
+                  "endLine": 58,
+                  "endColumn": 68,
+                  "byteLength": 36
                 }
               }
             }
@@ -1745,10 +1759,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text":
-              "from clause of term *(__fc_strtok_ptr + (0 ..)) in function strtok."
-          },
+          "message": { "text": "danglingness." },
           "locations": [
             {
               "physicalLocation": {
@@ -1757,11 +1768,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 248,
-                  "startColumn": 10,
-                  "endLine": 248,
-                  "endColumn": 30,
-                  "byteLength": 20
+                  "startLine": 59,
+                  "startColumn": 30,
+                  "endLine": 59,
+                  "endColumn": 49,
+                  "byteLength": 19
                 }
               }
             }
@@ -1771,7 +1782,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "char_not_found." },
+          "message": { "text": "danglingness." },
           "locations": [
             {
               "physicalLocation": {
@@ -1780,11 +1791,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 189,
-                  "startColumn": 28,
-                  "endLine": 189,
-                  "endColumn": 40,
-                  "byteLength": 12
+                  "startLine": 60,
+                  "startColumn": 30,
+                  "endLine": 60,
+                  "endColumn": 49,
+                  "byteLength": 19
                 }
               }
             }
@@ -1794,7 +1805,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "disjoint clause in function strtok." },
+          "message": { "text": "logic_spec." },
           "locations": [
             {
               "physicalLocation": {
@@ -1803,11 +1814,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 283,
-                  "startColumn": 12,
-                  "endLine": 283,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 63,
+                  "startColumn": 24,
+                  "endLine": 63,
+                  "endColumn": 73,
+                  "byteLength": 49
                 }
               }
             }
@@ -1817,9 +1828,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strndup."
-          },
+          "message": { "text": "assigns clause in function memcmp." },
           "locations": [
             {
               "physicalLocation": {
@@ -1828,11 +1837,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 488,
-                  "startColumn": 12,
-                  "endLine": 488,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 65,
+                  "startColumn": 11,
+                  "endLine": 65,
+                  "endColumn": 17,
+                  "byteLength": 6
                 }
               }
             }
@@ -1842,7 +1851,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "s_not_null." },
+          "message": {
+            "text": "from clause of term \\result in function memcmp."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -1851,11 +1862,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 256,
-                  "startColumn": 24,
-                  "endLine": 256,
-                  "endColumn": 34,
-                  "byteLength": 10
+                  "startLine": 61,
+                  "startColumn": 12,
+                  "endLine": 61,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -1865,7 +1876,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid." },
+          "message": { "text": "behavior default! in function memcpy." },
           "locations": [
             {
               "physicalLocation": {
@@ -1874,11 +1885,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 68,
-                  "startColumn": 9,
-                  "endLine": 69,
-                  "endColumn": 74,
-                  "byteLength": 100
+                  "startLine": 101,
+                  "startColumn": 12,
+                  "endLine": 101,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -1888,7 +1899,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_accept." },
+          "message": { "text": "valid_dest." },
           "locations": [
             {
               "physicalLocation": {
@@ -1897,11 +1908,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 213,
-                  "startColumn": 34,
-                  "endLine": 213,
-                  "endColumn": 59,
-                  "byteLength": 25
+                  "startLine": 92,
+                  "startColumn": 25,
+                  "endLine": 92,
+                  "endColumn": 48,
+                  "byteLength": 23
                 }
               }
             }
@@ -1911,7 +1922,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior not_found in function memchr." },
+          "message": { "text": "valid_src." },
           "locations": [
             {
               "physicalLocation": {
@@ -1920,11 +1931,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 88,
-                  "startColumn": 12,
-                  "endLine": 88,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 93,
+                  "startColumn": 24,
+                  "endLine": 93,
+                  "endColumn": 51,
+                  "byteLength": 27
                 }
               }
             }
@@ -1934,7 +1945,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strspn." },
+          "message": { "text": "separation." },
           "locations": [
             {
               "physicalLocation": {
@@ -1943,11 +1954,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 206,
-                  "startColumn": 12,
-                  "endLine": 206,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 95,
+                  "startColumn": 4,
+                  "endLine": 95,
+                  "endColumn": 62,
+                  "byteLength": 58
                 }
               }
             }
@@ -1957,7 +1968,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "initialization." },
+          "message": { "text": "copied_contents." },
           "locations": [
             {
               "physicalLocation": {
@@ -1966,11 +1977,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 58,
-                  "startColumn": 32,
-                  "endLine": 58,
-                  "endColumn": 68,
-                  "byteLength": 36
+                  "startLine": 98,
+                  "startColumn": 29,
+                  "endLine": 98,
+                  "endColumn": 76,
+                  "byteLength": 47
                 }
               }
             }
@@ -1980,20 +1991,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "strlen_before_null." },
+          "message": { "text": "result_ptr." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 89,
-                  "startColumn": 4,
-                  "endLine": 90,
-                  "endColumn": 72,
-                  "byteLength": 101
+                  "startLine": 99,
+                  "startColumn": 24,
+                  "endLine": 99,
+                  "endColumn": 39,
+                  "byteLength": 15
                 }
               }
             }
@@ -2003,7 +2014,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strlen." },
+          "message": { "text": "assigns clause in function memcpy." },
           "locations": [
             {
               "physicalLocation": {
@@ -2012,11 +2023,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 129,
-                  "startColumn": 14,
-                  "endLine": 129,
-                  "endColumn": 20,
-                  "byteLength": 6
+                  "startLine": 96,
+                  "startColumn": 12,
+                  "endLine": 96,
+                  "endColumn": 35,
+                  "byteLength": 23
                 }
               }
             }
@@ -2026,7 +2037,10 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strlcpy." },
+          "message": {
+            "text":
+              "from clause of term *((char *)dest + (0 .. n - 1)) in function memcpy."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -2035,11 +2049,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 393,
-                  "startColumn": 7,
-                  "endLine": 393,
-                  "endColumn": 14,
-                  "byteLength": 7
+                  "startLine": 96,
+                  "startColumn": 12,
+                  "endLine": 96,
+                  "endColumn": 35,
+                  "byteLength": 23
                 }
               }
             }
@@ -2049,7 +2063,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "separation." },
+          "message": {
+            "text": "from clause of term \\result in function memcpy."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -2058,11 +2074,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 354,
-                  "startColumn": 4,
-                  "endLine": 354,
-                  "endColumn": 59,
-                  "byteLength": 55
+                  "startLine": 97,
+                  "startColumn": 12,
+                  "endLine": 97,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -2072,7 +2088,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default in function strchr." },
+          "message": { "text": "behavior default! in function memmove." },
           "locations": [
             {
               "physicalLocation": {
@@ -2081,9 +2097,9 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 173,
+                  "startLine": 111,
                   "startColumn": 12,
-                  "endLine": 173,
+                  "endLine": 111,
                   "endColumn": 13,
                   "byteLength": 1
                 }
@@ -2095,7 +2111,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "complete clause in function strtok_r." },
+          "message": { "text": "valid_dest." },
           "locations": [
             {
               "physicalLocation": {
@@ -2104,11 +2120,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 327,
-                  "startColumn": 12,
-                  "endLine": 327,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 104,
+                  "startColumn": 25,
+                  "endLine": 104,
+                  "endColumn": 48,
+                  "byteLength": 23
                 }
               }
             }
@@ -2118,10 +2134,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text":
-              "from clause of term *(dest + (strlen{Old}(dest) .. strlen{Old}(dest) + n)) in function strncat."
-          },
+          "message": { "text": "valid_src." },
           "locations": [
             {
               "physicalLocation": {
@@ -2130,11 +2143,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 425,
-                  "startColumn": 12,
-                  "endLine": 425,
-                  "endColumn": 50,
-                  "byteLength": 38
+                  "startLine": 105,
+                  "startColumn": 24,
+                  "endLine": 105,
+                  "endColumn": 51,
+                  "byteLength": 27
                 }
               }
             }
@@ -2144,7 +2157,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior no_allocation in function strdup." },
+          "message": { "text": "copied_contents." },
           "locations": [
             {
               "physicalLocation": {
@@ -2153,11 +2166,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 484,
-                  "startColumn": 12,
-                  "endLine": 484,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 108,
+                  "startColumn": 29,
+                  "endLine": 108,
+                  "endColumn": 76,
+                  "byteLength": 47
                 }
               }
             }
@@ -2167,7 +2180,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strcat." },
+          "message": { "text": "result_ptr." },
           "locations": [
             {
               "physicalLocation": {
@@ -2176,11 +2189,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 420,
-                  "startColumn": 12,
-                  "endLine": 420,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 109,
+                  "startColumn": 24,
+                  "endLine": 109,
+                  "endColumn": 39,
+                  "byteLength": 15
                 }
               }
             }
@@ -2190,20 +2203,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "StrCmp." },
+          "message": { "text": "assigns clause in function memmove." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 143,
-                  "startColumn": 4,
-                  "endLine": 147,
-                  "endColumn": 63,
-                  "byteLength": 170
+                  "startLine": 106,
+                  "startColumn": 12,
+                  "endLine": 106,
+                  "endColumn": 35,
+                  "byteLength": 23
                 }
               }
             }
@@ -2213,20 +2226,23 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "strlen_at_null." },
+          "message": {
+            "text":
+              "from clause of term *((char *)dest + (0 .. n - 1)) in function memmove."
+          },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 92,
-                  "startColumn": 4,
-                  "endLine": 93,
-                  "endColumn": 61,
-                  "byteLength": 86
+                  "startLine": 106,
+                  "startColumn": 12,
+                  "endLine": 106,
+                  "endColumn": 35,
+                  "byteLength": 23
                 }
               }
             }
@@ -2237,8 +2253,7 @@
           "kind": "pass",
           "level": "none",
           "message": {
-            "text":
-              "from clause of term *(*saveptr + (0 ..)) in function strtok_r."
+            "text": "from clause of term \\result in function memmove."
           },
           "locations": [
             {
@@ -2248,11 +2263,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 290,
-                  "startColumn": 10,
-                  "endLine": 290,
-                  "endColumn": 25,
-                  "byteLength": 15
+                  "startLine": 107,
+                  "startColumn": 12,
+                  "endLine": 107,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -2262,7 +2277,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strspn." },
+          "message": { "text": "behavior default! in function memset." },
           "locations": [
             {
               "physicalLocation": {
@@ -2271,11 +2286,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 210,
-                  "startColumn": 14,
-                  "endLine": 210,
-                  "endColumn": 20,
-                  "byteLength": 6
+                  "startLine": 121,
+                  "startColumn": 12,
+                  "endLine": 121,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -2285,7 +2300,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s2." },
+          "message": { "text": "valid_s." },
           "locations": [
             {
               "physicalLocation": {
@@ -2294,11 +2309,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 138,
-                  "startColumn": 30,
-                  "endLine": 138,
-                  "endColumn": 51,
-                  "byteLength": 21
+                  "startLine": 115,
+                  "startColumn": 22,
+                  "endLine": 115,
+                  "endColumn": 42,
+                  "byteLength": 20
                 }
               }
             }
@@ -2308,7 +2323,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_char." },
+          "message": { "text": "acsl_c_equiv." },
           "locations": [
             {
               "physicalLocation": {
@@ -2317,10 +2332,10 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 80,
-                  "startColumn": 25,
-                  "endLine": 80,
-                  "endColumn": 45,
+                  "startLine": 118,
+                  "startColumn": 26,
+                  "endLine": 118,
+                  "endColumn": 46,
                   "byteLength": 20
                 }
               }
@@ -2331,7 +2346,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strlcpy." },
+          "message": { "text": "result_ptr." },
           "locations": [
             {
               "physicalLocation": {
@@ -2340,10 +2355,10 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 388,
-                  "startColumn": 12,
-                  "endLine": 388,
-                  "endColumn": 24,
+                  "startLine": 119,
+                  "startColumn": 24,
+                  "endLine": 119,
+                  "endColumn": 36,
                   "byteLength": 12
                 }
               }
@@ -2354,23 +2369,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text":
-              "from clause of term *((char *)s + (0 .. n - 1)) in function bzero."
-          },
+          "message": { "text": "assigns clause in function memset." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/strings.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 37,
-                  "startColumn": 10,
-                  "endLine": 37,
-                  "endColumn": 31,
-                  "byteLength": 21
+                  "startLine": 116,
+                  "startColumn": 12,
+                  "endLine": 116,
+                  "endColumn": 32,
+                  "byteLength": 20
                 }
               }
             }
@@ -2380,7 +2392,10 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_in_str." },
+          "message": {
+            "text":
+              "from clause of term *((char *)s + (0 .. n - 1)) in function memset."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -2389,11 +2404,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 81,
-                  "startColumn": 27,
-                  "endLine": 83,
-                  "endColumn": 54,
-                  "byteLength": 120
+                  "startLine": 116,
+                  "startColumn": 12,
+                  "endLine": 116,
+                  "endColumn": 32,
+                  "byteLength": 20
                 }
               }
             }
@@ -2403,7 +2418,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "char_found." },
+          "message": {
+            "text": "from clause of term \\result in function memset."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -2412,11 +2429,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 78,
-                  "startColumn": 24,
-                  "endLine": 78,
-                  "endColumn": 44,
-                  "byteLength": 20
+                  "startLine": 117,
+                  "startColumn": 12,
+                  "endLine": 117,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -2426,20 +2443,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "MemChr." },
+          "message": { "text": "behavior default! in function stpcpy." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 57,
-                  "startColumn": 4,
-                  "endLine": 59,
-                  "endColumn": 62,
-                  "byteLength": 134
+                  "startLine": 405,
+                  "startColumn": 12,
+                  "endLine": 405,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -2449,9 +2466,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strtok_r."
-          },
+          "message": { "text": "valid_string_src." },
           "locations": [
             {
               "physicalLocation": {
@@ -2460,11 +2475,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 319,
-                  "startColumn": 12,
-                  "endLine": 319,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 396,
+                  "startColumn": 31,
+                  "endLine": 396,
+                  "endColumn": 53,
+                  "byteLength": 22
                 }
               }
             }
@@ -2474,7 +2489,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "char_found." },
+          "message": { "text": "room_string." },
           "locations": [
             {
               "physicalLocation": {
@@ -2483,11 +2498,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 184,
-                  "startColumn": 24,
-                  "endLine": 184,
-                  "endColumn": 35,
-                  "byteLength": 11
+                  "startLine": 397,
+                  "startColumn": 26,
+                  "endLine": 397,
+                  "endColumn": 55,
+                  "byteLength": 29
                 }
               }
             }
@@ -2497,9 +2512,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strtok."
-          },
+          "message": { "text": "separation." },
           "locations": [
             {
               "physicalLocation": {
@@ -2508,11 +2521,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 250,
-                  "startColumn": 10,
-                  "endLine": 250,
-                  "endColumn": 17,
-                  "byteLength": 7
+                  "startLine": 399,
+                  "startColumn": 4,
+                  "endLine": 399,
+                  "endColumn": 59,
+                  "byteLength": 55
                 }
               }
             }
@@ -2522,7 +2535,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_src." },
+          "message": { "text": "equal_contents." },
           "locations": [
             {
               "physicalLocation": {
@@ -2531,11 +2544,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 396,
-                  "startColumn": 31,
-                  "endLine": 396,
-                  "endColumn": 53,
-                  "byteLength": 22
+                  "startLine": 402,
+                  "startColumn": 28,
+                  "endLine": 402,
+                  "endColumn": 49,
+                  "byteLength": 21
                 }
               }
             }
@@ -2545,7 +2558,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strtok." },
+          "message": { "text": "points_to_end." },
           "locations": [
             {
               "physicalLocation": {
@@ -2554,11 +2567,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 269,
-                  "startColumn": 12,
-                  "endLine": 269,
-                  "endColumn": 32,
-                  "byteLength": 20
+                  "startLine": 403,
+                  "startColumn": 27,
+                  "endLine": 403,
+                  "endColumn": 57,
+                  "byteLength": 30
                 }
               }
             }
@@ -2568,20 +2581,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "wcslen_at_null." },
+          "message": { "text": "assigns clause in function stpcpy." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 207,
-                  "startColumn": 4,
-                  "endLine": 208,
-                  "endColumn": 65,
-                  "byteLength": 90
+                  "startLine": 400,
+                  "startColumn": 12,
+                  "endLine": 400,
+                  "endColumn": 32,
+                  "byteLength": 20
                 }
               }
             }
@@ -2591,7 +2604,10 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_valid_string." },
+          "message": {
+            "text":
+              "from clause of term *(dest + (0 .. strlen{Old}(src))) in function stpcpy."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -2600,11 +2616,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 187,
-                  "startColumn": 33,
-                  "endLine": 187,
-                  "endColumn": 59,
-                  "byteLength": 26
+                  "startLine": 400,
+                  "startColumn": 12,
+                  "endLine": 400,
+                  "endColumn": 32,
+                  "byteLength": 20
                 }
               }
             }
@@ -2614,7 +2630,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_src_fits." },
+          "message": {
+            "text": "from clause of term \\result in function stpcpy."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -2623,11 +2641,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 429,
-                  "startColumn": 35,
-                  "endLine": 429,
-                  "endColumn": 77,
-                  "byteLength": 42
+                  "startLine": 401,
+                  "startColumn": 12,
+                  "endLine": 401,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -2637,20 +2655,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_null_or_in_haystack." },
+          "message": { "text": "behavior default! in function strcasecmp." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/strings.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 236,
-                  "startColumn": 4,
-                  "endLine": 237,
-                  "endColumn": 65,
-                  "byteLength": 82
+                  "startLine": 50,
+                  "startColumn": 11,
+                  "endLine": 50,
+                  "endColumn": 21,
+                  "byteLength": 10
                 }
               }
             }
@@ -2660,20 +2678,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function memset." },
+          "message": { "text": "valid_string_s1." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/strings.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 121,
-                  "startColumn": 12,
-                  "endLine": 121,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 46,
+                  "startColumn": 28,
+                  "endLine": 46,
+                  "endColumn": 49,
+                  "byteLength": 21
                 }
               }
             }
@@ -2683,20 +2701,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_first_occur." },
+          "message": { "text": "valid_string_s2." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/strings.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 165,
-                  "startColumn": 32,
-                  "endLine": 165,
-                  "endColumn": 79,
-                  "byteLength": 47
+                  "startLine": 47,
+                  "startColumn": 28,
+                  "endLine": 47,
+                  "endColumn": 49,
+                  "byteLength": 21
                 }
               }
             }
@@ -2706,20 +2724,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strtok_r." },
+          "message": { "text": "assigns clause in function strcasecmp." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/strings.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 313,
-                  "startColumn": 12,
-                  "endLine": 313,
-                  "endColumn": 27,
-                  "byteLength": 15
+                  "startLine": 50,
+                  "startColumn": 11,
+                  "endLine": 50,
+                  "endColumn": 21,
+                  "byteLength": 10
                 }
               }
             }
@@ -2729,20 +2747,22 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "room_string." },
+          "message": {
+            "text": "from clause of term \\result in function strcasecmp."
+          },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/strings.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 430,
-                  "startColumn": 26,
-                  "endLine": 430,
-                  "endColumn": 74,
-                  "byteLength": 48
+                  "startLine": 48,
+                  "startColumn": 10,
+                  "endLine": 48,
+                  "endColumn": 17,
+                  "byteLength": 7
                 }
               }
             }
@@ -2752,7 +2772,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "initialization." },
+          "message": { "text": "behavior default! in function strcasestr." },
           "locations": [
             {
               "physicalLocation": {
@@ -2761,11 +2781,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 312,
-                  "startColumn": 37,
-                  "endLine": 312,
-                  "endColumn": 58,
-                  "byteLength": 21
+                  "startLine": 239,
+                  "startColumn": 12,
+                  "endLine": 239,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -2775,20 +2795,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "WMemChr." },
+          "message": { "text": "valid_string_haystack." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 183,
-                  "startColumn": 4,
-                  "endLine": 185,
+                  "startLine": 231,
+                  "startColumn": 36,
+                  "endLine": 231,
                   "endColumn": 63,
-                  "byteLength": 143
+                  "byteLength": 27
                 }
               }
             }
@@ -2798,7 +2818,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strcmp." },
+          "message": { "text": "valid_string_needle." },
           "locations": [
             {
               "physicalLocation": {
@@ -2807,11 +2827,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 142,
-                  "startColumn": 11,
-                  "endLine": 142,
-                  "endColumn": 17,
-                  "byteLength": 6
+                  "startLine": 232,
+                  "startColumn": 34,
+                  "endLine": 232,
+                  "endColumn": 59,
+                  "byteLength": 25
                 }
               }
             }
@@ -2821,20 +2841,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s1." },
+          "message": { "text": "result_null_or_in_haystack." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/strings.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 46,
-                  "startColumn": 28,
-                  "endLine": 46,
-                  "endColumn": 49,
-                  "byteLength": 21
+                  "startLine": 236,
+                  "startColumn": 4,
+                  "endLine": 237,
+                  "endColumn": 65,
+                  "byteLength": 82
                 }
               }
             }
@@ -2844,20 +2864,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function bzero." },
+          "message": { "text": "assigns clause in function strcasestr." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/strings.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 37,
-                  "startColumn": 10,
-                  "endLine": 37,
-                  "endColumn": 31,
-                  "byteLength": 21
+                  "startLine": 239,
+                  "startColumn": 12,
+                  "endLine": 239,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -2868,8 +2888,7 @@
           "kind": "pass",
           "level": "none",
           "message": {
-            "text":
-              "from clause of term *(dest + (0 .. strlen{Old}(src))) in function strcpy."
+            "text": "from clause of term \\result in function strcasestr."
           },
           "locations": [
             {
@@ -2879,11 +2898,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 355,
+                  "startLine": 233,
                   "startColumn": 12,
-                  "endLine": 355,
-                  "endColumn": 32,
-                  "byteLength": 20
+                  "endLine": 233,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -2893,7 +2912,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_delim." },
+          "message": { "text": "behavior default! in function strcat." },
           "locations": [
             {
               "physicalLocation": {
@@ -2902,11 +2921,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 286,
-                  "startColumn": 31,
-                  "endLine": 286,
-                  "endColumn": 55,
-                  "byteLength": 24
+                  "startLine": 420,
+                  "startColumn": 12,
+                  "endLine": 420,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -2916,7 +2935,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior partial in function strncat." },
+          "message": { "text": "valid_string_src." },
           "locations": [
             {
               "physicalLocation": {
@@ -2925,11 +2944,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 444,
-                  "startColumn": 12,
-                  "endLine": 444,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 408,
+                  "startColumn": 31,
+                  "endLine": 408,
+                  "endColumn": 53,
+                  "byteLength": 22
                 }
               }
             }
@@ -2939,7 +2958,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_ptr." },
+          "message": { "text": "valid_string_dest." },
           "locations": [
             {
               "physicalLocation": {
@@ -2948,11 +2967,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 418,
-                  "startColumn": 24,
-                  "endLine": 418,
-                  "endColumn": 39,
-                  "byteLength": 15
+                  "startLine": 409,
+                  "startColumn": 32,
+                  "endLine": 409,
+                  "endColumn": 50,
+                  "byteLength": 18
                 }
               }
             }
@@ -2962,7 +2981,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_ptr." },
+          "message": { "text": "room_string." },
           "locations": [
             {
               "physicalLocation": {
@@ -2971,11 +2990,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 109,
-                  "startColumn": 24,
-                  "endLine": 109,
-                  "endColumn": 39,
-                  "byteLength": 15
+                  "startLine": 410,
+                  "startColumn": 26,
+                  "endLine": 410,
+                  "endColumn": 70,
+                  "byteLength": 44
                 }
               }
             }
@@ -2985,7 +3004,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strdup." },
+          "message": { "text": "sum_of_lengths." },
           "locations": [
             {
               "physicalLocation": {
@@ -2994,11 +3013,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 484,
-                  "startColumn": 12,
-                  "endLine": 484,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 413,
+                  "startColumn": 28,
+                  "endLine": 413,
+                  "endColumn": 76,
+                  "byteLength": 48
                 }
               }
             }
@@ -3008,7 +3027,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "equal_contents." },
+          "message": { "text": "initialization." },
           "locations": [
             {
               "physicalLocation": {
@@ -3017,11 +3036,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 357,
-                  "startColumn": 28,
-                  "endLine": 357,
-                  "endColumn": 49,
-                  "byteLength": 21
+                  "startLine": 416,
+                  "startColumn": 4,
+                  "endLine": 416,
+                  "endColumn": 60,
+                  "byteLength": 56
                 }
               }
             }
@@ -3031,7 +3050,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strstr." },
+          "message": { "text": "dest_null_terminated." },
           "locations": [
             {
               "physicalLocation": {
@@ -3040,11 +3059,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 229,
-                  "startColumn": 12,
-                  "endLine": 229,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 417,
+                  "startColumn": 34,
+                  "endLine": 417,
+                  "endColumn": 77,
+                  "byteLength": 43
                 }
               }
             }
@@ -3054,9 +3073,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strchrnul."
-          },
+          "message": { "text": "result_ptr." },
           "locations": [
             {
               "physicalLocation": {
@@ -3065,11 +3082,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 176,
-                  "startColumn": 12,
-                  "endLine": 176,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 418,
+                  "startColumn": 24,
+                  "endLine": 418,
+                  "endColumn": 39,
+                  "byteLength": 15
                 }
               }
             }
@@ -3079,7 +3096,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_src." },
+          "message": { "text": "assigns clause in function strcat." },
           "locations": [
             {
               "physicalLocation": {
@@ -3088,11 +3105,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 93,
-                  "startColumn": 24,
-                  "endLine": 93,
-                  "endColumn": 51,
-                  "byteLength": 27
+                  "startLine": 411,
+                  "startColumn": 12,
+                  "endLine": 411,
+                  "endColumn": 58,
+                  "byteLength": 46
                 }
               }
             }
@@ -3102,7 +3119,10 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_src." },
+          "message": {
+            "text":
+              "from clause of term *(dest +\n                      (strlen{Old}(dest) ..\n                                           strlen{Old}(dest) +\n                                           strlen{Old}(src))) in function strcat."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -3111,11 +3131,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 384,
-                  "startColumn": 31,
-                  "endLine": 384,
-                  "endColumn": 53,
-                  "byteLength": 22
+                  "startLine": 411,
+                  "startColumn": 12,
+                  "endLine": 411,
+                  "endColumn": 58,
+                  "byteLength": 46
                 }
               }
             }
@@ -3126,7 +3146,7 @@
           "kind": "pass",
           "level": "none",
           "message": {
-            "text": "from clause of term \\result in function strcmp."
+            "text": "from clause of term \\result in function strcat."
           },
           "locations": [
             {
@@ -3136,9 +3156,9 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 139,
+                  "startLine": 414,
                   "startColumn": 12,
-                  "endLine": 139,
+                  "endLine": 414,
                   "endColumn": 19,
                   "byteLength": 7
                 }
@@ -3150,7 +3170,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strdup." },
+          "message": { "text": "behavior default in function strchr." },
           "locations": [
             {
               "physicalLocation": {
@@ -3159,9 +3179,9 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 484,
+                  "startLine": 173,
                   "startColumn": 12,
-                  "endLine": 484,
+                  "endLine": 173,
                   "endColumn": 13,
                   "byteLength": 1
                 }
@@ -3173,20 +3193,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "s_initialized." },
+          "message": { "text": "behavior default! in function strchr." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/strings.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 38,
-                  "startColumn": 39,
-                  "endLine": 38,
-                  "endColumn": 75,
-                  "byteLength": 36
+                  "startLine": 173,
+                  "startColumn": 12,
+                  "endLine": 173,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -3196,7 +3216,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "s_null." },
+          "message": { "text": "behavior found in function strchr." },
           "locations": [
             {
               "physicalLocation": {
@@ -3205,11 +3225,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 310,
-                  "startColumn": 20,
-                  "endLine": 310,
-                  "endColumn": 30,
-                  "byteLength": 10
+                  "startLine": 173,
+                  "startColumn": 12,
+                  "endLine": 173,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -3219,20 +3239,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "WcsLen." },
+          "message": { "text": "behavior not_found in function strchr." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 230,
-                  "startColumn": 4,
-                  "endLine": 232,
-                  "endColumn": 63,
-                  "byteLength": 147
+                  "startLine": 173,
+                  "startColumn": 12,
+                  "endLine": 173,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -3242,7 +3262,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_subset." },
+          "message": { "text": "valid_string_s." },
           "locations": [
             {
               "physicalLocation": {
@@ -3251,11 +3271,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 306,
-                  "startColumn": 27,
-                  "endLine": 306,
-                  "endColumn": 72,
-                  "byteLength": 45
+                  "startLine": 157,
+                  "startColumn": 29,
+                  "endLine": 157,
+                  "endColumn": 49,
+                  "byteLength": 20
                 }
               }
             }
@@ -3265,7 +3285,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_dest." },
+          "message": { "text": "char_found." },
           "locations": [
             {
               "physicalLocation": {
@@ -3274,11 +3294,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 424,
-                  "startColumn": 32,
-                  "endLine": 424,
-                  "endColumn": 50,
-                  "byteLength": 18
+                  "startLine": 160,
+                  "startColumn": 24,
+                  "endLine": 160,
+                  "endColumn": 35,
+                  "byteLength": 11
                 }
               }
             }
@@ -3288,7 +3308,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_subset." },
+          "message": { "text": "char_not_found." },
           "locations": [
             {
               "physicalLocation": {
@@ -3297,11 +3317,34 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 321,
-                  "startColumn": 27,
-                  "endLine": 322,
-                  "endColumn": 65,
-                  "byteLength": 85
+                  "startLine": 167,
+                  "startColumn": 28,
+                  "endLine": 167,
+                  "endColumn": 40,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_char." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 161,
+                  "startColumn": 25,
+                  "endLine": 161,
+                  "endColumn": 44,
+                  "byteLength": 19
                 }
               }
             }
@@ -3311,7 +3354,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s." },
+          "message": { "text": "result_same_base." },
           "locations": [
             {
               "physicalLocation": {
@@ -3320,11 +3363,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 197,
-                  "startColumn": 29,
-                  "endLine": 197,
-                  "endColumn": 49,
-                  "byteLength": 20
+                  "startLine": 162,
+                  "startColumn": 30,
+                  "endLine": 162,
+                  "endColumn": 66,
+                  "byteLength": 36
                 }
               }
             }
@@ -3334,7 +3377,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_ptr." },
+          "message": { "text": "result_in_length." },
           "locations": [
             {
               "physicalLocation": {
@@ -3343,11 +3386,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 99,
-                  "startColumn": 24,
-                  "endLine": 99,
-                  "endColumn": 39,
-                  "byteLength": 15
+                  "startLine": 163,
+                  "startColumn": 30,
+                  "endLine": 163,
+                  "endColumn": 59,
+                  "byteLength": 29
                 }
               }
             }
@@ -3357,7 +3400,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strlcat." },
+          "message": { "text": "result_valid_string." },
           "locations": [
             {
               "physicalLocation": {
@@ -3366,11 +3409,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 455,
-                  "startColumn": 14,
-                  "endLine": 455,
-                  "endColumn": 21,
-                  "byteLength": 7
+                  "startLine": 164,
+                  "startColumn": 33,
+                  "endLine": 164,
+                  "endColumn": 59,
+                  "byteLength": 26
                 }
               }
             }
@@ -3380,7 +3423,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "disjoint clause in function strtok_r." },
+          "message": { "text": "result_first_occur." },
           "locations": [
             {
               "physicalLocation": {
@@ -3389,11 +3432,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 327,
-                  "startColumn": 12,
-                  "endLine": 327,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 165,
+                  "startColumn": 32,
+                  "endLine": 165,
+                  "endColumn": 79,
+                  "byteLength": 47
                 }
               }
             }
@@ -3403,10 +3446,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text":
-              "from clause of term *(__fc_strtok_ptr + (0 ..)) in function strtok."
-          },
+          "message": { "text": "result_null." },
           "locations": [
             {
               "physicalLocation": {
@@ -3415,11 +3455,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 269,
-                  "startColumn": 12,
-                  "endLine": 269,
-                  "endColumn": 32,
-                  "byteLength": 20
+                  "startLine": 168,
+                  "startColumn": 25,
+                  "endLine": 168,
+                  "endColumn": 41,
+                  "byteLength": 16
                 }
               }
             }
@@ -3429,7 +3469,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_nstring_src." },
+          "message": { "text": "result_null_or_same_base." },
           "locations": [
             {
               "physicalLocation": {
@@ -3438,11 +3478,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 363,
-                  "startColumn": 32,
-                  "endLine": 363,
-                  "endColumn": 58,
-                  "byteLength": 26
+                  "startLine": 171,
+                  "startColumn": 4,
+                  "endLine": 171,
+                  "endColumn": 60,
+                  "byteLength": 56
                 }
               }
             }
@@ -3452,9 +3492,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term *saveptr in function strtok_r."
-          },
+          "message": { "text": "assigns clause in function strchr." },
           "locations": [
             {
               "physicalLocation": {
@@ -3463,11 +3501,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 294,
-                  "startColumn": 10,
-                  "endLine": 294,
-                  "endColumn": 18,
-                  "byteLength": 8
+                  "startLine": 173,
+                  "startColumn": 12,
+                  "endLine": 173,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -3478,7 +3516,7 @@
           "kind": "pass",
           "level": "none",
           "message": {
-            "text": "from clause of term \\result in function stpcpy."
+            "text": "from clause of term \\result in function strchr."
           },
           "locations": [
             {
@@ -3488,9 +3526,9 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 401,
+                  "startLine": 158,
                   "startColumn": 12,
-                  "endLine": 401,
+                  "endLine": 158,
                   "endColumn": 19,
                   "byteLength": 7
                 }
@@ -3502,9 +3540,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function memset."
-          },
+          "message": { "text": "behavior default! in function strchrnul." },
           "locations": [
             {
               "physicalLocation": {
@@ -3513,11 +3549,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 117,
+                  "startLine": 179,
                   "startColumn": 12,
-                  "endLine": 117,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "endLine": 179,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -3527,7 +3563,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_src." },
+          "message": { "text": "valid_string_s." },
           "locations": [
             {
               "physicalLocation": {
@@ -3536,11 +3572,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 105,
-                  "startColumn": 24,
-                  "endLine": 105,
-                  "endColumn": 51,
-                  "byteLength": 27
+                  "startLine": 175,
+                  "startColumn": 29,
+                  "endLine": 175,
+                  "endColumn": 49,
+                  "byteLength": 20
                 }
               }
             }
@@ -3550,20 +3586,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "wcslen_neg." },
+          "message": { "text": "result_same_base." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 199,
-                  "startColumn": 4,
-                  "endLine": 202,
-                  "endColumn": 22,
-                  "byteLength": 113
+                  "startLine": 177,
+                  "startColumn": 30,
+                  "endLine": 177,
+                  "endColumn": 64,
+                  "byteLength": 34
                 }
               }
             }
@@ -3573,7 +3609,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_internal_str." },
+          "message": { "text": "assigns clause in function strchrnul." },
           "locations": [
             {
               "physicalLocation": {
@@ -3582,11 +3618,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 519,
-                  "startColumn": 33,
-                  "endLine": 519,
-                  "endColumn": 60,
-                  "byteLength": 27
+                  "startLine": 179,
+                  "startColumn": 12,
+                  "endLine": 179,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -3596,7 +3632,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strncpy." },
+          "message": {
+            "text": "from clause of term \\result in function strchrnul."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -3605,11 +3643,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 378,
+                  "startLine": 176,
                   "startColumn": 12,
-                  "endLine": 378,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "endLine": 176,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -3619,7 +3657,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_reject." },
+          "message": { "text": "behavior default! in function strcmp." },
           "locations": [
             {
               "physicalLocation": {
@@ -3628,11 +3666,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 198,
-                  "startColumn": 34,
-                  "endLine": 198,
-                  "endColumn": 59,
-                  "byteLength": 25
+                  "startLine": 142,
+                  "startColumn": 11,
+                  "endLine": 142,
+                  "endColumn": 17,
+                  "byteLength": 6
                 }
               }
             }
@@ -3642,20 +3680,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "wcschr_def." },
+          "message": { "text": "valid_string_s1." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 266,
-                  "startColumn": 4,
-                  "endLine": 269,
-                  "endColumn": 29,
-                  "byteLength": 153
+                  "startLine": 137,
+                  "startColumn": 30,
+                  "endLine": 137,
+                  "endColumn": 51,
+                  "byteLength": 21
                 }
               }
             }
@@ -3665,20 +3703,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "wcslen_shift." },
+          "message": { "text": "valid_string_s2." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 222,
-                  "startColumn": 4,
-                  "endLine": 224,
-                  "endColumn": 55,
-                  "byteLength": 117
+                  "startLine": 138,
+                  "startColumn": 30,
+                  "endLine": 138,
+                  "endColumn": 51,
+                  "byteLength": 21
                 }
               }
             }
@@ -3688,7 +3726,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "not_first_call." },
+          "message": { "text": "acsl_c_equiv." },
           "locations": [
             {
               "physicalLocation": {
@@ -3697,11 +3735,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 311,
-                  "startColumn": 29,
-                  "endLine": 311,
-                  "endColumn": 46,
-                  "byteLength": 17
+                  "startLine": 140,
+                  "startColumn": 26,
+                  "endLine": 140,
+                  "endColumn": 50,
+                  "byteLength": 24
                 }
               }
             }
@@ -3711,7 +3749,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_null_or_in_haystack." },
+          "message": { "text": "assigns clause in function strcmp." },
           "locations": [
             {
               "physicalLocation": {
@@ -3720,11 +3758,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 225,
-                  "startColumn": 4,
-                  "endLine": 227,
-                  "endColumn": 59,
-                  "byteLength": 141
+                  "startLine": 142,
+                  "startColumn": 11,
+                  "endLine": 142,
+                  "endColumn": 17,
+                  "byteLength": 6
                 }
               }
             }
@@ -3734,7 +3772,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s1." },
+          "message": {
+            "text": "from clause of term \\result in function strcmp."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -3743,11 +3783,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 144,
-                  "startColumn": 30,
-                  "endLine": 144,
-                  "endColumn": 55,
-                  "byteLength": 25
+                  "startLine": 139,
+                  "startColumn": 12,
+                  "endLine": 139,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -3757,9 +3797,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strtok."
-          },
+          "message": { "text": "behavior default! in function strcoll." },
           "locations": [
             {
               "physicalLocation": {
@@ -3768,10 +3806,10 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 263,
-                  "startColumn": 12,
-                  "endLine": 263,
-                  "endColumn": 19,
+                  "startLine": 155,
+                  "startColumn": 11,
+                  "endLine": 155,
+                  "endColumn": 18,
                   "byteLength": 7
                 }
               }
@@ -3782,7 +3820,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_src." },
+          "message": { "text": "valid_string_s1." },
           "locations": [
             {
               "physicalLocation": {
@@ -3791,11 +3829,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 351,
-                  "startColumn": 31,
-                  "endLine": 351,
-                  "endColumn": 53,
-                  "byteLength": 22
+                  "startLine": 151,
+                  "startColumn": 30,
+                  "endLine": 151,
+                  "endColumn": 51,
+                  "byteLength": 21
                 }
               }
             }
@@ -3805,7 +3843,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_bounded." },
+          "message": { "text": "valid_string_s2." },
           "locations": [
             {
               "physicalLocation": {
@@ -3814,11 +3852,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 133,
-                  "startColumn": 28,
-                  "endLine": 133,
-                  "endColumn": 64,
-                  "byteLength": 36
+                  "startLine": 152,
+                  "startColumn": 30,
+                  "endLine": 152,
+                  "endColumn": 51,
+                  "byteLength": 21
                 }
               }
             }
@@ -3828,7 +3866,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "acsl_c_equiv." },
+          "message": { "text": "assigns clause in function strcoll." },
           "locations": [
             {
               "physicalLocation": {
@@ -3837,11 +3875,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 147,
-                  "startColumn": 26,
-                  "endLine": 147,
-                  "endColumn": 53,
-                  "byteLength": 27
+                  "startLine": 155,
+                  "startColumn": 11,
+                  "endLine": 155,
+                  "endColumn": 18,
+                  "byteLength": 7
                 }
               }
             }
@@ -3852,7 +3890,7 @@
           "kind": "pass",
           "level": "none",
           "message": {
-            "text": "allocates/frees clause in function strndup."
+            "text": "from clause of term \\result in function strcoll."
           },
           "locations": [
             {
@@ -3862,11 +3900,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 506,
+                  "startLine": 153,
                   "startColumn": 12,
-                  "endLine": 506,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "endLine": 153,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -3876,7 +3914,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_nul_terminated." },
+          "message": { "text": "behavior default! in function strcpy." },
           "locations": [
             {
               "physicalLocation": {
@@ -3885,11 +3923,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 344,
-                  "startColumn": 35,
-                  "endLine": 344,
-                  "endColumn": 51,
-                  "byteLength": 16
+                  "startLine": 360,
+                  "startColumn": 12,
+                  "endLine": 360,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -3899,7 +3937,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_dest." },
+          "message": { "text": "valid_string_src." },
           "locations": [
             {
               "physicalLocation": {
@@ -3908,11 +3946,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 409,
-                  "startColumn": 32,
-                  "endLine": 409,
-                  "endColumn": 50,
-                  "byteLength": 18
+                  "startLine": 351,
+                  "startColumn": 31,
+                  "endLine": 351,
+                  "endColumn": 53,
+                  "byteLength": 22
                 }
               }
             }
@@ -3922,7 +3960,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strcpy." },
+          "message": { "text": "room_string." },
           "locations": [
             {
               "physicalLocation": {
@@ -3931,11 +3969,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 360,
-                  "startColumn": 12,
-                  "endLine": 360,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 352,
+                  "startColumn": 26,
+                  "endLine": 352,
+                  "endColumn": 55,
+                  "byteLength": 29
                 }
               }
             }
@@ -3945,20 +3983,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "strlen_not_zero." },
+          "message": { "text": "separation." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 95,
+                  "startLine": 354,
                   "startColumn": 4,
-                  "endLine": 97,
-                  "endColumn": 58,
-                  "byteLength": 120
+                  "endLine": 354,
+                  "endColumn": 59,
+                  "byteLength": 55
                 }
               }
             }
@@ -3968,7 +4006,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_null_or_same_base." },
+          "message": { "text": "equal_contents." },
           "locations": [
             {
               "physicalLocation": {
@@ -3977,11 +4015,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 216,
-                  "startColumn": 4,
-                  "endLine": 216,
-                  "endColumn": 60,
-                  "byteLength": 56
+                  "startLine": 357,
+                  "startColumn": 28,
+                  "endLine": 357,
+                  "endColumn": 49,
+                  "byteLength": 21
                 }
               }
             }
@@ -3991,9 +4029,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strncat."
-          },
+          "message": { "text": "result_ptr." },
           "locations": [
             {
               "physicalLocation": {
@@ -4002,11 +4038,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 441,
-                  "startColumn": 12,
-                  "endLine": 441,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 358,
+                  "startColumn": 24,
+                  "endLine": 358,
+                  "endColumn": 39,
+                  "byteLength": 15
                 }
               }
             }
@@ -4016,7 +4052,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "danglingness." },
+          "message": { "text": "assigns clause in function strcpy." },
           "locations": [
             {
               "physicalLocation": {
@@ -4025,11 +4061,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 60,
-                  "startColumn": 30,
-                  "endLine": 60,
-                  "endColumn": 49,
-                  "byteLength": 19
+                  "startLine": 355,
+                  "startColumn": 12,
+                  "endLine": 355,
+                  "endColumn": 32,
+                  "byteLength": 20
                 }
               }
             }
@@ -4041,7 +4077,7 @@
           "level": "none",
           "message": {
             "text":
-              "from clause of term *(*saveptr + (0 ..)) in function strtok_r."
+              "from clause of term *(dest + (0 .. strlen{Old}(src))) in function strcpy."
           },
           "locations": [
             {
@@ -4051,11 +4087,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 313,
+                  "startLine": 355,
                   "startColumn": 12,
-                  "endLine": 313,
-                  "endColumn": 27,
-                  "byteLength": 15
+                  "endLine": 355,
+                  "endColumn": 32,
+                  "byteLength": 20
                 }
               }
             }
@@ -4065,7 +4101,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "can_allocate." },
+          "message": {
+            "text": "from clause of term \\result in function strcpy."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -4074,11 +4112,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 491,
-                  "startColumn": 26,
-                  "endLine": 491,
-                  "endColumn": 60,
-                  "byteLength": 34
+                  "startLine": 356,
+                  "startColumn": 12,
+                  "endLine": 356,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -4088,7 +4126,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s." },
+          "message": { "text": "behavior default! in function strcspn." },
           "locations": [
             {
               "physicalLocation": {
@@ -4097,11 +4135,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 175,
-                  "startColumn": 29,
-                  "endLine": 175,
-                  "endColumn": 49,
-                  "byteLength": 20
+                  "startLine": 202,
+                  "startColumn": 14,
+                  "endLine": 202,
+                  "endColumn": 21,
+                  "byteLength": 7
                 }
               }
             }
@@ -4111,7 +4149,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_haystack." },
+          "message": { "text": "valid_string_s." },
           "locations": [
             {
               "physicalLocation": {
@@ -4120,11 +4158,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 231,
-                  "startColumn": 36,
-                  "endLine": 231,
-                  "endColumn": 63,
-                  "byteLength": 27
+                  "startLine": 197,
+                  "startColumn": 29,
+                  "endLine": 197,
+                  "endColumn": 49,
+                  "byteLength": 20
                 }
               }
             }
@@ -4134,9 +4172,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function memchr."
-          },
+          "message": { "text": "valid_string_reject." },
           "locations": [
             {
               "physicalLocation": {
@@ -4145,11 +4181,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 76,
-                  "startColumn": 12,
-                  "endLine": 76,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 198,
+                  "startColumn": 34,
+                  "endLine": 198,
+                  "endColumn": 59,
+                  "byteLength": 25
                 }
               }
             }
@@ -4159,7 +4195,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strtok_r." },
+          "message": { "text": "result_bounded." },
           "locations": [
             {
               "physicalLocation": {
@@ -4168,11 +4204,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 288,
-                  "startColumn": 10,
-                  "endLine": 288,
-                  "endColumn": 16,
-                  "byteLength": 6
+                  "startLine": 200,
+                  "startColumn": 28,
+                  "endLine": 200,
+                  "endColumn": 53,
+                  "byteLength": 25
                 }
               }
             }
@@ -4182,7 +4218,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "complete clause in function strtok." },
+          "message": { "text": "assigns clause in function strcspn." },
           "locations": [
             {
               "physicalLocation": {
@@ -4191,11 +4227,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 283,
-                  "startColumn": 12,
-                  "endLine": 283,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 202,
+                  "startColumn": 14,
+                  "endLine": 202,
+                  "endColumn": 21,
+                  "byteLength": 7
                 }
               }
             }
@@ -4206,8 +4242,7 @@
           "kind": "pass",
           "level": "none",
           "message": {
-            "text":
-              "from clause of term __fc_heap_status in function strdup."
+            "text": "from clause of term \\result in function strcspn."
           },
           "locations": [
             {
@@ -4217,34 +4252,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 473,
+                  "startLine": 199,
                   "startColumn": 12,
-                  "endLine": 473,
-                  "endColumn": 28,
-                  "byteLength": 16
-                }
-              }
-            }
-          ]
-        },
-        {
-          "ruleId": "user-spec",
-          "kind": "pass",
-          "level": "none",
-          "message": { "text": "valid_string_s2." },
-          "locations": [
-            {
-              "physicalLocation": {
-                "artifactLocation": {
-                  "uri": "libc/strings.h",
-                  "uriBaseId": "FRAMAC_SHARE"
-                },
-                "region": {
-                  "startLine": 47,
-                  "startColumn": 28,
-                  "endLine": 47,
-                  "endColumn": 49,
-                  "byteLength": 21
+                  "endLine": 199,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -4254,7 +4266,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function memset." },
+          "message": { "text": "behavior allocation in function strdup." },
           "locations": [
             {
               "physicalLocation": {
@@ -4263,11 +4275,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 116,
+                  "startLine": 484,
                   "startColumn": 12,
-                  "endLine": 116,
-                  "endColumn": 32,
-                  "byteLength": 20
+                  "endLine": 484,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -4277,7 +4289,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "logic_spec." },
+          "message": { "text": "behavior default! in function strdup." },
           "locations": [
             {
               "physicalLocation": {
@@ -4286,11 +4298,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 63,
-                  "startColumn": 24,
-                  "endLine": 63,
-                  "endColumn": 73,
-                  "byteLength": 49
+                  "startLine": 484,
+                  "startColumn": 12,
+                  "endLine": 484,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -4300,7 +4312,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strxfrm." },
+          "message": { "text": "behavior no_allocation in function strdup." },
           "locations": [
             {
               "physicalLocation": {
@@ -4309,11 +4321,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 463,
-                  "startColumn": 14,
-                  "endLine": 463,
-                  "endColumn": 21,
-                  "byteLength": 7
+                  "startLine": 484,
+                  "startColumn": 12,
+                  "endLine": 484,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -4323,7 +4335,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_accept." },
+          "message": { "text": "valid_string_s." },
           "locations": [
             {
               "physicalLocation": {
@@ -4332,11 +4344,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 205,
-                  "startColumn": 34,
-                  "endLine": 205,
-                  "endColumn": 59,
-                  "byteLength": 25
+                  "startLine": 468,
+                  "startColumn": 29,
+                  "endLine": 468,
+                  "endColumn": 49,
+                  "byteLength": 20
                 }
               }
             }
@@ -4346,10 +4358,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text":
-              "from clause of term *(dest + (0 .. n - 1)) in function strxfrm."
-          },
+          "message": { "text": "can_allocate." },
           "locations": [
             {
               "physicalLocation": {
@@ -4358,11 +4367,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 460,
-                  "startColumn": 12,
-                  "endLine": 460,
-                  "endColumn": 26,
-                  "byteLength": 14
+                  "startLine": 472,
+                  "startColumn": 26,
+                  "endLine": 472,
+                  "endColumn": 49,
+                  "byteLength": 23
                 }
               }
             }
@@ -4372,7 +4381,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior resume_str in function strtok." },
+          "message": { "text": "cannot_allocate." },
           "locations": [
             {
               "physicalLocation": {
@@ -4381,11 +4390,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 283,
-                  "startColumn": 12,
-                  "endLine": 283,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 479,
+                  "startColumn": 29,
+                  "endLine": 479,
+                  "endColumn": 53,
+                  "byteLength": 24
                 }
               }
             }
@@ -4395,20 +4404,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "wcslen_create." },
+          "message": { "text": "allocation." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 226,
-                  "startColumn": 4,
-                  "endLine": 228,
-                  "endColumn": 52,
-                  "byteLength": 115
+                  "startLine": 475,
+                  "startColumn": 24,
+                  "endLine": 475,
+                  "endColumn": 49,
+                  "byteLength": 25
                 }
               }
             }
@@ -4418,20 +4427,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "memchr_def." },
+          "message": { "text": "result_valid_string_and_same_contents." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 57,
+                  "startLine": 477,
                   "startColumn": 4,
-                  "endLine": 59,
-                  "endColumn": 62,
-                  "byteLength": 134
+                  "endLine": 477,
+                  "endColumn": 51,
+                  "byteLength": 47
                 }
               }
             }
@@ -4441,7 +4450,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "s_null." },
+          "message": { "text": "result_null." },
           "locations": [
             {
               "physicalLocation": {
@@ -4450,11 +4459,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 267,
-                  "startColumn": 20,
-                  "endLine": 267,
-                  "endColumn": 30,
-                  "byteLength": 10
+                  "startLine": 482,
+                  "startColumn": 25,
+                  "endLine": 482,
+                  "endColumn": 41,
+                  "byteLength": 16
                 }
               }
             }
@@ -4464,7 +4473,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function memcmp." },
+          "message": { "text": "assigns clause in function strdup." },
           "locations": [
             {
               "physicalLocation": {
@@ -4473,11 +4482,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 65,
-                  "startColumn": 11,
-                  "endLine": 65,
-                  "endColumn": 17,
-                  "byteLength": 6
+                  "startLine": 473,
+                  "startColumn": 12,
+                  "endLine": 473,
+                  "endColumn": 28,
+                  "byteLength": 16
                 }
               }
             }
@@ -4487,7 +4496,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strerror." },
+          "message": { "text": "assigns clause in function strdup." },
           "locations": [
             {
               "physicalLocation": {
@@ -4496,9 +4505,9 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 347,
+                  "startLine": 484,
                   "startColumn": 12,
-                  "endLine": 347,
+                  "endLine": 484,
                   "endColumn": 13,
                   "byteLength": 1
                 }
@@ -4510,7 +4519,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior complete in function strncpy." },
+          "message": { "text": "assigns clause in function strdup." },
           "locations": [
             {
               "physicalLocation": {
@@ -4519,9 +4528,9 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 378,
+                  "startLine": 484,
                   "startColumn": 12,
-                  "endLine": 378,
+                  "endLine": 484,
                   "endColumn": 13,
                   "byteLength": 1
                 }
@@ -4533,7 +4542,10 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_dest." },
+          "message": {
+            "text":
+              "from clause of term __fc_heap_status in function strdup."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -4542,11 +4554,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 92,
-                  "startColumn": 25,
-                  "endLine": 92,
-                  "endColumn": 48,
-                  "byteLength": 23
+                  "startLine": 473,
+                  "startColumn": 12,
+                  "endLine": 473,
+                  "endColumn": 28,
+                  "byteLength": 16
                 }
               }
             }
@@ -4556,7 +4568,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "char_not_found." },
+          "message": {
+            "text": "from clause of term \\result in function strdup."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -4565,11 +4579,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 85,
-                  "startColumn": 28,
-                  "endLine": 85,
-                  "endColumn": 49,
-                  "byteLength": 21
+                  "startLine": 474,
+                  "startColumn": 12,
+                  "endLine": 474,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -4580,7 +4594,7 @@
           "kind": "pass",
           "level": "none",
           "message": {
-            "text": "from clause of term \\result in function strtok_r."
+            "text": "from clause of term \\result in function strdup."
           },
           "locations": [
             {
@@ -4590,9 +4604,9 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 305,
+                  "startLine": 470,
                   "startColumn": 12,
-                  "endLine": 305,
+                  "endLine": 470,
                   "endColumn": 19,
                   "byteLength": 7
                 }
@@ -4604,7 +4618,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strpbrk." },
+          "message": {
+            "text": "from clause of term \\result in function strdup."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -4613,11 +4629,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 218,
+                  "startLine": 480,
                   "startColumn": 12,
-                  "endLine": 218,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "endLine": 480,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -4650,7 +4666,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_bounded." },
+          "message": { "text": "allocates/frees clause in function strdup." },
           "locations": [
             {
               "physicalLocation": {
@@ -4659,11 +4675,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 200,
-                  "startColumn": 28,
-                  "endLine": 200,
-                  "endColumn": 53,
-                  "byteLength": 25
+                  "startLine": 484,
+                  "startColumn": 12,
+                  "endLine": 484,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -4673,9 +4689,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term *(s + (0 ..)) in function strtok_r."
-          },
+          "message": { "text": "behavior default! in function strerror." },
           "locations": [
             {
               "physicalLocation": {
@@ -4684,11 +4698,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 304,
+                  "startLine": 347,
                   "startColumn": 12,
-                  "endLine": 304,
-                  "endColumn": 18,
-                  "byteLength": 6
+                  "endLine": 347,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -4698,7 +4712,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strcmp." },
+          "message": { "text": "result_internal_str." },
           "locations": [
             {
               "physicalLocation": {
@@ -4707,11 +4721,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 142,
-                  "startColumn": 11,
-                  "endLine": 142,
-                  "endColumn": 17,
-                  "byteLength": 6
+                  "startLine": 343,
+                  "startColumn": 33,
+                  "endLine": 343,
+                  "endColumn": 59,
+                  "byteLength": 26
                 }
               }
             }
@@ -4721,7 +4735,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "char_found." },
+          "message": { "text": "result_nul_terminated." },
           "locations": [
             {
               "physicalLocation": {
@@ -4730,11 +4744,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 160,
-                  "startColumn": 24,
-                  "endLine": 160,
-                  "endColumn": 35,
-                  "byteLength": 11
+                  "startLine": 344,
+                  "startColumn": 35,
+                  "endLine": 344,
+                  "endColumn": 51,
+                  "byteLength": 16
                 }
               }
             }
@@ -4744,7 +4758,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "saveptr_subset." },
+          "message": { "text": "result_valid_string." },
           "locations": [
             {
               "physicalLocation": {
@@ -4753,11 +4767,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 323,
-                  "startColumn": 28,
-                  "endLine": 323,
-                  "endColumn": 67,
-                  "byteLength": 39
+                  "startLine": 345,
+                  "startColumn": 33,
+                  "endLine": 345,
+                  "endColumn": 59,
+                  "byteLength": 26
                 }
               }
             }
@@ -4767,7 +4781,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_saveptr." },
+          "message": { "text": "assigns clause in function strerror." },
           "locations": [
             {
               "physicalLocation": {
@@ -4776,11 +4790,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 287,
-                  "startColumn": 26,
-                  "endLine": 287,
-                  "endColumn": 41,
-                  "byteLength": 15
+                  "startLine": 347,
+                  "startColumn": 12,
+                  "endLine": 347,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -4790,7 +4804,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strndup." },
+          "message": {
+            "text": "from clause of term \\result in function strerror."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -4799,11 +4815,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 506,
+                  "startLine": 342,
                   "startColumn": 12,
-                  "endLine": 506,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "endLine": 342,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -4813,20 +4829,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "strlen_sup." },
+          "message": { "text": "behavior default! in function strlcat." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 103,
-                  "startColumn": 4,
-                  "endLine": 105,
-                  "endColumn": 51,
-                  "byteLength": 108
+                  "startLine": 455,
+                  "startColumn": 14,
+                  "endLine": 455,
+                  "endColumn": 21,
+                  "byteLength": 7
                 }
               }
             }
@@ -4836,20 +4852,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "StrLen." },
+          "message": { "text": "valid_string_src." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 132,
-                  "startColumn": 4,
-                  "endLine": 135,
-                  "endColumn": 38,
-                  "byteLength": 185
+                  "startLine": 448,
+                  "startColumn": 31,
+                  "endLine": 448,
+                  "endColumn": 53,
+                  "byteLength": 22
                 }
               }
             }
@@ -4859,7 +4875,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strncat." },
+          "message": { "text": "valid_string_dest." },
           "locations": [
             {
               "physicalLocation": {
@@ -4868,11 +4884,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 431,
-                  "startColumn": 12,
-                  "endLine": 431,
-                  "endColumn": 58,
-                  "byteLength": 46
+                  "startLine": 449,
+                  "startColumn": 32,
+                  "endLine": 449,
+                  "endColumn": 50,
+                  "byteLength": 18
                 }
               }
             }
@@ -4882,20 +4898,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "dynamic_allocation." },
+          "message": { "text": "room_nstring." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_alloc_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 39,
-                  "startColumn": 4,
-                  "endLine": 41,
-                  "endColumn": 61,
-                  "byteLength": 110
+                  "startLine": 450,
+                  "startColumn": 27,
+                  "endLine": 450,
+                  "endColumn": 48,
+                  "byteLength": 21
                 }
               }
             }
@@ -4905,7 +4921,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "s_not_null." },
+          "message": { "text": "bounded_result." },
           "locations": [
             {
               "physicalLocation": {
@@ -4914,11 +4930,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 298,
-                  "startColumn": 24,
-                  "endLine": 298,
-                  "endColumn": 34,
-                  "byteLength": 10
+                  "startLine": 453,
+                  "startColumn": 28,
+                  "endLine": 453,
+                  "endColumn": 65,
+                  "byteLength": 37
                 }
               }
             }
@@ -4928,7 +4944,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "room_string." },
+          "message": { "text": "assigns clause in function strlcat." },
           "locations": [
             {
               "physicalLocation": {
@@ -4937,11 +4953,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 397,
-                  "startColumn": 26,
-                  "endLine": 397,
-                  "endColumn": 55,
-                  "byteLength": 29
+                  "startLine": 451,
+                  "startColumn": 12,
+                  "endLine": 451,
+                  "endColumn": 33,
+                  "byteLength": 21
                 }
               }
             }
@@ -4951,7 +4967,10 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "saveptr_subset." },
+          "message": {
+            "text":
+              "from clause of term *(dest + (strlen{Old}(dest) .. n)) in function strlcat."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -4960,11 +4979,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 308,
-                  "startColumn": 28,
-                  "endLine": 308,
-                  "endColumn": 54,
-                  "byteLength": 26
+                  "startLine": 451,
+                  "startColumn": 12,
+                  "endLine": 451,
+                  "endColumn": 33,
+                  "byteLength": 21
                 }
               }
             }
@@ -4974,7 +4993,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strsignal." },
+          "message": {
+            "text": "from clause of term \\result in function strlcat."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -4983,11 +5004,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 523,
+                  "startLine": 452,
                   "startColumn": 12,
-                  "endLine": 523,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "endLine": 452,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -4997,7 +5018,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strlen." },
+          "message": { "text": "behavior default! in function strlcpy." },
           "locations": [
             {
               "physicalLocation": {
@@ -5006,11 +5027,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 129,
-                  "startColumn": 14,
-                  "endLine": 129,
-                  "endColumn": 20,
-                  "byteLength": 6
+                  "startLine": 393,
+                  "startColumn": 7,
+                  "endLine": 393,
+                  "endColumn": 14,
+                  "byteLength": 7
                 }
               }
             }
@@ -5020,7 +5041,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strsep." },
+          "message": { "text": "valid_string_src." },
           "locations": [
             {
               "physicalLocation": {
@@ -5029,11 +5050,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 331,
-                  "startColumn": 12,
-                  "endLine": 331,
-                  "endColumn": 20,
-                  "byteLength": 8
+                  "startLine": 384,
+                  "startColumn": 31,
+                  "endLine": 384,
+                  "endColumn": 53,
+                  "byteLength": 22
                 }
               }
             }
@@ -5043,7 +5064,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_internal_str." },
+          "message": { "text": "room_nstring." },
           "locations": [
             {
               "physicalLocation": {
@@ -5052,11 +5073,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 343,
-                  "startColumn": 33,
-                  "endLine": 343,
-                  "endColumn": 59,
-                  "byteLength": 26
+                  "startLine": 385,
+                  "startColumn": 27,
+                  "endLine": 385,
+                  "endColumn": 48,
+                  "byteLength": 21
                 }
               }
             }
@@ -5066,20 +5087,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "MemSet." },
+          "message": { "text": "separation." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 68,
+                  "startLine": 387,
                   "startColumn": 4,
-                  "endLine": 70,
-                  "endColumn": 63,
-                  "byteLength": 135
+                  "endLine": 387,
+                  "endColumn": 61,
+                  "byteLength": 57
                 }
               }
             }
@@ -5089,10 +5110,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text":
-              "from clause of term *((char *)s + (0 .. n - 1)) in function memset."
-          },
+          "message": { "text": "initialization." },
           "locations": [
             {
               "physicalLocation": {
@@ -5101,11 +5119,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 116,
-                  "startColumn": 12,
-                  "endLine": 116,
-                  "endColumn": 32,
-                  "byteLength": 20
+                  "startLine": 390,
+                  "startColumn": 28,
+                  "endLine": 390,
+                  "endColumn": 73,
+                  "byteLength": 45
                 }
               }
             }
@@ -5115,7 +5133,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strrchr." },
+          "message": { "text": "bounded_result." },
           "locations": [
             {
               "physicalLocation": {
@@ -5124,11 +5142,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 195,
-                  "startColumn": 12,
-                  "endLine": 195,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 391,
+                  "startColumn": 28,
+                  "endLine": 391,
+                  "endColumn": 50,
+                  "byteLength": 22
                 }
               }
             }
@@ -5138,7 +5156,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strndup." },
+          "message": { "text": "assigns clause in function strlcpy." },
           "locations": [
             {
               "physicalLocation": {
@@ -5147,11 +5165,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 506,
+                  "startLine": 388,
                   "startColumn": 12,
-                  "endLine": 506,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "endLine": 388,
+                  "endColumn": 24,
+                  "byteLength": 12
                 }
               }
             }
@@ -5161,7 +5179,10 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_subset." },
+          "message": {
+            "text":
+              "from clause of term *(dest + (0 .. n - 1)) in function strlcpy."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -5170,11 +5191,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 264,
-                  "startColumn": 27,
-                  "endLine": 264,
-                  "endColumn": 72,
-                  "byteLength": 45
+                  "startLine": 388,
+                  "startColumn": 12,
+                  "endLine": 388,
+                  "endColumn": 24,
+                  "byteLength": 12
                 }
               }
             }
@@ -5185,7 +5206,7 @@
           "kind": "pass",
           "level": "none",
           "message": {
-            "text": "behavior no_allocation in function strndup."
+            "text": "from clause of term \\result in function strlcpy."
           },
           "locations": [
             {
@@ -5195,11 +5216,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 506,
+                  "startLine": 389,
                   "startColumn": 12,
-                  "endLine": 506,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "endLine": 389,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -5209,9 +5230,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "allocates/frees clause in function strndup."
-          },
+          "message": { "text": "behavior default! in function strlen." },
           "locations": [
             {
               "physicalLocation": {
@@ -5220,11 +5239,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 487,
+                  "startLine": 129,
                   "startColumn": 14,
-                  "endLine": 487,
-                  "endColumn": 21,
-                  "byteLength": 7
+                  "endLine": 129,
+                  "endColumn": 20,
+                  "byteLength": 6
                 }
               }
             }
@@ -5234,7 +5253,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strchr." },
+          "message": { "text": "valid_string_s." },
           "locations": [
             {
               "physicalLocation": {
@@ -5243,11 +5262,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 173,
-                  "startColumn": 12,
-                  "endLine": 173,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 125,
+                  "startColumn": 29,
+                  "endLine": 125,
+                  "endColumn": 49,
+                  "byteLength": 20
                 }
               }
             }
@@ -5257,20 +5276,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "wcsncmp_zero." },
+          "message": { "text": "acsl_c_equiv." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 252,
-                  "startColumn": 4,
-                  "endLine": 256,
-                  "endColumn": 53,
-                  "byteLength": 194
+                  "startLine": 127,
+                  "startColumn": 26,
+                  "endLine": 127,
+                  "endColumn": 46,
+                  "byteLength": 20
                 }
               }
             }
@@ -5280,9 +5299,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strcspn."
-          },
+          "message": { "text": "assigns clause in function strlen." },
           "locations": [
             {
               "physicalLocation": {
@@ -5291,11 +5308,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 199,
-                  "startColumn": 12,
-                  "endLine": 199,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 129,
+                  "startColumn": 14,
+                  "endLine": 129,
+                  "endColumn": 20,
+                  "byteLength": 6
                 }
               }
             }
@@ -5305,7 +5322,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strchrnul." },
+          "message": {
+            "text": "from clause of term \\result in function strlen."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -5314,11 +5333,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 179,
+                  "startLine": 126,
                   "startColumn": 12,
-                  "endLine": 179,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "endLine": 126,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -5328,20 +5347,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_char." },
+          "message": { "text": "behavior default! in function strncasecmp." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/strings.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 161,
-                  "startColumn": 25,
-                  "endLine": 161,
-                  "endColumn": 44,
-                  "byteLength": 19
+                  "startLine": 57,
+                  "startColumn": 11,
+                  "endLine": 57,
+                  "endColumn": 22,
+                  "byteLength": 11
                 }
               }
             }
@@ -5351,20 +5370,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "WcsChr." },
+          "message": { "text": "valid_string_s1." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/strings.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 266,
-                  "startColumn": 4,
-                  "endLine": 269,
-                  "endColumn": 29,
-                  "byteLength": 153
+                  "startLine": 53,
+                  "startColumn": 28,
+                  "endLine": 53,
+                  "endColumn": 53,
+                  "byteLength": 25
                 }
               }
             }
@@ -5374,22 +5393,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strlcat."
-          },
+          "message": { "text": "valid_string_s2." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/strings.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 452,
-                  "startColumn": 12,
-                  "endLine": 452,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 54,
+                  "startColumn": 28,
+                  "endLine": 54,
+                  "endColumn": 53,
+                  "byteLength": 25
                 }
               }
             }
@@ -5399,20 +5416,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_same_base." },
+          "message": { "text": "assigns clause in function strncasecmp." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/strings.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 162,
-                  "startColumn": 30,
-                  "endLine": 162,
-                  "endColumn": 66,
-                  "byteLength": 36
+                  "startLine": 57,
+                  "startColumn": 11,
+                  "endLine": 57,
+                  "endColumn": 22,
+                  "byteLength": 11
                 }
               }
             }
@@ -5422,20 +5439,22 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s." },
+          "message": {
+            "text": "from clause of term \\result in function strncasecmp."
+          },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/string.h",
+                  "uri": "libc/strings.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 157,
-                  "startColumn": 29,
-                  "endLine": 157,
-                  "endColumn": 49,
-                  "byteLength": 20
+                  "startLine": 55,
+                  "startColumn": 10,
+                  "endLine": 55,
+                  "endColumn": 17,
+                  "byteLength": 7
                 }
               }
             }
@@ -5445,7 +5464,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strcspn." },
+          "message": { "text": "behavior complete in function strncat." },
           "locations": [
             {
               "physicalLocation": {
@@ -5454,11 +5473,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 202,
-                  "startColumn": 14,
-                  "endLine": 202,
-                  "endColumn": 21,
-                  "byteLength": 7
+                  "startLine": 444,
+                  "startColumn": 12,
+                  "endLine": 444,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -5468,7 +5487,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "bounded_result." },
+          "message": { "text": "behavior default! in function strncat." },
           "locations": [
             {
               "physicalLocation": {
@@ -5477,11 +5496,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 453,
-                  "startColumn": 28,
-                  "endLine": 453,
-                  "endColumn": 65,
-                  "byteLength": 37
+                  "startLine": 444,
+                  "startColumn": 12,
+                  "endLine": 444,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -5491,7 +5510,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "copied_contents." },
+          "message": { "text": "behavior partial in function strncat." },
           "locations": [
             {
               "physicalLocation": {
@@ -5500,11 +5519,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 98,
-                  "startColumn": 29,
-                  "endLine": 98,
-                  "endColumn": 76,
-                  "byteLength": 47
+                  "startLine": 444,
+                  "startColumn": 12,
+                  "endLine": 444,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -5514,7 +5533,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_valid_string." },
+          "message": { "text": "valid_nstring_src." },
           "locations": [
             {
               "physicalLocation": {
@@ -5523,10 +5542,10 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 345,
-                  "startColumn": 33,
-                  "endLine": 345,
-                  "endColumn": 59,
+                  "startLine": 423,
+                  "startColumn": 32,
+                  "endLine": 423,
+                  "endColumn": 58,
                   "byteLength": 26
                 }
               }
@@ -5537,7 +5556,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "room_string." },
+          "message": { "text": "valid_string_dest." },
           "locations": [
             {
               "physicalLocation": {
@@ -5546,11 +5565,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 410,
-                  "startColumn": 26,
-                  "endLine": 410,
-                  "endColumn": 70,
-                  "byteLength": 44
+                  "startLine": 424,
+                  "startColumn": 32,
+                  "endLine": 424,
+                  "endColumn": 50,
+                  "byteLength": 18
                 }
               }
             }
@@ -5560,20 +5579,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "strlen_zero." },
+          "message": { "text": "room_string." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 99,
-                  "startColumn": 4,
-                  "endLine": 101,
-                  "endColumn": 59,
-                  "byteLength": 117
+                  "startLine": 430,
+                  "startColumn": 26,
+                  "endLine": 430,
+                  "endColumn": 74,
+                  "byteLength": 48
                 }
               }
             }
@@ -5583,9 +5602,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strdup."
-          },
+          "message": { "text": "room_string." },
           "locations": [
             {
               "physicalLocation": {
@@ -5594,11 +5611,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 470,
-                  "startColumn": 12,
-                  "endLine": 470,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 438,
+                  "startColumn": 26,
+                  "endLine": 438,
+                  "endColumn": 64,
+                  "byteLength": 38
                 }
               }
             }
@@ -5608,7 +5625,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strcasestr." },
+          "message": { "text": "valid_string_src_fits." },
           "locations": [
             {
               "physicalLocation": {
@@ -5617,11 +5634,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 239,
-                  "startColumn": 12,
-                  "endLine": 239,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 429,
+                  "startColumn": 35,
+                  "endLine": 429,
+                  "endColumn": 77,
+                  "byteLength": 42
                 }
               }
             }
@@ -5631,20 +5648,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strcasecmp." },
+          "message": { "text": "valid_string_src_too_large." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/strings.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 50,
-                  "startColumn": 11,
-                  "endLine": 50,
-                  "endColumn": 21,
-                  "byteLength": 10
+                  "startLine": 437,
+                  "startColumn": 4,
+                  "endLine": 437,
+                  "endColumn": 49,
+                  "byteLength": 45
                 }
               }
             }
@@ -5654,7 +5671,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "bounded_result." },
+          "message": { "text": "result_ptr." },
           "locations": [
             {
               "physicalLocation": {
@@ -5663,11 +5680,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 391,
-                  "startColumn": 28,
-                  "endLine": 391,
-                  "endColumn": 50,
-                  "byteLength": 22
+                  "startLine": 427,
+                  "startColumn": 24,
+                  "endLine": 427,
+                  "endColumn": 39,
+                  "byteLength": 15
                 }
               }
             }
@@ -5677,7 +5694,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strncat." },
+          "message": { "text": "sum_of_lengths." },
           "locations": [
             {
               "physicalLocation": {
@@ -5686,11 +5703,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 439,
-                  "startColumn": 12,
-                  "endLine": 439,
-                  "endColumn": 48,
-                  "byteLength": 36
+                  "startLine": 434,
+                  "startColumn": 28,
+                  "endLine": 434,
+                  "endColumn": 76,
+                  "byteLength": 48
                 }
               }
             }
@@ -5700,10 +5717,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text":
-              "from clause of term *(dest + (strlen{Old}(dest) .. n)) in function strlcat."
-          },
+          "message": { "text": "sum_of_bounded_lengths." },
           "locations": [
             {
               "physicalLocation": {
@@ -5712,11 +5726,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 451,
-                  "startColumn": 12,
-                  "endLine": 451,
-                  "endColumn": 33,
-                  "byteLength": 21
+                  "startLine": 442,
+                  "startColumn": 36,
+                  "endLine": 442,
+                  "endColumn": 74,
+                  "byteLength": 38
                 }
               }
             }
@@ -5726,20 +5740,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "strlen_create." },
+          "message": { "text": "assigns clause in function strncat." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 111,
-                  "startColumn": 4,
-                  "endLine": 113,
-                  "endColumn": 51,
-                  "byteLength": 111
+                  "startLine": 431,
+                  "startColumn": 12,
+                  "endLine": 431,
+                  "endColumn": 58,
+                  "byteLength": 46
                 }
               }
             }
@@ -5749,22 +5763,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strcasecmp."
-          },
+          "message": { "text": "assigns clause in function strncat." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/strings.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 48,
-                  "startColumn": 10,
-                  "endLine": 48,
-                  "endColumn": 17,
-                  "byteLength": 7
+                  "startLine": 425,
+                  "startColumn": 12,
+                  "endLine": 425,
+                  "endColumn": 50,
+                  "byteLength": 38
                 }
               }
             }
@@ -5774,7 +5786,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior resume_str in function strtok_r." },
+          "message": { "text": "assigns clause in function strncat." },
           "locations": [
             {
               "physicalLocation": {
@@ -5783,11 +5795,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 327,
+                  "startLine": 439,
                   "startColumn": 12,
-                  "endLine": 327,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "endLine": 439,
+                  "endColumn": 48,
+                  "byteLength": 36
                 }
               }
             }
@@ -5797,7 +5809,10 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function memmove." },
+          "message": {
+            "text":
+              "from clause of term *(dest +\n                      (strlen{Old}(dest) ..\n                                           strlen{Old}(dest) +\n                                           strlen{Old}(src))) in function strncat."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -5806,11 +5821,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 111,
+                  "startLine": 431,
                   "startColumn": 12,
-                  "endLine": 111,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "endLine": 431,
+                  "endColumn": 58,
+                  "byteLength": 46
                 }
               }
             }
@@ -5820,7 +5835,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strtok_r." },
+          "message": {
+            "text": "from clause of term \\result in function strncat."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -5829,11 +5846,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 303,
+                  "startLine": 433,
                   "startColumn": 12,
-                  "endLine": 303,
-                  "endColumn": 20,
-                  "byteLength": 8
+                  "endLine": 433,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -5843,7 +5860,10 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior found in function strrchr." },
+          "message": {
+            "text":
+              "from clause of term *(dest + (strlen{Old}(dest) .. strlen{Old}(dest) + n)) in function strncat."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -5852,11 +5872,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 195,
+                  "startLine": 425,
                   "startColumn": 12,
-                  "endLine": 195,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "endLine": 425,
+                  "endColumn": 50,
+                  "byteLength": 38
                 }
               }
             }
@@ -5866,7 +5886,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_dest." },
+          "message": {
+            "text": "from clause of term \\result in function strncat."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -5875,11 +5897,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 449,
-                  "startColumn": 32,
-                  "endLine": 449,
-                  "endColumn": 50,
-                  "byteLength": 18
+                  "startLine": 426,
+                  "startColumn": 12,
+                  "endLine": 426,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -5889,7 +5911,10 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s." },
+          "message": {
+            "text":
+              "from clause of term *(dest + (strlen{Old}(dest) .. strlen{Old}(dest) + n)) in function strncat."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -5898,11 +5923,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 212,
-                  "startColumn": 29,
-                  "endLine": 212,
-                  "endColumn": 49,
-                  "byteLength": 20
+                  "startLine": 439,
+                  "startColumn": 12,
+                  "endLine": 439,
+                  "endColumn": 48,
+                  "byteLength": 36
                 }
               }
             }
@@ -5912,7 +5937,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "cannot_allocate." },
+          "message": {
+            "text": "from clause of term \\result in function strncat."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -5921,11 +5948,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 479,
-                  "startColumn": 29,
-                  "endLine": 479,
-                  "endColumn": 53,
-                  "byteLength": 24
+                  "startLine": 441,
+                  "startColumn": 12,
+                  "endLine": 441,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -5935,20 +5962,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "strlen_create_shift." },
+          "message": { "text": "behavior default! in function strncmp." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 115,
-                  "startColumn": 4,
-                  "endLine": 117,
-                  "endColumn": 62,
-                  "byteLength": 143
+                  "startLine": 149,
+                  "startColumn": 11,
+                  "endLine": 149,
+                  "endColumn": 18,
+                  "byteLength": 7
                 }
               }
             }
@@ -5958,9 +5985,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strtok_r."
-          },
+          "message": { "text": "valid_string_s1." },
           "locations": [
             {
               "physicalLocation": {
@@ -5969,11 +5994,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 292,
-                  "startColumn": 10,
-                  "endLine": 292,
-                  "endColumn": 17,
-                  "byteLength": 7
+                  "startLine": 144,
+                  "startColumn": 30,
+                  "endLine": 144,
+                  "endColumn": 55,
+                  "byteLength": 25
                 }
               }
             }
@@ -5983,7 +6008,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_nul_terminated." },
+          "message": { "text": "valid_string_s2." },
           "locations": [
             {
               "physicalLocation": {
@@ -5992,11 +6017,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 520,
-                  "startColumn": 35,
-                  "endLine": 520,
-                  "endColumn": 51,
-                  "byteLength": 16
+                  "startLine": 145,
+                  "startColumn": 30,
+                  "endLine": 145,
+                  "endColumn": 55,
+                  "byteLength": 25
                 }
               }
             }
@@ -6006,7 +6031,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "sum_of_lengths." },
+          "message": { "text": "acsl_c_equiv." },
           "locations": [
             {
               "physicalLocation": {
@@ -6015,11 +6040,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 413,
-                  "startColumn": 28,
-                  "endLine": 413,
-                  "endColumn": 76,
-                  "byteLength": 48
+                  "startLine": 147,
+                  "startColumn": 26,
+                  "endLine": 147,
+                  "endColumn": 53,
+                  "byteLength": 27
                 }
               }
             }
@@ -6029,7 +6054,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_null." },
+          "message": { "text": "assigns clause in function strncmp." },
           "locations": [
             {
               "physicalLocation": {
@@ -6038,11 +6063,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 86,
-                  "startColumn": 25,
-                  "endLine": 86,
-                  "endColumn": 41,
-                  "byteLength": 16
+                  "startLine": 149,
+                  "startColumn": 11,
+                  "endLine": 149,
+                  "endColumn": 18,
+                  "byteLength": 7
                 }
               }
             }
@@ -6053,8 +6078,7 @@
           "kind": "pass",
           "level": "none",
           "message": {
-            "text":
-              "from clause of term __fc_heap_status in function strndup."
+            "text": "from clause of term \\result in function strncmp."
           },
           "locations": [
             {
@@ -6064,11 +6088,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 492,
+                  "startLine": 146,
                   "startColumn": 12,
-                  "endLine": 492,
-                  "endColumn": 28,
-                  "byteLength": 16
+                  "endLine": 146,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -6078,7 +6102,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s2." },
+          "message": { "text": "behavior complete in function strncpy." },
           "locations": [
             {
               "physicalLocation": {
@@ -6087,11 +6111,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 152,
-                  "startColumn": 30,
-                  "endLine": 152,
-                  "endColumn": 51,
-                  "byteLength": 21
+                  "startLine": 378,
+                  "startColumn": 12,
+                  "endLine": 378,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -6101,7 +6125,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "separation." },
+          "message": { "text": "behavior default! in function strncpy." },
           "locations": [
             {
               "physicalLocation": {
@@ -6110,11 +6134,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 366,
-                  "startColumn": 4,
-                  "endLine": 366,
-                  "endColumn": 43,
-                  "byteLength": 39
+                  "startLine": 378,
+                  "startColumn": 12,
+                  "endLine": 378,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -6124,9 +6148,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strchr."
-          },
+          "message": { "text": "behavior partial in function strncpy." },
           "locations": [
             {
               "physicalLocation": {
@@ -6135,11 +6157,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 158,
+                  "startLine": 378,
                   "startColumn": 12,
-                  "endLine": 158,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "endLine": 378,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -6149,7 +6171,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_dest." },
+          "message": { "text": "valid_nstring_src." },
           "locations": [
             {
               "physicalLocation": {
@@ -6158,11 +6180,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 104,
-                  "startColumn": 25,
-                  "endLine": 104,
-                  "endColumn": 48,
-                  "byteLength": 23
+                  "startLine": 363,
+                  "startColumn": 32,
+                  "endLine": 363,
+                  "endColumn": 58,
+                  "byteLength": 26
                 }
               }
             }
@@ -6172,9 +6194,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term *saveptr in function strtok_r."
-          },
+          "message": { "text": "room_nstring." },
           "locations": [
             {
               "physicalLocation": {
@@ -6183,11 +6203,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 303,
-                  "startColumn": 12,
-                  "endLine": 303,
-                  "endColumn": 20,
-                  "byteLength": 8
+                  "startLine": 364,
+                  "startColumn": 27,
+                  "endLine": 364,
+                  "endColumn": 50,
+                  "byteLength": 23
                 }
               }
             }
@@ -6197,9 +6217,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strtok."
-          },
+          "message": { "text": "separation." },
           "locations": [
             {
               "physicalLocation": {
@@ -6208,11 +6226,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 275,
-                  "startColumn": 12,
-                  "endLine": 275,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 366,
+                  "startColumn": 4,
+                  "endLine": 366,
+                  "endColumn": 43,
+                  "byteLength": 39
                 }
               }
             }
@@ -6222,7 +6240,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "copied_contents." },
+          "message": { "text": "src_fits." },
           "locations": [
             {
               "physicalLocation": {
@@ -6231,11 +6249,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 108,
-                  "startColumn": 29,
-                  "endLine": 108,
-                  "endColumn": 76,
-                  "byteLength": 47
+                  "startLine": 372,
+                  "startColumn": 22,
+                  "endLine": 372,
+                  "endColumn": 37,
+                  "byteLength": 15
                 }
               }
             }
@@ -6245,7 +6263,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strsep." },
+          "message": { "text": "src_too_long." },
           "locations": [
             {
               "physicalLocation": {
@@ -6254,11 +6272,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 334,
-                  "startColumn": 12,
-                  "endLine": 334,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 375,
+                  "startColumn": 26,
+                  "endLine": 375,
+                  "endColumn": 42,
+                  "byteLength": 16
                 }
               }
             }
@@ -6268,10 +6286,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text":
-              "from clause of term *(dest +\n                      (strlen{Old}(dest) ..\n                                           strlen{Old}(dest) +\n                                           strlen{Old}(src))) in function strncat."
-          },
+          "message": { "text": "result_ptr." },
           "locations": [
             {
               "physicalLocation": {
@@ -6280,11 +6295,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 431,
-                  "startColumn": 12,
-                  "endLine": 431,
-                  "endColumn": 58,
-                  "byteLength": 46
+                  "startLine": 369,
+                  "startColumn": 24,
+                  "endLine": 369,
+                  "endColumn": 39,
+                  "byteLength": 15
                 }
               }
             }
@@ -6294,7 +6309,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "sum_of_lengths." },
+          "message": { "text": "initialization." },
           "locations": [
             {
               "physicalLocation": {
@@ -6303,11 +6318,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 434,
+                  "startLine": 370,
                   "startColumn": 28,
-                  "endLine": 434,
-                  "endColumn": 76,
-                  "byteLength": 48
+                  "endLine": 370,
+                  "endColumn": 57,
+                  "byteLength": 29
                 }
               }
             }
@@ -6317,7 +6332,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strcpy." },
+          "message": { "text": "equal_after_copy." },
           "locations": [
             {
               "physicalLocation": {
@@ -6326,11 +6341,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 355,
-                  "startColumn": 12,
-                  "endLine": 355,
-                  "endColumn": 32,
-                  "byteLength": 20
+                  "startLine": 373,
+                  "startColumn": 30,
+                  "endLine": 373,
+                  "endColumn": 51,
+                  "byteLength": 21
                 }
               }
             }
@@ -6340,10 +6355,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text":
-              "from clause of term *((char *)dest + (0 .. n - 1)) in function memmove."
-          },
+          "message": { "text": "equal_prefix." },
           "locations": [
             {
               "physicalLocation": {
@@ -6352,11 +6364,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 106,
-                  "startColumn": 12,
-                  "endLine": 106,
-                  "endColumn": 35,
-                  "byteLength": 23
+                  "startLine": 376,
+                  "startColumn": 26,
+                  "endLine": 376,
+                  "endColumn": 60,
+                  "byteLength": 34
                 }
               }
             }
@@ -6366,20 +6378,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "wcslen_before_null." },
+          "message": { "text": "assigns clause in function strncpy." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 204,
-                  "startColumn": 4,
-                  "endLine": 205,
-                  "endColumn": 76,
-                  "byteLength": 105
+                  "startLine": 367,
+                  "startColumn": 12,
+                  "endLine": 367,
+                  "endColumn": 26,
+                  "byteLength": 14
                 }
               }
             }
@@ -6389,7 +6401,10 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "ptr_subset." },
+          "message": {
+            "text":
+              "from clause of term *(dest + (0 .. n - 1)) in function strncpy."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -6398,11 +6413,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 279,
-                  "startColumn": 24,
-                  "endLine": 279,
-                  "endColumn": 77,
-                  "byteLength": 53
+                  "startLine": 367,
+                  "startColumn": 12,
+                  "endLine": 367,
+                  "endColumn": 26,
+                  "byteLength": 14
                 }
               }
             }
@@ -6413,7 +6428,7 @@
           "kind": "pass",
           "level": "none",
           "message": {
-            "text": "from clause of term \\result in function strcasestr."
+            "text": "from clause of term \\result in function strncpy."
           },
           "locations": [
             {
@@ -6423,9 +6438,9 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 233,
+                  "startLine": 368,
                   "startColumn": 12,
-                  "endLine": 233,
+                  "endLine": 368,
                   "endColumn": 19,
                   "byteLength": 7
                 }
@@ -6437,7 +6452,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "allocates/frees clause in function strdup." },
+          "message": { "text": "behavior allocation in function strndup." },
           "locations": [
             {
               "physicalLocation": {
@@ -6446,9 +6461,9 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 484,
+                  "startLine": 506,
                   "startColumn": 12,
-                  "endLine": 484,
+                  "endLine": 506,
                   "endColumn": 13,
                   "byteLength": 1
                 }
@@ -6460,7 +6475,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strncat." },
+          "message": { "text": "behavior default! in function strndup." },
           "locations": [
             {
               "physicalLocation": {
@@ -6469,9 +6484,9 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 444,
+                  "startLine": 506,
                   "startColumn": 12,
-                  "endLine": 444,
+                  "endLine": 506,
                   "endColumn": 13,
                   "byteLength": 1
                 }
@@ -6483,7 +6498,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function memmove." },
+          "message": {
+            "text": "behavior no_allocation in function strndup."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -6492,11 +6509,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 106,
+                  "startLine": 506,
                   "startColumn": 12,
-                  "endLine": 106,
-                  "endColumn": 35,
-                  "byteLength": 23
+                  "endLine": 506,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -6506,7 +6523,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_src." },
+          "message": { "text": "valid_string_s." },
           "locations": [
             {
               "physicalLocation": {
@@ -6515,11 +6532,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 448,
-                  "startColumn": 31,
-                  "endLine": 448,
-                  "endColumn": 53,
-                  "byteLength": 22
+                  "startLine": 486,
+                  "startColumn": 29,
+                  "endLine": 486,
+                  "endColumn": 49,
+                  "byteLength": 20
                 }
               }
             }
@@ -6529,7 +6546,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strcspn." },
+          "message": { "text": "can_allocate." },
           "locations": [
             {
               "physicalLocation": {
@@ -6538,11 +6555,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 202,
-                  "startColumn": 14,
-                  "endLine": 202,
-                  "endColumn": 21,
-                  "byteLength": 7
+                  "startLine": 491,
+                  "startColumn": 26,
+                  "endLine": 491,
+                  "endColumn": 60,
+                  "byteLength": 34
                 }
               }
             }
@@ -6552,7 +6569,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function memcmp." },
+          "message": { "text": "cannot_allocate." },
           "locations": [
             {
               "physicalLocation": {
@@ -6561,11 +6578,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 65,
-                  "startColumn": 11,
-                  "endLine": 65,
-                  "endColumn": 17,
-                  "byteLength": 6
+                  "startLine": 501,
+                  "startColumn": 29,
+                  "endLine": 501,
+                  "endColumn": 64,
+                  "byteLength": 35
                 }
               }
             }
@@ -6575,7 +6592,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strncmp." },
+          "message": { "text": "allocation." },
           "locations": [
             {
               "physicalLocation": {
@@ -6584,11 +6601,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 149,
-                  "startColumn": 11,
-                  "endLine": 149,
-                  "endColumn": 18,
-                  "byteLength": 7
+                  "startLine": 495,
+                  "startColumn": 24,
+                  "endLine": 495,
+                  "endColumn": 60,
+                  "byteLength": 36
                 }
               }
             }
@@ -6599,44 +6616,21 @@
           "kind": "pass",
           "level": "none",
           "message": {
-            "text": "from clause of term \\result in function strncasecmp."
+            "text": "result_valid_string_bounded_and_same_prefix."
           },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/strings.h",
-                  "uriBaseId": "FRAMAC_SHARE"
-                },
-                "region": {
-                  "startLine": 55,
-                  "startColumn": 10,
-                  "endLine": 55,
-                  "endColumn": 17,
-                  "byteLength": 7
-                }
-              }
-            }
-          ]
-        },
-        {
-          "ruleId": "user-spec",
-          "kind": "pass",
-          "level": "none",
-          "message": { "text": "memcmp_strlen_shift_left." },
-          "locations": [
-            {
-              "physicalLocation": {
-                "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 127,
+                  "startLine": 497,
                   "startColumn": 4,
-                  "endLine": 130,
-                  "endColumn": 38,
-                  "byteLength": 184
+                  "endLine": 499,
+                  "endColumn": 29,
+                  "byteLength": 124
                 }
               }
             }
@@ -6646,9 +6640,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function memcmp."
-          },
+          "message": { "text": "result_null." },
           "locations": [
             {
               "physicalLocation": {
@@ -6657,11 +6649,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 61,
-                  "startColumn": 12,
-                  "endLine": 61,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 504,
+                  "startColumn": 25,
+                  "endLine": 504,
+                  "endColumn": 41,
+                  "byteLength": 16
                 }
               }
             }
@@ -6671,20 +6663,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "src_fits." },
+          "message": { "text": "assigns clause in function strndup." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
                   "uri": "libc/string.h",
-                  "uriBaseId": "FRAMAC_SHARE"
-                },
-                "region": {
-                  "startLine": 372,
-                  "startColumn": 22,
-                  "endLine": 372,
-                  "endColumn": 37,
-                  "byteLength": 15
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 492,
+                  "startColumn": 12,
+                  "endLine": 492,
+                  "endColumn": 28,
+                  "byteLength": 16
                 }
               }
             }
@@ -6694,9 +6686,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strncmp."
-          },
+          "message": { "text": "assigns clause in function strndup." },
           "locations": [
             {
               "physicalLocation": {
@@ -6705,11 +6695,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 146,
+                  "startLine": 506,
                   "startColumn": 12,
-                  "endLine": 146,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "endLine": 506,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -6719,20 +6709,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "memcmp_zero." },
+          "message": { "text": "assigns clause in function strndup." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 39,
-                  "startColumn": 4,
-                  "endLine": 42,
-                  "endColumn": 70,
-                  "byteLength": 170
+                  "startLine": 506,
+                  "startColumn": 12,
+                  "endLine": 506,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -6742,7 +6732,10 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_in_length." },
+          "message": {
+            "text":
+              "from clause of term __fc_heap_status in function strndup."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -6751,11 +6744,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 163,
-                  "startColumn": 30,
-                  "endLine": 163,
-                  "endColumn": 59,
-                  "byteLength": 29
+                  "startLine": 492,
+                  "startColumn": 12,
+                  "endLine": 492,
+                  "endColumn": 28,
+                  "byteLength": 16
                 }
               }
             }
@@ -6765,7 +6758,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "initialization." },
+          "message": {
+            "text": "from clause of term \\result in function strndup."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -6774,11 +6769,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 57,
-                  "startColumn": 32,
-                  "endLine": 57,
-                  "endColumn": 68,
-                  "byteLength": 36
+                  "startLine": 493,
+                  "startColumn": 12,
+                  "endLine": 493,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -6788,20 +6783,22 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "StrNCmp." },
+          "message": {
+            "text": "from clause of term \\result in function strndup."
+          },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 155,
-                  "startColumn": 4,
-                  "endLine": 159,
-                  "endColumn": 53,
-                  "byteLength": 191
+                  "startLine": 488,
+                  "startColumn": 12,
+                  "endLine": 488,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -6836,20 +6833,22 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strncasecmp." },
+          "message": {
+            "text": "allocates/frees clause in function strndup."
+          },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/strings.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 57,
-                  "startColumn": 11,
-                  "endLine": 57,
-                  "endColumn": 22,
-                  "byteLength": 11
+                  "startLine": 487,
+                  "startColumn": 14,
+                  "endLine": 487,
+                  "endColumn": 21,
+                  "byteLength": 7
                 }
               }
             }
@@ -6859,7 +6858,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strcoll." },
+          "message": {
+            "text": "allocates/frees clause in function strndup."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -6868,11 +6869,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 155,
-                  "startColumn": 11,
-                  "endLine": 155,
-                  "endColumn": 18,
-                  "byteLength": 7
+                  "startLine": 506,
+                  "startColumn": 12,
+                  "endLine": 506,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -6882,10 +6883,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text":
-              "from clause of term *(dest +\n                      (strlen{Old}(dest) ..\n                                           strlen{Old}(dest) +\n                                           strlen{Old}(src))) in function strcat."
-          },
+          "message": { "text": "behavior default! in function strnlen." },
           "locations": [
             {
               "physicalLocation": {
@@ -6894,11 +6892,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 411,
-                  "startColumn": 12,
-                  "endLine": 411,
-                  "endColumn": 58,
-                  "byteLength": 46
+                  "startLine": 135,
+                  "startColumn": 14,
+                  "endLine": 135,
+                  "endColumn": 21,
+                  "byteLength": 7
                 }
               }
             }
@@ -6908,7 +6906,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function memcpy." },
+          "message": { "text": "valid_string_s." },
           "locations": [
             {
               "physicalLocation": {
@@ -6917,11 +6915,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 101,
-                  "startColumn": 12,
-                  "endLine": 101,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 131,
+                  "startColumn": 29,
+                  "endLine": 131,
+                  "endColumn": 53,
+                  "byteLength": 24
                 }
               }
             }
@@ -6931,7 +6929,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "separation." },
+          "message": { "text": "result_bounded." },
           "locations": [
             {
               "physicalLocation": {
@@ -6940,11 +6938,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 399,
-                  "startColumn": 4,
-                  "endLine": 399,
-                  "endColumn": 59,
-                  "byteLength": 55
+                  "startLine": 133,
+                  "startColumn": 28,
+                  "endLine": 133,
+                  "endColumn": 64,
+                  "byteLength": 36
                 }
               }
             }
@@ -6954,7 +6952,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior new_str in function strtok." },
+          "message": { "text": "assigns clause in function strnlen." },
           "locations": [
             {
               "physicalLocation": {
@@ -6963,11 +6961,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 283,
-                  "startColumn": 12,
-                  "endLine": 283,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 135,
+                  "startColumn": 14,
+                  "endLine": 135,
+                  "endColumn": 21,
+                  "byteLength": 7
                 }
               }
             }
@@ -6977,7 +6975,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function memchr." },
+          "message": {
+            "text": "from clause of term \\result in function strnlen."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -6986,11 +6986,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 88,
+                  "startLine": 132,
                   "startColumn": 12,
-                  "endLine": 88,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "endLine": 132,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -7000,20 +7000,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "wcslen_sup." },
+          "message": { "text": "behavior default! in function strpbrk." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
                   "startLine": 218,
-                  "startColumn": 4,
-                  "endLine": 220,
-                  "endColumn": 52,
-                  "byteLength": 112
+                  "startColumn": 12,
+                  "endLine": 218,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -7023,9 +7023,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term *(s + (0 ..)) in function strtok."
-          },
+          "message": { "text": "valid_string_s." },
           "locations": [
             {
               "physicalLocation": {
@@ -7034,11 +7032,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 262,
-                  "startColumn": 12,
-                  "endLine": 262,
-                  "endColumn": 18,
-                  "byteLength": 6
+                  "startLine": 212,
+                  "startColumn": 29,
+                  "endLine": 212,
+                  "endColumn": 49,
+                  "byteLength": 20
                 }
               }
             }
@@ -7048,7 +7046,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s1." },
+          "message": { "text": "valid_string_accept." },
           "locations": [
             {
               "physicalLocation": {
@@ -7057,11 +7055,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 137,
-                  "startColumn": 30,
-                  "endLine": 137,
-                  "endColumn": 51,
-                  "byteLength": 21
+                  "startLine": 213,
+                  "startColumn": 34,
+                  "endLine": 213,
+                  "endColumn": 59,
+                  "byteLength": 25
                 }
               }
             }
@@ -7071,7 +7069,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_haystack." },
+          "message": { "text": "result_null_or_same_base." },
           "locations": [
             {
               "physicalLocation": {
@@ -7080,11 +7078,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 220,
-                  "startColumn": 36,
-                  "endLine": 220,
-                  "endColumn": 63,
-                  "byteLength": 27
+                  "startLine": 216,
+                  "startColumn": 4,
+                  "endLine": 216,
+                  "endColumn": 60,
+                  "byteLength": 56
                 }
               }
             }
@@ -7094,9 +7092,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term *stringp in function strsep."
-          },
+          "message": { "text": "assigns clause in function strpbrk." },
           "locations": [
             {
               "physicalLocation": {
@@ -7105,11 +7101,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 331,
+                  "startLine": 218,
                   "startColumn": 12,
-                  "endLine": 331,
-                  "endColumn": 20,
-                  "byteLength": 8
+                  "endLine": 218,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -7119,7 +7115,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "separation." },
+          "message": {
+            "text": "from clause of term \\result in function strpbrk."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -7128,11 +7126,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 387,
-                  "startColumn": 4,
-                  "endLine": 387,
-                  "endColumn": 61,
-                  "byteLength": 57
+                  "startLine": 214,
+                  "startColumn": 12,
+                  "endLine": 214,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -7142,7 +7140,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior found in function strchr." },
+          "message": { "text": "behavior default in function strrchr." },
           "locations": [
             {
               "physicalLocation": {
@@ -7151,9 +7149,9 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 173,
+                  "startLine": 195,
                   "startColumn": 12,
-                  "endLine": 173,
+                  "endLine": 195,
                   "endColumn": 13,
                   "byteLength": 1
                 }
@@ -7165,20 +7163,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "strcmp_zero." },
+          "message": { "text": "behavior default! in function strrchr." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 143,
-                  "startColumn": 4,
-                  "endLine": 147,
-                  "endColumn": 63,
-                  "byteLength": 170
+                  "startLine": 195,
+                  "startColumn": 12,
+                  "endLine": 195,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -7188,7 +7186,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s." },
+          "message": { "text": "behavior found in function strrchr." },
           "locations": [
             {
               "physicalLocation": {
@@ -7197,11 +7195,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 468,
-                  "startColumn": 29,
-                  "endLine": 468,
-                  "endColumn": 49,
-                  "byteLength": 20
+                  "startLine": 195,
+                  "startColumn": 12,
+                  "endLine": 195,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -7211,7 +7209,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior not_found in function strchr." },
+          "message": { "text": "behavior not_found in function strrchr." },
           "locations": [
             {
               "physicalLocation": {
@@ -7220,9 +7218,9 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 173,
+                  "startLine": 195,
                   "startColumn": 12,
-                  "endLine": 173,
+                  "endLine": 195,
                   "endColumn": 13,
                   "byteLength": 1
                 }
@@ -7234,20 +7232,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "WcsCmp." },
+          "message": { "text": "valid_string_s." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 240,
-                  "startColumn": 4,
-                  "endLine": 244,
-                  "endColumn": 63,
-                  "byteLength": 173
+                  "startLine": 181,
+                  "startColumn": 29,
+                  "endLine": 181,
+                  "endColumn": 49,
+                  "byteLength": 20
                 }
               }
             }
@@ -7257,7 +7255,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strtok_r." },
+          "message": { "text": "char_found." },
           "locations": [
             {
               "physicalLocation": {
@@ -7266,11 +7264,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 327,
-                  "startColumn": 12,
-                  "endLine": 327,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 184,
+                  "startColumn": 24,
+                  "endLine": 184,
+                  "endColumn": 35,
+                  "byteLength": 11
                 }
               }
             }
@@ -7280,7 +7278,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_null_or_same_base." },
+          "message": { "text": "char_not_found." },
           "locations": [
             {
               "physicalLocation": {
@@ -7289,11 +7287,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 193,
-                  "startColumn": 4,
-                  "endLine": 193,
-                  "endColumn": 60,
-                  "byteLength": 56
+                  "startLine": 189,
+                  "startColumn": 28,
+                  "endLine": 189,
+                  "endColumn": 40,
+                  "byteLength": 12
                 }
               }
             }
@@ -7303,7 +7301,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "initialization." },
+          "message": { "text": "result_char." },
           "locations": [
             {
               "physicalLocation": {
@@ -7312,11 +7310,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 416,
-                  "startColumn": 4,
-                  "endLine": 416,
-                  "endColumn": 60,
-                  "byteLength": 56
+                  "startLine": 185,
+                  "startColumn": 25,
+                  "endLine": 185,
+                  "endColumn": 38,
+                  "byteLength": 13
                 }
               }
             }
@@ -7326,7 +7324,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "equal_contents." },
+          "message": { "text": "result_same_base." },
           "locations": [
             {
               "physicalLocation": {
@@ -7335,11 +7333,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 402,
-                  "startColumn": 28,
-                  "endLine": 402,
-                  "endColumn": 49,
-                  "byteLength": 21
+                  "startLine": 186,
+                  "startColumn": 30,
+                  "endLine": 186,
+                  "endColumn": 66,
+                  "byteLength": 36
                 }
               }
             }
@@ -7349,20 +7347,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "strlen_pos_or_null." },
+          "message": { "text": "result_valid_string." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 78,
-                  "startColumn": 4,
-                  "endLine": 82,
-                  "endColumn": 40,
-                  "byteLength": 169
+                  "startLine": 187,
+                  "startColumn": 33,
+                  "endLine": 187,
+                  "endColumn": 59,
+                  "byteLength": 26
                 }
               }
             }
@@ -7372,7 +7370,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strdup." },
+          "message": { "text": "result_null." },
           "locations": [
             {
               "physicalLocation": {
@@ -7381,11 +7379,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 484,
-                  "startColumn": 12,
-                  "endLine": 484,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 190,
+                  "startColumn": 25,
+                  "endLine": 190,
+                  "endColumn": 41,
+                  "byteLength": 16
                 }
               }
             }
@@ -7395,7 +7393,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strdup." },
+          "message": { "text": "result_null_or_same_base." },
           "locations": [
             {
               "physicalLocation": {
@@ -7404,11 +7402,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 473,
-                  "startColumn": 12,
-                  "endLine": 473,
-                  "endColumn": 28,
-                  "byteLength": 16
+                  "startLine": 193,
+                  "startColumn": 4,
+                  "endLine": 193,
+                  "endColumn": 60,
+                  "byteLength": 56
                 }
               }
             }
@@ -7418,7 +7416,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_valid_string_and_same_contents." },
+          "message": { "text": "assigns clause in function strrchr." },
           "locations": [
             {
               "physicalLocation": {
@@ -7427,11 +7425,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 477,
-                  "startColumn": 4,
-                  "endLine": 477,
-                  "endColumn": 51,
-                  "byteLength": 47
+                  "startLine": 195,
+                  "startColumn": 12,
+                  "endLine": 195,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -7441,7 +7439,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strtok." },
+          "message": {
+            "text": "from clause of term \\result in function strrchr."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -7450,11 +7450,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 283,
+                  "startLine": 182,
                   "startColumn": 12,
-                  "endLine": 283,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "endLine": 182,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -7464,7 +7464,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "room_nstring." },
+          "message": { "text": "behavior default! in function strsep." },
           "locations": [
             {
               "physicalLocation": {
@@ -7473,11 +7473,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 450,
-                  "startColumn": 27,
-                  "endLine": 450,
-                  "endColumn": 48,
-                  "byteLength": 21
+                  "startLine": 334,
+                  "startColumn": 12,
+                  "endLine": 334,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -7487,20 +7487,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "memcmp_strlen_shift_right." },
+          "message": { "text": "valid_string_stringp." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 132,
-                  "startColumn": 4,
-                  "endLine": 135,
-                  "endColumn": 38,
-                  "byteLength": 185
+                  "startLine": 329,
+                  "startColumn": 35,
+                  "endLine": 329,
+                  "endColumn": 76,
+                  "byteLength": 41
                 }
               }
             }
@@ -7510,7 +7510,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "src_too_long." },
+          "message": { "text": "valid_string_delim." },
           "locations": [
             {
               "physicalLocation": {
@@ -7519,11 +7519,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 375,
-                  "startColumn": 26,
-                  "endLine": 375,
-                  "endColumn": 42,
-                  "byteLength": 16
+                  "startLine": 330,
+                  "startColumn": 33,
+                  "endLine": 330,
+                  "endColumn": 57,
+                  "byteLength": 24
                 }
               }
             }
@@ -7533,7 +7533,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strsignal." },
+          "message": { "text": "assigns clause in function strsep." },
           "locations": [
             {
               "physicalLocation": {
@@ -7542,11 +7542,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 523,
+                  "startLine": 331,
                   "startColumn": 12,
-                  "endLine": 523,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "endLine": 331,
+                  "endColumn": 20,
+                  "byteLength": 8
                 }
               }
             }
@@ -7556,7 +7556,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "can_allocate." },
+          "message": {
+            "text": "from clause of term *stringp in function strsep."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -7565,11 +7567,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 472,
-                  "startColumn": 26,
-                  "endLine": 472,
-                  "endColumn": 49,
-                  "byteLength": 23
+                  "startLine": 331,
+                  "startColumn": 12,
+                  "endLine": 331,
+                  "endColumn": 20,
+                  "byteLength": 8
                 }
               }
             }
@@ -7579,20 +7581,22 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "wcslen_pos_or_null." },
+          "message": {
+            "text": "from clause of term \\result in function strsep."
+          },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 193,
-                  "startColumn": 4,
-                  "endLine": 197,
-                  "endColumn": 41,
-                  "byteLength": 174
+                  "startLine": 332,
+                  "startColumn": 12,
+                  "endLine": 332,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -7602,20 +7606,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "strncmp_zero." },
+          "message": { "text": "behavior default! in function strsignal." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 155,
-                  "startColumn": 4,
-                  "endLine": 159,
-                  "endColumn": 53,
-                  "byteLength": 191
+                  "startLine": 523,
+                  "startColumn": 12,
+                  "endLine": 523,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -7625,20 +7629,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s1." },
+          "message": { "text": "result_internal_str." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/strings.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 53,
-                  "startColumn": 28,
-                  "endLine": 53,
-                  "endColumn": 53,
-                  "byteLength": 25
+                  "startLine": 519,
+                  "startColumn": 33,
+                  "endLine": 519,
+                  "endColumn": 60,
+                  "byteLength": 27
                 }
               }
             }
@@ -7648,9 +7652,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strsep."
-          },
+          "message": { "text": "result_nul_terminated." },
           "locations": [
             {
               "physicalLocation": {
@@ -7659,11 +7661,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 332,
-                  "startColumn": 12,
-                  "endLine": 332,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 520,
+                  "startColumn": 35,
+                  "endLine": 520,
+                  "endColumn": 51,
+                  "byteLength": 16
                 }
               }
             }
@@ -7673,7 +7675,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior allocation in function strdup." },
+          "message": { "text": "result_valid_string." },
           "locations": [
             {
               "physicalLocation": {
@@ -7682,11 +7684,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 484,
-                  "startColumn": 12,
-                  "endLine": 484,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 521,
+                  "startColumn": 33,
+                  "endLine": 521,
+                  "endColumn": 59,
+                  "byteLength": 26
                 }
               }
             }
@@ -7696,7 +7698,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s." },
+          "message": { "text": "assigns clause in function strsignal." },
           "locations": [
             {
               "physicalLocation": {
@@ -7705,11 +7707,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 181,
-                  "startColumn": 29,
-                  "endLine": 181,
-                  "endColumn": 49,
-                  "byteLength": 20
+                  "startLine": 523,
+                  "startColumn": 12,
+                  "endLine": 523,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -7719,7 +7721,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "char_not_found." },
+          "message": {
+            "text": "from clause of term \\result in function strsignal."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -7728,11 +7732,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 167,
-                  "startColumn": 28,
-                  "endLine": 167,
-                  "endColumn": 40,
-                  "byteLength": 12
+                  "startLine": 518,
+                  "startColumn": 12,
+                  "endLine": 518,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -7742,7 +7746,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_needle." },
+          "message": { "text": "behavior default! in function strspn." },
           "locations": [
             {
               "physicalLocation": {
@@ -7751,11 +7755,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 232,
-                  "startColumn": 34,
-                  "endLine": 232,
-                  "endColumn": 59,
-                  "byteLength": 25
+                  "startLine": 210,
+                  "startColumn": 14,
+                  "endLine": 210,
+                  "endColumn": 20,
+                  "byteLength": 6
                 }
               }
             }
@@ -7765,7 +7769,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior found in function memchr." },
+          "message": { "text": "valid_string_s." },
           "locations": [
             {
               "physicalLocation": {
@@ -7774,11 +7778,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 88,
-                  "startColumn": 12,
-                  "endLine": 88,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 204,
+                  "startColumn": 29,
+                  "endLine": 204,
+                  "endColumn": 49,
+                  "byteLength": 20
                 }
               }
             }
@@ -7788,7 +7792,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_same_base." },
+          "message": { "text": "valid_string_accept." },
           "locations": [
             {
               "physicalLocation": {
@@ -7797,11 +7801,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 186,
-                  "startColumn": 30,
-                  "endLine": 186,
-                  "endColumn": 66,
-                  "byteLength": 36
+                  "startLine": 205,
+                  "startColumn": 34,
+                  "endLine": 205,
+                  "endColumn": 59,
+                  "byteLength": 25
                 }
               }
             }
@@ -7834,7 +7838,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "acsl_c_equiv." },
+          "message": { "text": "assigns clause in function strspn." },
           "locations": [
             {
               "physicalLocation": {
@@ -7843,11 +7847,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 140,
-                  "startColumn": 26,
-                  "endLine": 140,
-                  "endColumn": 50,
-                  "byteLength": 24
+                  "startLine": 206,
+                  "startColumn": 12,
+                  "endLine": 206,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -7857,20 +7861,22 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "wcslen_not_zero." },
+          "message": {
+            "text": "from clause of term \\result in function strspn."
+          },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 210,
-                  "startColumn": 4,
-                  "endLine": 212,
-                  "endColumn": 59,
-                  "byteLength": 124
+                  "startLine": 206,
+                  "startColumn": 12,
+                  "endLine": 206,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -7881,7 +7887,7 @@
           "kind": "pass",
           "level": "none",
           "message": {
-            "text": "from clause of term \\result in function strdup."
+            "text": "from clause of term \\result in function strspn."
           },
           "locations": [
             {
@@ -7891,9 +7897,9 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 474,
+                  "startLine": 207,
                   "startColumn": 12,
-                  "endLine": 474,
+                  "endLine": 207,
                   "endColumn": 19,
                   "byteLength": 7
                 }
@@ -7905,7 +7911,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strrchr." },
+          "message": { "text": "behavior default! in function strstr." },
           "locations": [
             {
               "physicalLocation": {
@@ -7914,9 +7920,9 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 195,
+                  "startLine": 229,
                   "startColumn": 12,
-                  "endLine": 195,
+                  "endLine": 229,
                   "endColumn": 13,
                   "byteLength": 1
                 }
@@ -7928,7 +7934,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "allocation." },
+          "message": { "text": "valid_string_haystack." },
           "locations": [
             {
               "physicalLocation": {
@@ -7937,11 +7943,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 495,
-                  "startColumn": 24,
-                  "endLine": 495,
-                  "endColumn": 60,
-                  "byteLength": 36
+                  "startLine": 220,
+                  "startColumn": 36,
+                  "endLine": 220,
+                  "endColumn": 63,
+                  "byteLength": 27
                 }
               }
             }
@@ -7951,7 +7957,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s2." },
+          "message": { "text": "valid_string_needle." },
           "locations": [
             {
               "physicalLocation": {
@@ -7960,10 +7966,10 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 145,
-                  "startColumn": 30,
-                  "endLine": 145,
-                  "endColumn": 55,
+                  "startLine": 221,
+                  "startColumn": 34,
+                  "endLine": 221,
+                  "endColumn": 59,
                   "byteLength": 25
                 }
               }
@@ -7974,7 +7980,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strncat." },
+          "message": { "text": "result_null_or_in_haystack." },
           "locations": [
             {
               "physicalLocation": {
@@ -7983,11 +7989,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 425,
-                  "startColumn": 12,
-                  "endLine": 425,
-                  "endColumn": 50,
-                  "byteLength": 38
+                  "startLine": 225,
+                  "startColumn": 4,
+                  "endLine": 227,
+                  "endColumn": 59,
+                  "byteLength": 141
                 }
               }
             }
@@ -7997,20 +8003,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "never_allocable." },
+          "message": { "text": "assigns clause in function strstr." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_alloc_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 39,
-                  "startColumn": 4,
-                  "endLine": 41,
-                  "endColumn": 61,
-                  "byteLength": 110
+                  "startLine": 229,
+                  "startColumn": 12,
+                  "endLine": 229,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -8020,7 +8026,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_null." },
+          "message": {
+            "text": "from clause of term \\result in function strstr."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -8029,11 +8037,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 504,
-                  "startColumn": 25,
-                  "endLine": 504,
-                  "endColumn": 41,
-                  "byteLength": 16
+                  "startLine": 222,
+                  "startColumn": 12,
+                  "endLine": 222,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -8043,7 +8051,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strndup." },
+          "message": { "text": "behavior default! in function strtok." },
           "locations": [
             {
               "physicalLocation": {
@@ -8052,9 +8060,9 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 506,
+                  "startLine": 283,
                   "startColumn": 12,
-                  "endLine": 506,
+                  "endLine": 283,
                   "endColumn": 13,
                   "byteLength": 1
                 }
@@ -8066,7 +8074,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "initialization." },
+          "message": { "text": "behavior new_str in function strtok." },
           "locations": [
             {
               "physicalLocation": {
@@ -8075,11 +8083,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 307,
-                  "startColumn": 28,
-                  "endLine": 307,
-                  "endColumn": 49,
-                  "byteLength": 21
+                  "startLine": 283,
+                  "startColumn": 12,
+                  "endLine": 283,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -8089,7 +8097,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_valid_string." },
+          "message": { "text": "behavior resume_str in function strtok." },
           "locations": [
             {
               "physicalLocation": {
@@ -8098,34 +8106,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 521,
-                  "startColumn": 33,
-                  "endLine": 521,
-                  "endColumn": 59,
-                  "byteLength": 26
-                }
-              }
-            }
-          ]
-        },
-        {
-          "ruleId": "user-spec",
-          "kind": "pass",
-          "level": "none",
-          "message": { "text": "WcsNCmp." },
-          "locations": [
-            {
-              "physicalLocation": {
-                "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
-                  "uriBaseId": "FRAMAC_SHARE"
-                },
-                "region": {
-                  "startLine": 252,
-                  "startColumn": 4,
-                  "endLine": 256,
-                  "endColumn": 53,
-                  "byteLength": 194
+                  "startLine": 283,
+                  "startColumn": 12,
+                  "endLine": 283,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -8135,7 +8120,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "sum_of_bounded_lengths." },
+          "message": { "text": "valid_string_delim." },
           "locations": [
             {
               "physicalLocation": {
@@ -8144,11 +8129,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 442,
-                  "startColumn": 36,
-                  "endLine": 442,
-                  "endColumn": 74,
-                  "byteLength": 38
+                  "startLine": 245,
+                  "startColumn": 31,
+                  "endLine": 245,
+                  "endColumn": 55,
+                  "byteLength": 24
                 }
               }
             }
@@ -8158,7 +8143,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "points_to_end." },
+          "message": { "text": "valid_string_s_or_delim_not_found." },
           "locations": [
             {
               "physicalLocation": {
@@ -8167,11 +8152,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 403,
-                  "startColumn": 27,
-                  "endLine": 403,
-                  "endColumn": 57,
-                  "byteLength": 30
+                  "startLine": 258,
+                  "startColumn": 6,
+                  "endLine": 260,
+                  "endColumn": 70,
+                  "byteLength": 120
                 }
               }
             }
@@ -8181,7 +8166,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_s." },
+          "message": { "text": "not_first_call." },
           "locations": [
             {
               "physicalLocation": {
@@ -8190,11 +8175,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 115,
-                  "startColumn": 22,
-                  "endLine": 115,
-                  "endColumn": 42,
-                  "byteLength": 20
+                  "startLine": 268,
+                  "startColumn": 29,
+                  "endLine": 268,
+                  "endColumn": 53,
+                  "byteLength": 24
                 }
               }
             }
@@ -8204,9 +8189,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strxfrm."
-          },
+          "message": { "text": "s_not_null." },
           "locations": [
             {
               "physicalLocation": {
@@ -8215,11 +8198,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 461,
-                  "startColumn": 12,
-                  "endLine": 461,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 256,
+                  "startColumn": 24,
+                  "endLine": 256,
+                  "endColumn": 34,
+                  "byteLength": 10
                 }
               }
             }
@@ -8229,9 +8212,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function memcpy."
-          },
+          "message": { "text": "s_null." },
           "locations": [
             {
               "physicalLocation": {
@@ -8240,11 +8221,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 97,
-                  "startColumn": 12,
-                  "endLine": 97,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 267,
+                  "startColumn": 20,
+                  "endLine": 267,
+                  "endColumn": 30,
+                  "byteLength": 10
                 }
               }
             }
@@ -8254,20 +8235,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "wmemchr_def." },
+          "message": { "text": "result_subset." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 183,
-                  "startColumn": 4,
-                  "endLine": 185,
-                  "endColumn": 63,
-                  "byteLength": 143
+                  "startLine": 264,
+                  "startColumn": 27,
+                  "endLine": 264,
+                  "endColumn": 72,
+                  "byteLength": 45
                 }
               }
             }
@@ -8277,7 +8258,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strtok." },
+          "message": { "text": "ptr_subset." },
           "locations": [
             {
               "physicalLocation": {
@@ -8286,11 +8267,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 261,
-                  "startColumn": 12,
-                  "endLine": 261,
-                  "endColumn": 27,
-                  "byteLength": 15
+                  "startLine": 265,
+                  "startColumn": 24,
+                  "endLine": 265,
+                  "endColumn": 57,
+                  "byteLength": 33
                 }
               }
             }
@@ -8300,9 +8281,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strnlen."
-          },
+          "message": { "text": "result_subset." },
           "locations": [
             {
               "physicalLocation": {
@@ -8311,11 +8290,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 132,
-                  "startColumn": 12,
-                  "endLine": 132,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 277,
+                  "startColumn": 27,
+                  "endLine": 278,
+                  "endColumn": 72,
+                  "byteLength": 92
                 }
               }
             }
@@ -8325,10 +8304,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text":
-              "from clause of term *(dest + (0 .. strlen{Old}(src))) in function stpcpy."
-          },
+          "message": { "text": "ptr_subset." },
           "locations": [
             {
               "physicalLocation": {
@@ -8337,11 +8313,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 400,
-                  "startColumn": 12,
-                  "endLine": 400,
-                  "endColumn": 32,
-                  "byteLength": 20
+                  "startLine": 279,
+                  "startColumn": 24,
+                  "endLine": 279,
+                  "endColumn": 77,
+                  "byteLength": 53
                 }
               }
             }
@@ -8351,7 +8327,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_subset." },
+          "message": { "text": "assigns clause in function strtok." },
           "locations": [
             {
               "physicalLocation": {
@@ -8360,11 +8336,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 277,
-                  "startColumn": 27,
-                  "endLine": 278,
-                  "endColumn": 72,
-                  "byteLength": 92
+                  "startLine": 246,
+                  "startColumn": 10,
+                  "endLine": 246,
+                  "endColumn": 16,
+                  "byteLength": 6
                 }
               }
             }
@@ -8374,7 +8350,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strxfrm." },
+          "message": { "text": "assigns clause in function strtok." },
           "locations": [
             {
               "physicalLocation": {
@@ -8383,11 +8359,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 460,
+                  "startLine": 261,
                   "startColumn": 12,
-                  "endLine": 460,
-                  "endColumn": 26,
-                  "byteLength": 14
+                  "endLine": 261,
+                  "endColumn": 27,
+                  "byteLength": 15
                 }
               }
             }
@@ -8397,20 +8373,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strncasecmp." },
+          "message": { "text": "assigns clause in function strtok." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/strings.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 57,
-                  "startColumn": 11,
-                  "endLine": 57,
-                  "endColumn": 22,
-                  "byteLength": 11
+                  "startLine": 269,
+                  "startColumn": 12,
+                  "endLine": 269,
+                  "endColumn": 32,
+                  "byteLength": 20
                 }
               }
             }
@@ -8420,7 +8396,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "room_nstring." },
+          "message": {
+            "text": "from clause of term *(s + (0 ..)) in function strtok."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -8429,11 +8407,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 385,
-                  "startColumn": 27,
-                  "endLine": 385,
-                  "endColumn": 48,
-                  "byteLength": 21
+                  "startLine": 246,
+                  "startColumn": 10,
+                  "endLine": 246,
+                  "endColumn": 16,
+                  "byteLength": 6
                 }
               }
             }
@@ -8443,7 +8421,10 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "room_string." },
+          "message": {
+            "text":
+              "from clause of term *(__fc_strtok_ptr + (0 ..)) in function strtok."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -8452,11 +8433,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 352,
-                  "startColumn": 26,
-                  "endLine": 352,
-                  "endColumn": 55,
-                  "byteLength": 29
+                  "startLine": 248,
+                  "startColumn": 10,
+                  "endLine": 248,
+                  "endColumn": 30,
+                  "byteLength": 20
                 }
               }
             }
@@ -8466,7 +8447,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_ptr." },
+          "message": {
+            "text": "from clause of term \\result in function strtok."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -8475,11 +8458,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 427,
-                  "startColumn": 24,
-                  "endLine": 427,
-                  "endColumn": 39,
-                  "byteLength": 15
+                  "startLine": 250,
+                  "startColumn": 10,
+                  "endLine": 250,
+                  "endColumn": 17,
+                  "byteLength": 7
                 }
               }
             }
@@ -8489,7 +8472,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_dest." },
+          "message": {
+            "text": "from clause of term __fc_strtok_ptr in function strtok."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -8498,11 +8483,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 458,
-                  "startColumn": 25,
-                  "endLine": 458,
-                  "endColumn": 48,
-                  "byteLength": 23
+                  "startLine": 252,
+                  "startColumn": 10,
+                  "endLine": 252,
+                  "endColumn": 25,
+                  "byteLength": 15
                 }
               }
             }
@@ -8513,7 +8498,7 @@
           "kind": "pass",
           "level": "none",
           "message": {
-            "text": "from clause of term \\result in function strspn."
+            "text": "from clause of term __fc_strtok_ptr in function strtok."
           },
           "locations": [
             {
@@ -8523,11 +8508,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 206,
+                  "startLine": 261,
                   "startColumn": 12,
-                  "endLine": 206,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "endLine": 261,
+                  "endColumn": 27,
+                  "byteLength": 15
                 }
               }
             }
@@ -8537,7 +8522,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strerror." },
+          "message": {
+            "text": "from clause of term *(s + (0 ..)) in function strtok."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -8546,11 +8533,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 347,
+                  "startLine": 262,
                   "startColumn": 12,
-                  "endLine": 347,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "endLine": 262,
+                  "endColumn": 18,
+                  "byteLength": 6
                 }
               }
             }
@@ -8560,7 +8547,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_src_too_large." },
+          "message": {
+            "text": "from clause of term \\result in function strtok."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -8569,11 +8558,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 437,
-                  "startColumn": 4,
-                  "endLine": 437,
-                  "endColumn": 49,
-                  "byteLength": 45
+                  "startLine": 263,
+                  "startColumn": 12,
+                  "endLine": 263,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -8583,20 +8572,23 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "MemCmp." },
+          "message": {
+            "text":
+              "from clause of term *(__fc_strtok_ptr + (0 ..)) in function strtok."
+          },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 39,
-                  "startColumn": 4,
-                  "endLine": 42,
-                  "endColumn": 70,
-                  "byteLength": 170
+                  "startLine": 269,
+                  "startColumn": 12,
+                  "endLine": 269,
+                  "endColumn": 32,
+                  "byteLength": 20
                 }
               }
             }
@@ -8606,20 +8598,22 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "wcslen_zero." },
+          "message": {
+            "text": "from clause of term __fc_strtok_ptr in function strtok."
+          },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 214,
-                  "startColumn": 4,
-                  "endLine": 216,
-                  "endColumn": 60,
-                  "byteLength": 121
+                  "startLine": 272,
+                  "startColumn": 12,
+                  "endLine": 272,
+                  "endColumn": 27,
+                  "byteLength": 15
                 }
               }
             }
@@ -8630,7 +8624,7 @@
           "kind": "pass",
           "level": "none",
           "message": {
-            "text": "from clause of term \\result in function strncpy."
+            "text": "from clause of term \\result in function strtok."
           },
           "locations": [
             {
@@ -8640,9 +8634,9 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 368,
+                  "startLine": 275,
                   "startColumn": 12,
-                  "endLine": 368,
+                  "endLine": 275,
                   "endColumn": 19,
                   "byteLength": 7
                 }
@@ -8654,7 +8648,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function memcpy." },
+          "message": { "text": "complete clause in function strtok." },
           "locations": [
             {
               "physicalLocation": {
@@ -8663,11 +8657,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 96,
+                  "startLine": 283,
                   "startColumn": 12,
-                  "endLine": 96,
-                  "endColumn": 35,
-                  "byteLength": 23
+                  "endLine": 283,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -8677,22 +8671,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "specialization of valid_string_s at stmt 2."
-          },
+          "message": { "text": "disjoint clause in function strtok." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "tests/sarif/libc.c",
-                  "uriBaseId": "PWD"
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 13,
-                  "startColumn": 10,
-                  "endLine": 13,
-                  "endColumn": 19,
-                  "byteLength": 9
+                  "startLine": 283,
+                  "startColumn": 12,
+                  "endLine": 283,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -8702,7 +8694,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_stringp." },
+          "message": { "text": "behavior default! in function strtok_r." },
           "locations": [
             {
               "physicalLocation": {
@@ -8711,11 +8703,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 329,
-                  "startColumn": 35,
-                  "endLine": 329,
-                  "endColumn": 76,
-                  "byteLength": 41
+                  "startLine": 327,
+                  "startColumn": 12,
+                  "endLine": 327,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -8725,20 +8717,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "strlen_neg." },
+          "message": { "text": "behavior new_str in function strtok_r." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 84,
-                  "startColumn": 4,
-                  "endLine": 87,
-                  "endColumn": 22,
-                  "byteLength": 109
+                  "startLine": 327,
+                  "startColumn": 12,
+                  "endLine": 327,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -8748,7 +8740,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strstr." },
+          "message": { "text": "behavior resume_str in function strtok_r." },
           "locations": [
             {
               "physicalLocation": {
@@ -8757,9 +8749,9 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 229,
+                  "startLine": 327,
                   "startColumn": 12,
-                  "endLine": 229,
+                  "endLine": 327,
                   "endColumn": 13,
                   "byteLength": 1
                 }
@@ -8771,7 +8763,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_needle." },
+          "message": { "text": "valid_string_delim." },
           "locations": [
             {
               "physicalLocation": {
@@ -8780,11 +8772,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 221,
-                  "startColumn": 34,
-                  "endLine": 221,
-                  "endColumn": 59,
-                  "byteLength": 25
+                  "startLine": 286,
+                  "startColumn": 31,
+                  "endLine": 286,
+                  "endColumn": 55,
+                  "byteLength": 24
                 }
               }
             }
@@ -8794,7 +8786,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "initialization." },
+          "message": { "text": "valid_saveptr." },
           "locations": [
             {
               "physicalLocation": {
@@ -8803,11 +8795,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 390,
-                  "startColumn": 28,
-                  "endLine": 390,
-                  "endColumn": 73,
-                  "byteLength": 45
+                  "startLine": 287,
+                  "startColumn": 26,
+                  "endLine": 287,
+                  "endColumn": 41,
+                  "byteLength": 15
                 }
               }
             }
@@ -8817,20 +8809,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "memset_def." },
+          "message": { "text": "valid_string_s_or_delim_not_found." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 68,
-                  "startColumn": 4,
-                  "endLine": 70,
-                  "endColumn": 63,
-                  "byteLength": 135
+                  "startLine": 300,
+                  "startColumn": 6,
+                  "endLine": 302,
+                  "endColumn": 70,
+                  "byteLength": 120
                 }
               }
             }
@@ -8840,7 +8832,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_ptr." },
+          "message": { "text": "not_first_call." },
           "locations": [
             {
               "physicalLocation": {
@@ -8849,11 +8841,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 369,
-                  "startColumn": 24,
-                  "endLine": 369,
-                  "endColumn": 39,
-                  "byteLength": 15
+                  "startLine": 311,
+                  "startColumn": 29,
+                  "endLine": 311,
+                  "endColumn": 46,
+                  "byteLength": 17
                 }
               }
             }
@@ -8863,9 +8855,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strncat."
-          },
+          "message": { "text": "initialization." },
           "locations": [
             {
               "physicalLocation": {
@@ -8874,11 +8864,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 426,
-                  "startColumn": 12,
-                  "endLine": 426,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 312,
+                  "startColumn": 37,
+                  "endLine": 312,
+                  "endColumn": 58,
+                  "byteLength": 21
                 }
               }
             }
@@ -8888,9 +8878,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strlcpy."
-          },
+          "message": { "text": "s_not_null." },
           "locations": [
             {
               "physicalLocation": {
@@ -8899,11 +8887,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 389,
-                  "startColumn": 12,
-                  "endLine": 389,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 298,
+                  "startColumn": 24,
+                  "endLine": 298,
+                  "endColumn": 34,
+                  "byteLength": 10
                 }
               }
             }
@@ -8913,7 +8901,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strchrnul." },
+          "message": { "text": "s_null." },
           "locations": [
             {
               "physicalLocation": {
@@ -8922,11 +8910,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 179,
-                  "startColumn": 12,
-                  "endLine": 179,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 310,
+                  "startColumn": 20,
+                  "endLine": 310,
+                  "endColumn": 30,
+                  "byteLength": 10
                 }
               }
             }
@@ -8936,7 +8924,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "acsl_c_equiv." },
+          "message": { "text": "result_subset." },
           "locations": [
             {
               "physicalLocation": {
@@ -8945,11 +8933,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 118,
-                  "startColumn": 26,
-                  "endLine": 118,
-                  "endColumn": 46,
-                  "byteLength": 20
+                  "startLine": 306,
+                  "startColumn": 27,
+                  "endLine": 306,
+                  "endColumn": 72,
+                  "byteLength": 45
                 }
               }
             }
@@ -8959,9 +8947,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strlen."
-          },
+          "message": { "text": "initialization." },
           "locations": [
             {
               "physicalLocation": {
@@ -8970,11 +8956,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 126,
-                  "startColumn": 12,
-                  "endLine": 126,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "startLine": 307,
+                  "startColumn": 28,
+                  "endLine": 307,
+                  "endColumn": 49,
+                  "byteLength": 21
                 }
               }
             }
@@ -8984,10 +8970,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text":
-              "from clause of term *(dest + (0 .. n - 1)) in function strlcpy."
-          },
+          "message": { "text": "saveptr_subset." },
           "locations": [
             {
               "physicalLocation": {
@@ -8996,11 +8979,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 388,
-                  "startColumn": 12,
-                  "endLine": 388,
-                  "endColumn": 24,
-                  "byteLength": 12
+                  "startLine": 308,
+                  "startColumn": 28,
+                  "endLine": 308,
+                  "endColumn": 54,
+                  "byteLength": 26
                 }
               }
             }
@@ -9010,7 +8993,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function strncmp." },
+          "message": { "text": "result_subset." },
           "locations": [
             {
               "physicalLocation": {
@@ -9019,11 +9002,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 149,
-                  "startColumn": 11,
-                  "endLine": 149,
-                  "endColumn": 18,
-                  "byteLength": 7
+                  "startLine": 321,
+                  "startColumn": 27,
+                  "endLine": 322,
+                  "endColumn": 65,
+                  "byteLength": 85
                 }
               }
             }
@@ -9033,7 +9016,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strndup." },
+          "message": { "text": "saveptr_subset." },
           "locations": [
             {
               "physicalLocation": {
@@ -9042,11 +9025,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 492,
-                  "startColumn": 12,
-                  "endLine": 492,
-                  "endColumn": 28,
-                  "byteLength": 16
+                  "startLine": 323,
+                  "startColumn": 28,
+                  "endLine": 323,
+                  "endColumn": 67,
+                  "byteLength": 39
                 }
               }
             }
@@ -9056,7 +9039,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_delim." },
+          "message": { "text": "assigns clause in function strtok_r." },
           "locations": [
             {
               "physicalLocation": {
@@ -9065,11 +9048,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 330,
-                  "startColumn": 33,
-                  "endLine": 330,
-                  "endColumn": 57,
-                  "byteLength": 24
+                  "startLine": 288,
+                  "startColumn": 10,
+                  "endLine": 288,
+                  "endColumn": 16,
+                  "byteLength": 6
                 }
               }
             }
@@ -9079,7 +9062,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strpbrk." },
+          "message": { "text": "assigns clause in function strtok_r." },
           "locations": [
             {
               "physicalLocation": {
@@ -9088,11 +9071,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 218,
-                  "startColumn": 12,
-                  "endLine": 218,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "startLine": 303,
+                  "startColumn": 12,
+                  "endLine": 303,
+                  "endColumn": 20,
+                  "byteLength": 8
                 }
               }
             }
@@ -9102,7 +9085,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_null." },
+          "message": { "text": "assigns clause in function strtok_r." },
           "locations": [
             {
               "physicalLocation": {
@@ -9111,11 +9094,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 482,
-                  "startColumn": 25,
-                  "endLine": 482,
-                  "endColumn": 41,
-                  "byteLength": 16
+                  "startLine": 313,
+                  "startColumn": 12,
+                  "endLine": 313,
+                  "endColumn": 27,
+                  "byteLength": 15
                 }
               }
             }
@@ -9125,20 +9108,22 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_memory_area." },
+          "message": {
+            "text": "from clause of term *(s + (0 ..)) in function strtok_r."
+          },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/strings.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 36,
-                  "startColumn": 32,
-                  "endLine": 36,
-                  "endColumn": 63,
-                  "byteLength": 31
+                  "startLine": 288,
+                  "startColumn": 10,
+                  "endLine": 288,
+                  "endColumn": 16,
+                  "byteLength": 6
                 }
               }
             }
@@ -9148,7 +9133,10 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s_or_delim_not_found." },
+          "message": {
+            "text":
+              "from clause of term *(*saveptr + (0 ..)) in function strtok_r."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -9157,11 +9145,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 300,
-                  "startColumn": 6,
-                  "endLine": 302,
-                  "endColumn": 70,
-                  "byteLength": 120
+                  "startLine": 290,
+                  "startColumn": 10,
+                  "endLine": 290,
+                  "endColumn": 25,
+                  "byteLength": 15
                 }
               }
             }
@@ -9172,7 +9160,7 @@
           "kind": "pass",
           "level": "none",
           "message": {
-            "text": "from clause of term \\result in function strspn."
+            "text": "from clause of term \\result in function strtok_r."
           },
           "locations": [
             {
@@ -9182,10 +9170,10 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 207,
-                  "startColumn": 12,
-                  "endLine": 207,
-                  "endColumn": 19,
+                  "startLine": 292,
+                  "startColumn": 10,
+                  "endLine": 292,
+                  "endColumn": 17,
                   "byteLength": 7
                 }
               }
@@ -9196,7 +9184,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_ptr." },
+          "message": {
+            "text": "from clause of term *saveptr in function strtok_r."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -9205,11 +9195,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 119,
-                  "startColumn": 24,
-                  "endLine": 119,
-                  "endColumn": 36,
-                  "byteLength": 12
+                  "startLine": 294,
+                  "startColumn": 10,
+                  "endLine": 294,
+                  "endColumn": 18,
+                  "byteLength": 8
                 }
               }
             }
@@ -9220,7 +9210,7 @@
           "kind": "pass",
           "level": "none",
           "message": {
-            "text": "from clause of term __fc_strtok_ptr in function strtok."
+            "text": "from clause of term *saveptr in function strtok_r."
           },
           "locations": [
             {
@@ -9230,11 +9220,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 252,
-                  "startColumn": 10,
-                  "endLine": 252,
-                  "endColumn": 25,
-                  "byteLength": 15
+                  "startLine": 303,
+                  "startColumn": 12,
+                  "endLine": 303,
+                  "endColumn": 20,
+                  "byteLength": 8
                 }
               }
             }
@@ -9244,7 +9234,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strcat." },
+          "message": {
+            "text": "from clause of term *(s + (0 ..)) in function strtok_r."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -9253,11 +9245,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 411,
+                  "startLine": 304,
                   "startColumn": 12,
-                  "endLine": 411,
-                  "endColumn": 58,
-                  "byteLength": 46
+                  "endLine": 304,
+                  "endColumn": 18,
+                  "byteLength": 6
                 }
               }
             }
@@ -9267,7 +9259,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "behavior default! in function stpcpy." },
+          "message": {
+            "text": "from clause of term \\result in function strtok_r."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -9276,11 +9270,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 405,
+                  "startLine": 305,
                   "startColumn": 12,
-                  "endLine": 405,
-                  "endColumn": 13,
-                  "byteLength": 1
+                  "endLine": 305,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -9290,20 +9284,23 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "zero_initialized." },
+          "message": {
+            "text":
+              "from clause of term *(*saveptr + (0 ..)) in function strtok_r."
+          },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/strings.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 39,
-                  "startColumn": 28,
-                  "endLine": 39,
-                  "endColumn": 63,
-                  "byteLength": 35
+                  "startLine": 313,
+                  "startColumn": 12,
+                  "endLine": 313,
+                  "endColumn": 27,
+                  "byteLength": 15
                 }
               }
             }
@@ -9313,7 +9310,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "result_char." },
+          "message": {
+            "text": "from clause of term *saveptr in function strtok_r."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -9322,11 +9321,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 185,
-                  "startColumn": 25,
-                  "endLine": 185,
-                  "endColumn": 38,
-                  "byteLength": 13
+                  "startLine": 316,
+                  "startColumn": 12,
+                  "endLine": 316,
+                  "endColumn": 20,
+                  "byteLength": 8
                 }
               }
             }
@@ -9336,7 +9335,9 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_s2." },
+          "message": {
+            "text": "from clause of term \\result in function strtok_r."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -9345,11 +9346,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 56,
-                  "startColumn": 23,
-                  "endLine": 56,
-                  "endColumn": 49,
-                  "byteLength": 26
+                  "startLine": 319,
+                  "startColumn": 12,
+                  "endLine": 319,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
@@ -9359,7 +9360,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function stpcpy." },
+          "message": { "text": "complete clause in function strtok_r." },
           "locations": [
             {
               "physicalLocation": {
@@ -9368,11 +9369,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 400,
+                  "startLine": 327,
                   "startColumn": 12,
-                  "endLine": 400,
-                  "endColumn": 32,
-                  "byteLength": 20
+                  "endLine": 327,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -9382,9 +9383,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strstr."
-          },
+          "message": { "text": "disjoint clause in function strtok_r." },
           "locations": [
             {
               "physicalLocation": {
@@ -9393,11 +9392,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 222,
+                  "startLine": 327,
                   "startColumn": 12,
-                  "endLine": 222,
-                  "endColumn": 19,
-                  "byteLength": 7
+                  "endLine": 327,
+                  "endColumn": 13,
+                  "byteLength": 1
                 }
               }
             }
@@ -9407,9 +9406,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term \\result in function strrchr."
-          },
+          "message": { "text": "behavior default! in function strxfrm." },
           "locations": [
             {
               "physicalLocation": {
@@ -9418,10 +9415,10 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 182,
-                  "startColumn": 12,
-                  "endLine": 182,
-                  "endColumn": 19,
+                  "startLine": 463,
+                  "startColumn": 14,
+                  "endLine": 463,
+                  "endColumn": 21,
                   "byteLength": 7
                 }
               }
@@ -9432,7 +9429,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "assigns clause in function strnlen." },
+          "message": { "text": "valid_dest." },
           "locations": [
             {
               "physicalLocation": {
@@ -9441,11 +9438,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 135,
-                  "startColumn": 14,
-                  "endLine": 135,
-                  "endColumn": 21,
-                  "byteLength": 7
+                  "startLine": 458,
+                  "startColumn": 25,
+                  "endLine": 458,
+                  "endColumn": 48,
+                  "byteLength": 23
                 }
               }
             }
@@ -9455,20 +9452,20 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_s2." },
+          "message": { "text": "valid_string_src." },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/strings.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 54,
-                  "startColumn": 28,
-                  "endLine": 54,
+                  "startLine": 459,
+                  "startColumn": 31,
+                  "endLine": 459,
                   "endColumn": 53,
-                  "byteLength": 25
+                  "byteLength": 22
                 }
               }
             }
@@ -9478,9 +9475,7 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": {
-            "text": "from clause of term *(s + (0 ..)) in function strtok."
-          },
+          "message": { "text": "assigns clause in function strxfrm." },
           "locations": [
             {
               "physicalLocation": {
@@ -9489,11 +9484,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 246,
-                  "startColumn": 10,
-                  "endLine": 246,
-                  "endColumn": 16,
-                  "byteLength": 6
+                  "startLine": 460,
+                  "startColumn": 12,
+                  "endLine": 460,
+                  "endColumn": 26,
+                  "byteLength": 14
                 }
               }
             }
@@ -9503,7 +9498,10 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "valid_string_src." },
+          "message": {
+            "text":
+              "from clause of term *(dest + (0 .. n - 1)) in function strxfrm."
+          },
           "locations": [
             {
               "physicalLocation": {
@@ -9512,11 +9510,11 @@
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 408,
-                  "startColumn": 31,
-                  "endLine": 408,
-                  "endColumn": 53,
-                  "byteLength": 22
+                  "startLine": 460,
+                  "startColumn": 12,
+                  "endLine": 460,
+                  "endColumn": 26,
+                  "byteLength": 14
                 }
               }
             }
@@ -9526,20 +9524,22 @@
           "ruleId": "user-spec",
           "kind": "pass",
           "level": "none",
-          "message": { "text": "strchr_def." },
+          "message": {
+            "text": "from clause of term \\result in function strxfrm."
+          },
           "locations": [
             {
               "physicalLocation": {
                 "artifactLocation": {
-                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uri": "libc/string.h",
                   "uriBaseId": "FRAMAC_SHARE"
                 },
                 "region": {
-                  "startLine": 168,
-                  "startColumn": 4,
-                  "endLine": 170,
-                  "endColumn": 75,
-                  "byteLength": 132
+                  "startLine": 461,
+                  "startColumn": 12,
+                  "endLine": 461,
+                  "endColumn": 19,
+                  "byteLength": 7
                 }
               }
             }
-- 
GitLab


From 9170a7655d7baf2ac37811082618955f02b66729 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Mon, 1 Feb 2021 14:46:03 +0100
Subject: [PATCH 072/141] [tests] add non-regression test for macro with % in
 cpp extra args

also avoid accidental `*/` in FILTER command
---
 tests/syntax/cpp-command.c                   | 12 ++++++++++-
 tests/syntax/oracle/cpp-command.5.res.oracle | 21 ++++++++++++++++++++
 2 files changed, 32 insertions(+), 1 deletion(-)
 create mode 100644 tests/syntax/oracle/cpp-command.5.res.oracle

diff --git a/tests/syntax/cpp-command.c b/tests/syntax/cpp-command.c
index b508b543b6b..4a533887e76 100644
--- a/tests/syntax/cpp-command.c
+++ b/tests/syntax/cpp-command.c
@@ -1,8 +1,18 @@
 /* run.config*
-   FILTER: sed "s:/[^ ]*/cpp-command\.[^ ]*\.i:TMPDIR/FILE.i:g; s:$PWD/::; s: -m32::"
+   FILTER: sed "s:/[^ ]*[/]cpp-command\.[^ ]*\.i:TMPDIR/FILE.i:g; s:$PWD/::; s: -m32::"
    OPT: -machdep x86_32 -no-autoload-plugins -cpp-frama-c-compliant -cpp-command "echo [\$(basename '%1') \$(basename '%1') \$(basename '%i') \$(basename '%input')] ['%2' '%2' '%o' '%output'] ['%args']"
    OPT: -machdep x86_32 -no-autoload-plugins -cpp-frama-c-compliant -cpp-command "echo %%1 = \$(basename '%1') %%2 = '%2' %%args = '%args'"
    OPT: -machdep x86_32 -no-autoload-plugins -cpp-frama-c-compliant -cpp-command "printf \"%s\n\" \"using \\% has no effect : \$(basename \"\%input\")\""
    OPT: -machdep x86_32 -no-autoload-plugins -cpp-frama-c-compliant -cpp-command "echo %var is not an interpreted placeholder"
    OPT: -machdep x86_32 -no-autoload-plugins -print-cpp-commands
+   OPT: -cpp-extra-args-per-file=@PTEST_FILE@:"-DPF=\\\"cp%02d_3f\\\"" -no-autoload-plugins @PTEST_FILE@ -print
    */
+
+#include <stdio.h>
+void printer(int i, float f) {
+  printf(PF, i, f);
+}
+
+int main() {
+  printer(1, 1.0);
+}
diff --git a/tests/syntax/oracle/cpp-command.5.res.oracle b/tests/syntax/oracle/cpp-command.5.res.oracle
new file mode 100644
index 00000000000..72e8b677b25
--- /dev/null
+++ b/tests/syntax/oracle/cpp-command.5.res.oracle
@@ -0,0 +1,21 @@
+[kernel] Parsing tests/syntax/cpp-command.c (with preprocessing)
+/* Generated by Frama-C */
+#include "errno.h"
+#include "stdarg.h"
+#include "stddef.h"
+#include "stdio.h"
+void printer(int i, float f)
+{
+  printf("cp%02d_3f",i,(double)f);
+  return;
+}
+
+int main(void)
+{
+  int __retres;
+  printer(1,(float)1.0);
+  __retres = 0;
+  return __retres;
+}
+
+
-- 
GitLab


From f57b3d0a8c83c2fd328ffcc1dc8d7641175021b9 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Mon, 8 Feb 2021 17:03:24 +0100
Subject: [PATCH 073/141] [tests] add extra check related to logic
 preprocessing

---
 tests/jcdb/logic-pp-include/no-stdio.c | 2 ++
 tests/jcdb/oracle/logic-pp-include.res | 1 +
 2 files changed, 3 insertions(+)

diff --git a/tests/jcdb/logic-pp-include/no-stdio.c b/tests/jcdb/logic-pp-include/no-stdio.c
index 78444816bb2..5dfc21439f0 100644
--- a/tests/jcdb/logic-pp-include/no-stdio.c
+++ b/tests/jcdb/logic-pp-include/no-stdio.c
@@ -1,4 +1,6 @@
 // compile_commands.json must have "-includestdio.h" and define ZERO
+
+//@ ensures \result == ZERO;
 int main(){
   printf("bla\n");
   return ZERO;
diff --git a/tests/jcdb/oracle/logic-pp-include.res b/tests/jcdb/oracle/logic-pp-include.res
index a6aedf5c3dd..a8432079471 100644
--- a/tests/jcdb/oracle/logic-pp-include.res
+++ b/tests/jcdb/oracle/logic-pp-include.res
@@ -4,6 +4,7 @@
 #include "stdarg.h"
 #include "stddef.h"
 #include "stdio.h"
+/*@ ensures \result ≡ 0; */
 int main(void)
 {
   int __retres;
-- 
GitLab


From f025678527e447498ed6b28acc4a1d79cdbb497b Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Mon, 8 Feb 2021 17:40:39 +0100
Subject: [PATCH 074/141] [Kernel] remove obsolete semantic tags

---
 src/kernel_services/ast_queries/file.ml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/kernel_services/ast_queries/file.ml b/src/kernel_services/ast_queries/file.ml
index 77f6394a474..198d03db923 100644
--- a/src/kernel_services/ast_queries/file.ml
+++ b/src/kernel_services/ast_queries/file.ml
@@ -526,7 +526,7 @@ let build_cpp_cmd = function
     in
     let cpp_command = replace_in_cpp_cmd cmdl supp_args (f:>string) (ppf:>string) in
     Kernel.feedback ~dkey:Kernel.dkey_pp
-      "@{<i>preprocessing@} with \"%s\""
+      "preprocessing with \"%s\""
       cpp_command;
     Some (cpp_command, ppf, supp_args)
 
-- 
GitLab


From fe2afd84f816df9b19b8d75d9ed57cf827ec2096 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Mon, 8 Feb 2021 17:52:22 +0100
Subject: [PATCH 075/141] [aorai] update documentation for -aorai-smoke-tests

and -aorai-no-generate-annotations
---
 doc/aorai/main.tex | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/doc/aorai/main.tex b/doc/aorai/main.tex
index d63e738e029..de6c643df76 100644
--- a/doc/aorai/main.tex
+++ b/doc/aorai/main.tex
@@ -863,6 +863,17 @@ or other auxiliary variables that must be updated, other
 \lstinline|ensures| clauses define their new value according to the transition
 that is activated.
 
+It is also possible to only activate the generation of the body of the
+transition functions, without their specification (e.g. to analyze the
+instrumented code with the Eva plug-in, which does not need the contracts and
+loop invariants). This is done through option
+\lstinline|-aorai-no-generate-annotations|. In that case, it might be the case
+that the automaton end up in a rejecting state (for a deterministic automaton)
+or without any active state (for a non-deterministic automaton). Option
+\lstinline|-aorai-smoke-tests| can thus be used to generate assertions at
+the end of all update functions, stating that the automaton is still in an
+appropriate state.
+
 \subsection{Functions behaviors}
 
 Each function \texttt{f} defined in the original C code gets its specification
@@ -1235,6 +1246,8 @@ The plug-in is composed of three parts:
 \section{Recent updates}
 \subsection{Frama-C+dev}
 \begin{itemize}
+\item Documentation for options \texttt{-aorai-no-generate-annotations}
+and \texttt{-aorai-smoke-tests}
 \item Documentation for option \texttt{-aorai-instrumentation-history}
 and built-in \texttt{Frama\_C\_show\_aorai\_state}
 \item Aoraï does not generate a C file by default anymore, relying on
-- 
GitLab


From 41feb7cb251609865abc9f6e19bab4c74e050a9d Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Tue, 9 Feb 2021 09:11:56 +0100
Subject: [PATCH 076/141] Feature/andre/fc script list functions

---
 Makefile                                      |   2 +
 bin/frama-c-script                            |  12 +
 headers/header_spec.txt                       |   1 +
 share/analysis-scripts/list_functions.ml      | 282 ++++++++++++++++++
 src/kernel_services/ast_data/globals.ml       |  11 +
 src/kernel_services/ast_data/globals.mli      |  10 +
 .../ast_queries/cil_datatype.ml               |  13 +-
 .../ast_queries/cil_datatype.mli              |   7 +-
 tests/fc_script/for-find-fun2.c               |   5 +
 tests/fc_script/for-list-functions.c          |  22 ++
 tests/fc_script/for-list-functions.h          |   1 +
 tests/fc_script/for-list-functions2.h         |   1 +
 tests/fc_script/main.c                        |   2 +
 tests/fc_script/oracle/find_fun1.res          |   2 +-
 tests/fc_script/oracle/find_fun2.res          |   2 +-
 tests/fc_script/oracle/find_fun3.res          |   2 +-
 tests/fc_script/oracle/list_functions.err     |   0
 tests/fc_script/oracle/list_functions.res     |   7 +
 tests/fc_script/oracle/list_functions2.err    |   0
 tests/fc_script/oracle/list_functions2.json   |  14 +
 tests/fc_script/oracle/list_functions2.res    |   3 +
 21 files changed, 391 insertions(+), 8 deletions(-)
 create mode 100644 share/analysis-scripts/list_functions.ml
 create mode 100644 tests/fc_script/for-list-functions.c
 create mode 100644 tests/fc_script/for-list-functions.h
 create mode 100644 tests/fc_script/for-list-functions2.h
 create mode 100644 tests/fc_script/oracle/list_functions.err
 create mode 100644 tests/fc_script/oracle/list_functions.res
 create mode 100644 tests/fc_script/oracle/list_functions2.err
 create mode 100644 tests/fc_script/oracle/list_functions2.json
 create mode 100644 tests/fc_script/oracle/list_functions2.res

diff --git a/Makefile b/Makefile
index 0f4ac62279f..73227de03b3 100644
--- a/Makefile
+++ b/Makefile
@@ -268,6 +268,7 @@ DISTRIB_FILES:=\
       share/analysis-scripts/function_finder.py                         \
       share/analysis-scripts/git_utils.py                               \
       share/analysis-scripts/list_files.py                              \
+      share/analysis-scripts/list_functions.ml                          \
       share/analysis-scripts/make_template.py                           \
       share/analysis-scripts/make_wrapper.py                            \
       share/analysis-scripts/normalize_jcdb.py                          \
@@ -1934,6 +1935,7 @@ install:: install-lib-$(OCAMLBEST)
 	  share/analysis-scripts/function_finder.py \
 	  share/analysis-scripts/git_utils.py \
 	  share/analysis-scripts/list_files.py \
+	  share/analysis-scripts/list_functions.ml \
 	  share/analysis-scripts/make_template.py \
 	  share/analysis-scripts/make_wrapper.py \
 	  share/analysis-scripts/normalize_jcdb.py \
diff --git a/bin/frama-c-script b/bin/frama-c-script
index 8ff07f4647a..aef3ebe68fb 100755
--- a/bin/frama-c-script
+++ b/bin/frama-c-script
@@ -44,6 +44,11 @@ usage() {
    echo "      Also lists files defining a 'main' function"
    echo "      (heuristics-based; neither correct nor complete)."
    echo ""
+   echo "  - list-functions [files] [Frama-C options]"
+   echo "      Parses all sources in [files] and lists all function"
+   echo "      definitions, with source location and number of statements."
+   echo "      Accepts Frama-C options (e.g. -cpp-extra-args for parsing)."
+   echo ""
    echo "  - flamegraph flamegraph.txt [dir]"
    echo "      Generates flamegraph.svg and flamegraph.html in dir"
    echo "      [default: FRAMAC_SESSION]."
@@ -191,6 +196,13 @@ case "$command" in
         shift;
         ${FRAMAC_SHARE}/analysis-scripts/list_files.py "$@";
         ;;
+    "list-functions")
+        shift;
+        # to avoid a slow startup, we only load plugins which perform syntactic
+        # transformations. This may trigger annotation errors due to missing
+        # plugins, so we disable those
+        ${DIR}/frama-c "$@" -no-autoload-plugins -load-module variadic,instantiate,${FRAMAC_SHARE}/analysis-scripts/list_functions.ml -kernel-warn-key annot-error=inactive -kernel-verbose 0;
+        ;;
     "find-fun")
         shift;
         ${FRAMAC_SHARE}/analysis-scripts/find_fun.py "$@";
diff --git a/headers/header_spec.txt b/headers/header_spec.txt
index d1b383e76b2..fd4e1e3307f 100644
--- a/headers/header_spec.txt
+++ b/headers/header_spec.txt
@@ -126,6 +126,7 @@ share/analysis-scripts/flamegraph.pl: CDDL
 share/analysis-scripts/function_finder.py: .ignore
 share/analysis-scripts/git_utils.py: .ignore
 share/analysis-scripts/list_files.py: .ignore
+share/analysis-scripts/list_functions.ml: .ignore
 share/analysis-scripts/make_template.py: .ignore
 share/analysis-scripts/make_wrapper.py: .ignore
 share/analysis-scripts/normalize_jcdb.py: .ignore
diff --git a/share/analysis-scripts/list_functions.ml b/share/analysis-scripts/list_functions.ml
new file mode 100644
index 00000000000..4393ee3f414
--- /dev/null
+++ b/share/analysis-scripts/list_functions.ml
@@ -0,0 +1,282 @@
+(* To avoid listing declarations several times, we use their locations
+   as proxies. However, we cannot directly compare locations, since static
+   (re-)definitions, as well as prototypes included several times,
+   have locations which are physically different (pos_cnum)
+   despite being semantically identical (same file/line/column).
+   The module below provides a hash table using the equality function
+   corresponding to our needs.
+*)
+module SemanticLocs : sig
+  include Hashtbl.S with type key = Cil_datatype.Location.t
+  val is_empty: 'a t -> bool
+  val keys: 'a t -> key list (* sorted w.r.t. cmp_start_semantic *)
+  val elements: 'a t -> (key * 'a) list (* sorted w.r.t. cmp_start_semantic *)
+end =
+struct
+  include
+    Hashtbl.Make(struct
+      type t = Cil_datatype.Location.t
+      let equal = Cil_datatype.Location.equal_start_semantic
+      let hash (b, _e) = Hashtbl.hash (b.Filepath.pos_path, b.Filepath.pos_lnum)
+    end)
+  let is_empty tbl = length tbl = 0
+  let keys tbl =
+    let l = fold (fun loc _ acc -> loc :: acc) tbl [] in
+    List.sort Cil_datatype.Location.compare_start_semantic l
+  let elements tbl =
+    let l = fold (fun loc v acc -> (loc, v) :: acc) tbl [] in
+    List.sort (fun (l1, _v1) (l2, _v2) ->
+        Cil_datatype.Location.compare_start_semantic l1 l2) l
+end
+
+module Self = Plugin.Register
+    (struct
+      let name = "list-functions"
+      let shortname = "list-functions"
+      let help = "prints the list of function definitions and declarations, \
+                  along with their locations and number of statements, \
+                  in text or JSON format"
+    end)
+
+module PrintLibc =
+  Self.False
+    (struct
+      let option_name = "-list-functions-libc"
+      let help = "whether to print functions located within Frama-C's libc \
+                  directory. Default: false"
+    end)
+
+module PrintDeclarations =
+  Self.False
+    (struct
+      let option_name = "-list-functions-declarations"
+      let help = "whether to print function declarations. Default: false"
+    end)
+
+module Output =
+  Self.Filepath
+    (struct
+      let option_name = "-list-functions-output"
+      let arg_name = "filename"
+      let existence = Filepath.Indifferent
+      let file_kind = "json"
+      let help = "where to save the output, in JSON format. If omitted', \
+                  then output to stdout in text format instead"
+    end)
+
+type funinfo = {
+  name : string;
+  declarations : unit SemanticLocs.t;
+  definitions : int (*number of statements*) SemanticLocs.t;
+  (* Note: only static functions can have multiple definitions *)
+}
+
+class stmt_count_visitor =
+  object
+    inherit Visitor.frama_c_inplace
+    val count = ref 0
+    method! vstmt_aux _s =
+      incr count;
+      Cil.DoChildren
+    method get = !count
+  end
+
+(* To find good locations for declarations and definitions, we use different
+   methods:
+   - For declarations, the Cabs AST information is much better than the Cil
+     one, which erases declarations when a definition is found;
+   - For definitions, the information seems to be equivalent, so we use the
+     one in Kernel_function.
+*)
+
+(* Due to the fact that the Cabs AST contains no fc_stdlib attributes, we use a
+   location-based approach. *)
+let located_within_framac_libc loc =
+  let pos = fst loc in
+  let file = (pos.Filepath.pos_path :> string) in
+  Filepath.is_relative ~base_name:Fc_config.framac_libc file
+
+class fun_cabs_visitor print_libc = object(self)
+  inherit Cabsvisit.nopCabsVisitor
+
+  val decls : (string, 'a SemanticLocs.t) Hashtbl.t = Hashtbl.create 7
+  method get_decls = decls
+
+  method private get_single_name (_spec, (name, _, _, _)) = name
+  method private get_name (name, _, _, _) = name
+
+  method private add_loc table name loc =
+    if print_libc || not (located_within_framac_libc loc) then
+      let locs_table =
+        try
+          Hashtbl.find table name
+        with
+        | Not_found ->
+          let t = SemanticLocs.create 1 in
+          Hashtbl.replace table name t;
+          t
+      in
+      SemanticLocs.replace locs_table loc ()
+
+  method! vdef def =
+    let open Cabs in
+    match def with
+    | FUNDEF _ ->
+      (* we will use Cil information anyway *)
+      Cil.SkipChildren
+    | DECDEF (_, (_, name_list), loc) ->
+      List.iter
+        (function
+          | ((name, PROTO _, _, _), _) ->
+            self#add_loc decls name loc
+          | _ -> ()
+        ) name_list;
+      Cil.SkipChildren
+    | _ ->
+      Cil.DoChildren
+
+end
+
+let print_json (fp : Filepath.Normalized.t) funinfos_json =
+  try
+    let oc = open_out (fp:>string) in
+    let fmt = Format.formatter_of_out_channel oc in
+    Json.pp fmt funinfos_json;
+    Format.fprintf fmt "@.";
+    close_out oc;
+    Self.debug "List written to: %a" Filepath.Normalized.pretty fp
+  with Sys_error msg ->
+    Self.abort "cannot write JSON to %a: %s"
+      Filepath.Normalized.pretty fp msg
+
+let pp_semlocs fmt t =
+  Format.fprintf fmt "%a"
+    (Pretty_utils.pp_list ~sep:", " Cil_datatype.Location.pretty)
+    (SemanticLocs.keys t)
+
+let pp_loc_size fmt loc_size =
+  let (loc, size) = loc_size in
+  Format.fprintf fmt "%a (%d statement%s)"
+    Cil_datatype.Location.pretty loc size (if size <> 1 then "s" else "")
+
+let pp_definitions fmt defs =
+  Format.fprintf fmt "%a"
+    (Pretty_utils.pp_list ~sep:", " pp_loc_size)
+    (SemanticLocs.elements defs)
+
+let print_text funinfos =
+  List.iter (fun fi ->
+      if PrintDeclarations.get () ||
+         not (SemanticLocs.is_empty fi.definitions) then
+        begin
+          Format.printf "%s:" fi.name;
+          begin
+            if not (SemanticLocs.is_empty fi.definitions) then
+              Format.printf " defined at %a;"
+                pp_definitions fi.definitions
+          end;
+          if PrintDeclarations.get () &&
+             not (SemanticLocs.is_empty fi.declarations) then
+            Format.printf " declared at %a" pp_semlocs fi.declarations;
+          if SemanticLocs.(is_empty fi.definitions && is_empty fi.declarations)
+          then
+            Format.printf " called but never declared nor defined";
+          Format.printf "@."
+        end
+    ) funinfos
+
+let get_size kf =
+  let stmt_count_vis = new stmt_count_visitor in
+  ignore Visitor.(visitFramacKf (stmt_count_vis :> frama_c_inplace) kf);
+  stmt_count_vis#get
+
+let definitions_with_size name =
+  let kfs =
+    List.filter Kernel_function.is_definition
+      (Globals.Functions.find_all_by_orig_name name)
+  in
+  let defs_with_size = SemanticLocs.create (List.length kfs) in
+  List.iter (fun kf ->
+      let n = get_size kf in
+      let loc = Kernel_function.get_location kf in
+      SemanticLocs.add defs_with_size loc n
+    ) kfs;
+  defs_with_size
+
+let json_string_of_loc loc =
+  `String (Format.asprintf "%a" Cil_datatype.Location.pretty loc)
+
+let json_list_of_loc_tbl tbl =
+  let keys = SemanticLocs.keys tbl in
+  `List (List.map json_string_of_loc keys)
+
+let json_array_of_loc_size (loc, size) =
+  `Assoc [("location", json_string_of_loc loc); ("statements", `Int size)]
+
+let json_list_of_loc_size_tbl tbl =
+  let elements = SemanticLocs.elements tbl in
+  `List (List.map json_array_of_loc_size elements)
+
+let run () =
+  if List.length (File.get_all ()) < 1 then begin
+    Self.abort "no input files";
+  end;
+  let cabs_files = Ast.UntypedFiles.get () in
+  let vis = new fun_cabs_visitor (PrintLibc.get ()) in
+  List.iter (fun file ->
+      ignore Cabsvisit.(visitCabsFile (vis :> nopCabsVisitor) file)
+    ) cabs_files;
+  let decls = vis#get_decls in
+  let defs_without_decls = Globals.Functions.fold (fun kf acc ->
+      if Kernel_function.is_definition kf then begin
+        let orig_name = (Kernel_function.get_vi kf).vorig_name in
+        if Hashtbl.mem decls orig_name then acc
+        else Datatype.String.Set.add orig_name acc
+      end
+      else acc
+    ) Datatype.String.Set.empty
+  in
+  let funinfos =
+    Hashtbl.fold (fun name declarations acc ->
+        let definitions = definitions_with_size name in
+        let fi = { name; definitions; declarations } in
+        fi :: acc
+      ) decls []
+  in
+  (* add data for defined functions not present in 'decls' *)
+  let funinfos =
+    Datatype.String.Set.fold (fun orig_name acc ->
+        if not (Hashtbl.mem decls orig_name) then begin
+          let definitions = definitions_with_size orig_name in
+          let fi = { name = orig_name; definitions;
+                     declarations = SemanticLocs.create 0 }
+          in
+          fi :: acc
+        end else
+          acc
+      ) defs_without_decls funinfos
+  in
+  let funinfos = List.sort
+      (fun fi1 fi2 -> Extlib.compare_ignore_case fi1.name fi2.name) funinfos
+  in
+  let outfp = Output.get () in
+  if Filepath.Normalized.is_unknown outfp then
+    print_text funinfos
+  else
+    let funinfos_json = `List (List.map (fun fi ->
+        let definitions =
+          if SemanticLocs.is_empty fi.definitions then []
+          else
+            [("definitions", json_list_of_loc_size_tbl fi.definitions)]
+        in
+        let declarations =
+          if SemanticLocs.is_empty fi.declarations then []
+          else
+            [("declarations", json_list_of_loc_tbl fi.declarations)]
+        in
+        `Assoc [(fi.name, `Assoc (definitions @ declarations))]
+      ) funinfos)
+    in
+    print_json outfp funinfos_json
+
+let () = Db.Main.extend run
diff --git a/src/kernel_services/ast_data/globals.ml b/src/kernel_services/ast_data/globals.ml
index a88e444703a..a2b09e2c8cf 100644
--- a/src/kernel_services/ast_data/globals.ml
+++ b/src/kernel_services/ast_data/globals.ml
@@ -343,6 +343,17 @@ module Functions = struct
     let vi = Datatype.String.Map.find fct_name (Iterator.State.get ()) in
     State.find vi
 
+  let find_all_by_orig_name ?cmp fct_name =
+    let l =
+      Datatype.String.Map.fold (fun _ vi acc ->
+          if vi.vorig_name = fct_name then (State.find vi) :: acc
+          else acc
+        ) (Iterator.State.get ()) []
+    in
+    match cmp with
+    | None -> l
+    | Some cmp -> List.sort cmp l
+
   let find_def_by_name fct_name =
     let vi = Datatype.String.Map.find fct_name (Iterator.State.get ()) in
     let res = State.find vi in
diff --git a/src/kernel_services/ast_data/globals.mli b/src/kernel_services/ast_data/globals.mli
index b3f359ffbc8..3487374d4a4 100644
--- a/src/kernel_services/ast_data/globals.mli
+++ b/src/kernel_services/ast_data/globals.mli
@@ -122,6 +122,16 @@ module Functions: sig
   val find_by_name : string -> kernel_function
   (** @raise Not_found if there is no function of this name. *)
 
+  val find_all_by_orig_name : ?cmp:(kernel_function -> kernel_function -> int) ->
+    string -> kernel_function list
+  (**
+     [find_all_by_orig_name ?cmp name] returns the list of functions whose original
+     name is [name], sorted according to [cmp]. If [cmp] is [None],
+     the resulting order is unspecified.
+
+     @since Frama-C+dev
+  *)
+
   val find_def_by_name : string -> kernel_function
   (** @raise Not_found if there is no function definition of this name. *)
 
diff --git a/src/kernel_services/ast_queries/cil_datatype.ml b/src/kernel_services/ast_queries/cil_datatype.ml
index 882c494bce2..f27558077f9 100644
--- a/src/kernel_services/ast_queries/cil_datatype.ml
+++ b/src/kernel_services/ast_queries/cil_datatype.ml
@@ -226,10 +226,15 @@ module Location = struct
   let to_lexing_loc (pos1, pos2) =
     Position.to_lexing_pos pos1, Position.to_lexing_pos pos2
 
-  let equal_start_semantic (pos1, _) (pos2, _) =
-    Filepath.(Datatype.Filepath.equal pos1.pos_path pos2.pos_path
-              && pos1.pos_lnum = pos2.pos_lnum
-              && pos1.pos_cnum - pos1.pos_bol = pos2.pos_cnum - pos2.pos_bol)
+  let compare_start_semantic (pos1, _) (pos2, _) =
+    let open Filepath in
+    let c = Datatype.Filepath.compare pos1.pos_path pos2.pos_path in
+    if c <> 0 then c else
+      let c = pos1.pos_lnum - pos2.pos_lnum in
+      if c <> 0 then c else
+        (pos1.pos_cnum - pos1.pos_bol) - (pos2.pos_cnum - pos2.pos_bol)
+
+  let equal_start_semantic l1 l2 = compare_start_semantic l1 l2 = 0
 
 end
 
diff --git a/src/kernel_services/ast_queries/cil_datatype.mli b/src/kernel_services/ast_queries/cil_datatype.mli
index 3370462e561..4460eed18fe 100644
--- a/src/kernel_services/ast_queries/cil_datatype.mli
+++ b/src/kernel_services/ast_queries/cil_datatype.mli
@@ -85,10 +85,15 @@ module Location: sig
       starting position. Compares normalized filenames, lines and columns,
       but no absolute character offsets.
 
+      @since Frama-C+dev
+   *)
+  val compare_start_semantic : location -> location -> int
+
+  (** Equality using [compare_start_semantic].
+
       @since 22.0-Titanium
    *)
   val equal_start_semantic : location -> location -> bool
-
 end
 
 module Localisation: Datatype.S with type t = localisation
diff --git a/tests/fc_script/for-find-fun2.c b/tests/fc_script/for-find-fun2.c
index 3cef634fc5b..45c8130a368 100644
--- a/tests/fc_script/for-find-fun2.c
+++ b/tests/fc_script/for-find-fun2.c
@@ -24,3 +24,8 @@ void h() {
 
  void false_positive(); // this is a "voluntary" false negative (space before):
                         // it allows us to avoid false positives more easily
+
+static int static_fun() {
+  static int init = 0;
+  return init;
+}
diff --git a/tests/fc_script/for-list-functions.c b/tests/fc_script/for-list-functions.c
new file mode 100644
index 00000000000..44ec1ad2686
--- /dev/null
+++ b/tests/fc_script/for-list-functions.c
@@ -0,0 +1,22 @@
+/* run.config
+   DONTRUN: test run by main.c
+*/
+
+#include "for-list-functions2.h"
+#include "for-list-functions.h"
+
+static int static_fun() {
+  static int init = 0;
+  if (!init) {
+    init = 1;
+    return 2;
+  }
+  return 4;
+}
+
+void k() {
+  /*@ loop unroll 10; */ // Eva is not loaded, so we must ignore the annotation
+  for (int i = 0; i < 10; i++) {
+    extf();
+  }
+}
diff --git a/tests/fc_script/for-list-functions.h b/tests/fc_script/for-list-functions.h
new file mode 100644
index 00000000000..5bafea75c46
--- /dev/null
+++ b/tests/fc_script/for-list-functions.h
@@ -0,0 +1 @@
+#include "for-list-functions2.h"
diff --git a/tests/fc_script/for-list-functions2.h b/tests/fc_script/for-list-functions2.h
new file mode 100644
index 00000000000..7338669a3ed
--- /dev/null
+++ b/tests/fc_script/for-list-functions2.h
@@ -0,0 +1 @@
+extern void extf(void);
diff --git a/tests/fc_script/main.c b/tests/fc_script/main.c
index 288eaca6d5f..9b26d5592ce 100644
--- a/tests/fc_script/main.c
+++ b/tests/fc_script/main.c
@@ -5,6 +5,8 @@
    EXECNOW: LOG find_fun1.res LOG find_fun1.err bin/frama-c-script find-fun main2 @PTEST_DIR@ > @PTEST_DIR@/result/find_fun1.res 2> @PTEST_DIR@/result/find_fun1.err
    EXECNOW: LOG find_fun2.res LOG find_fun2.err bin/frama-c-script find-fun main3 @PTEST_DIR@ > @PTEST_DIR@/result/find_fun2.res 2> @PTEST_DIR@/result/find_fun2.err
    EXECNOW: LOG find_fun3.res LOG find_fun3.err bin/frama-c-script find-fun false_positive @PTEST_DIR@ > @PTEST_DIR@/result/find_fun3.res 2> @PTEST_DIR@/result/find_fun3.err
+   EXECNOW: LOG list_functions.res LOG list_functions.err bin/frama-c-script list-functions @PTEST_DIR@/for-find-fun2.c @PTEST_DIR@/for-list-functions.c > @PTEST_DIR@/result/list_functions.res 2> @PTEST_DIR@/result/list_functions.err
+   EXECNOW: LOG list_functions2.res LOG list_functions2.err LOG list_functions2.json bin/frama-c-script list-functions @PTEST_DIR@/for-find-fun2.c @PTEST_DIR@/for-list-functions.c -list-functions-declarations -list-functions-output @PTEST_DIR@/result/list_functions2.json -list-functions-debug 1 > @PTEST_DIR@/result/list_functions2.res 2> @PTEST_DIR@/result/list_functions2.err
  */
 
 void main() {
diff --git a/tests/fc_script/oracle/find_fun1.res b/tests/fc_script/oracle/find_fun1.res
index 3e35782af42..0ceb3c8c68b 100644
--- a/tests/fc_script/oracle/find_fun1.res
+++ b/tests/fc_script/oracle/find_fun1.res
@@ -1,4 +1,4 @@
-Looking for 'main2' inside 8 file(s)...
+Looking for 'main2' inside 11 file(s)...
 Possible declarations for function 'main2' in the following file(s):
   tests/fc_script/for-find-fun.c
 Possible definitions for function 'main2' in the following file(s):
diff --git a/tests/fc_script/oracle/find_fun2.res b/tests/fc_script/oracle/find_fun2.res
index e9f42fdf76a..e59924a72f4 100644
--- a/tests/fc_script/oracle/find_fun2.res
+++ b/tests/fc_script/oracle/find_fun2.res
@@ -1,4 +1,4 @@
-Looking for 'main3' inside 8 file(s)...
+Looking for 'main3' inside 11 file(s)...
 Possible declarations for function 'main3' in the following file(s):
   tests/fc_script/for-find-fun2.c
 Possible definitions for function 'main3' in the following file(s):
diff --git a/tests/fc_script/oracle/find_fun3.res b/tests/fc_script/oracle/find_fun3.res
index 65fc349325d..6d151d463ef 100644
--- a/tests/fc_script/oracle/find_fun3.res
+++ b/tests/fc_script/oracle/find_fun3.res
@@ -1,2 +1,2 @@
-Looking for 'false_positive' inside 8 file(s)...
+Looking for 'false_positive' inside 11 file(s)...
 No declaration/definition found for function 'false_positive'
diff --git a/tests/fc_script/oracle/list_functions.err b/tests/fc_script/oracle/list_functions.err
new file mode 100644
index 00000000000..e69de29bb2d
diff --git a/tests/fc_script/oracle/list_functions.res b/tests/fc_script/oracle/list_functions.res
new file mode 100644
index 00000000000..66661be089b
--- /dev/null
+++ b/tests/fc_script/oracle/list_functions.res
@@ -0,0 +1,7 @@
+[kernel:typing:implicit-function-declaration] tests/fc_script/for-find-fun2.c:16: Warning: 
+  Calling undeclared function false_positive. Old style K&R code?
+f: defined at tests/fc_script/for-find-fun2.c:10 (1 statement);
+g: defined at tests/fc_script/for-find-fun2.c:14 (3 statements);
+h: defined at tests/fc_script/for-find-fun2.c:19 (2 statements);
+k: defined at tests/fc_script/for-list-functions.c:17 (8 statements);
+static_fun: defined at tests/fc_script/for-find-fun2.c:28 (1 statement), tests/fc_script/for-list-functions.c:8 (7 statements);
diff --git a/tests/fc_script/oracle/list_functions2.err b/tests/fc_script/oracle/list_functions2.err
new file mode 100644
index 00000000000..e69de29bb2d
diff --git a/tests/fc_script/oracle/list_functions2.json b/tests/fc_script/oracle/list_functions2.json
new file mode 100644
index 00000000000..7025402b87e
--- /dev/null
+++ b/tests/fc_script/oracle/list_functions2.json
@@ -0,0 +1,14 @@
+[ { "extf": { "declarations": [ "tests/fc_script/for-list-functions2.h:1" ] } },
+  { "f": { "definitions": [ { "location": "tests/fc_script/for-find-fun2.c:10",
+                              "statements": 1 } ] } },
+  { "false_positive": { "declarations": [ "tests/fc_script/for-find-fun2.c:25" ] } },
+  { "g": { "definitions": [ { "location": "tests/fc_script/for-find-fun2.c:14",
+                              "statements": 3 } ] } },
+  { "h": { "definitions": [ { "location": "tests/fc_script/for-find-fun2.c:19",
+                              "statements": 2 } ] } },
+  { "k": { "definitions": [ { "location": "tests/fc_script/for-list-functions.c:17",
+                              "statements": 8 } ] } },
+  { "static_fun": { "definitions": [ { "location": "tests/fc_script/for-find-fun2.c:28",
+                                       "statements": 1 },
+                                     { "location": "tests/fc_script/for-list-functions.c:8",
+                                       "statements": 7 } ] } } ]
diff --git a/tests/fc_script/oracle/list_functions2.res b/tests/fc_script/oracle/list_functions2.res
new file mode 100644
index 00000000000..935425e8f69
--- /dev/null
+++ b/tests/fc_script/oracle/list_functions2.res
@@ -0,0 +1,3 @@
+[kernel:typing:implicit-function-declaration] tests/fc_script/for-find-fun2.c:16: Warning: 
+  Calling undeclared function false_positive. Old style K&R code?
+[list-functions] List written to: tests/fc_script/result/list_functions2.json
-- 
GitLab


From 793acd4feec2853a7a7944505e08ec45bd5738b5 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@cea.fr>
Date: Tue, 9 Feb 2021 09:17:06 +0100
Subject: [PATCH 077/141] Update Changelog after !2952

---
 Changelog | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Changelog b/Changelog
index 3a7c6a18346..36f7a3004d5 100644
--- a/Changelog
+++ b/Changelog
@@ -17,6 +17,8 @@
 Open Source Release <next-release>
 ##################################
 
+-   Aorai     [2021-02-09] New option for tracking last N states of the
+              automaton. Easier analysis of instrumented code with Eva
 o!  Kernel    [2021-02-08] Avoid triggering warning 16 (unerasable optional
               argument). Implies changing some labeled functions' signatures.
 o!  Kernel    [2021-01-15] Make cfields list optional. None means undefined,
-- 
GitLab


From d3c05c1cc624818cab08089442f1326270701780 Mon Sep 17 00:00:00 2001
From: Basile Desloges <basile.desloges@cea.fr>
Date: Thu, 4 Feb 2021 17:52:57 +0100
Subject: [PATCH 078/141] [eacsl] Update bibtex entry for E-ACSL User Manual

---
 doc/userman/userman.bib                  | 8 +++-----
 src/plugins/e-acsl/doc/refman/biblio.bib | 2 +-
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/doc/userman/userman.bib b/doc/userman/userman.bib
index 2c1e9cc7f4f..5f1f3daa186 100644
--- a/doc/userman/userman.bib
+++ b/doc/userman/userman.bib
@@ -105,9 +105,7 @@ note={Extended version of \cite{sefm12}},
 }
 
 @manual{eacsl,
-  title = {Frama-C's E-ACSL Plug-in},
-  author = {Julien Signoles},
-  year = {2015},
-  month = feb,
-  note = {\url{http://frama-c.com/eacsl.html}},
+  title  = {Frama-C's E-ACSL Plug-in},
+  author = {Julien Signoles and Basile Desloges and Kostyantyn Vorobyov},
+  note   = {\url{https://frama-c.com/fc-plugins/e-acsl.html}},
 }
diff --git a/src/plugins/e-acsl/doc/refman/biblio.bib b/src/plugins/e-acsl/doc/refman/biblio.bib
index bb7f2f66e7f..da3c4fc29c6 100644
--- a/src/plugins/e-acsl/doc/refman/biblio.bib
+++ b/src/plugins/e-acsl/doc/refman/biblio.bib
@@ -57,7 +57,7 @@ Virgile Prevosto and Armand Puccetti and Julien Signoles and Boris Yakobowski},
 
 @manual{eacsl-plugin,
   title  = {Frama-C's E-ACSL Plug-in},
-  author = {Julien Signoles and Kostyantyn Vorobyov},
+  author = {Julien Signoles and Basile Desloges and Kostyantyn Vorobyov},
   note   = {\url{https://frama-c.com/fc-plugins/e-acsl.html}},
 }
 
-- 
GitLab


From 1e693af38edcce4acb9ba0940315715c9e7f76b6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Loi=CC=88c=20Correnson?= <loic.correnson@cea.fr>
Date: Tue, 9 Feb 2021 17:19:24 +0100
Subject: [PATCH 079/141] [makefile] fix aorai eva analysis

---
 src/plugins/aorai/Makefile.in | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/src/plugins/aorai/Makefile.in b/src/plugins/aorai/Makefile.in
index dfb9ab78cc8..5c616604fc7 100644
--- a/src/plugins/aorai/Makefile.in
+++ b/src/plugins/aorai/Makefile.in
@@ -79,23 +79,22 @@ PLUGIN_DISTRIB_EXTERNAL:= \
 PLUGIN_HAS_EXT_DOC:=no # [JS 2010/07/28] was 'yes'
                        # but prevent 'make src-distrib to work
 PLUGIN_DEPENDENCIES:=
-	
-# Dynamic dependencies
 
-$(PLUGIN_DIR)/aorai_eva_analysis.ml:
-	$(PRINT_MAKING) $@
-	$(CP) $< $@
-	$(CHMOD_RO) $@
+# Dynamic dependencies
 
 ifneq "$(ENABLE_EVA)" "no"
 PLUGIN_DEPENDENCIES+= Eva
-$(PLUGIN_DIR)/aorai_eva_analysis.ml: $(PLUGIN_DIR)/aorai_eva_analysis.enabled.ml
+AORAI_EVA_ANALYSIS:= $(PLUGIN_DIR)/aorai_eva_analysis.enabled.ml
 else
-$(PLUGIN_DIR)/aorai_eva_analysis.ml: $(PLUGIN_DIR)/aorai_eva_analysis.disabled.ml
+AORAI_EVA_ANALYSIS:= $(PLUGIN_DIR)/aorai_eva_analysis.disabled.ml
 endif
 
-$(PLUGIN_DIR)/aorai_eva_analysis.ml: $(PLUGIN_DIR)/Makefile share/Makefile.config
+$(PLUGIN_DIR)/aorai_eva_analysis.ml: $(AORAI_EVA_ANALYSIS)
+	$(PRINT_MAKING) $@
+	$(CP) $(AORAI_EVA_ANALYSIS) $@
+	$(CHMOD_RO) $@
 
+$(PLUGIN_DIR)/aorai_eva_analysis.ml: $(PLUGIN_DIR)/Makefile share/Makefile.config
 
 # Tests
 
-- 
GitLab


From 735ebf09e981491e2d474bc30c470254e10891d3 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Mon, 8 Feb 2021 14:54:51 +0100
Subject: [PATCH 080/141] [Kernel] avoid triggering warning 16
 (unerasable-optional-argument)

---
 src/kernel_internals/typing/cabs2cil.ml          | 2 +-
 src/kernel_services/analysis/logic_interp.ml     | 4 ++--
 src/kernel_services/ast_queries/logic_typing.ml  | 6 +++---
 src/kernel_services/ast_queries/logic_typing.mli | 4 ++--
 src/plugins/aorai/data_for_aorai.ml              | 2 +-
 5 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/kernel_internals/typing/cabs2cil.ml b/src/kernel_internals/typing/cabs2cil.ml
index 4c70e7912aa..64bd16cb823 100644
--- a/src/kernel_internals/typing/cabs2cil.ml
+++ b/src/kernel_internals/typing/cabs2cil.ml
@@ -3923,7 +3923,7 @@ struct
   let anonCompFieldName = anonCompFieldName
   let conditionalConversion = logicConditionalConversion
   let find_macro _ = raise Not_found
-  let find_var ?label ~var =
+  let find_var ?label var =
     let find_from_curr_env test =
       (* logic has always access to the ghost variables. *)
       match Datatype.String.Hashtbl.find ghost_env var with
diff --git a/src/kernel_services/analysis/logic_interp.ml b/src/kernel_services/analysis/logic_interp.ml
index 98cf45da1bd..7dedd4c4c7a 100644
--- a/src/kernel_services/analysis/logic_interp.ml
+++ b/src/kernel_services/analysis/logic_interp.ml
@@ -27,7 +27,7 @@ open Cil_datatype
 exception Error of Cil_types.location * string
 exception Unbound of string
 
-let find_var kf kinstr ?label ~var =
+let find_var kf kinstr ?label var =
   let vi =
     try
       let vi = Globals.Vars.find_from_astinfo var (VLocal kf) in
@@ -89,7 +89,7 @@ end) =
 
       let find_macro _ = raise Not_found
 
-      let find_var ?label ~var = find_var X.kf X.kinstr ?label ~var
+      let find_var ?label var = find_var X.kf X.kinstr ?label var
 
       let find_enum_tag x =
         try
diff --git a/src/kernel_services/ast_queries/logic_typing.ml b/src/kernel_services/ast_queries/logic_typing.ml
index 250e409acf6..b317c5daf7a 100644
--- a/src/kernel_services/ast_queries/logic_typing.ml
+++ b/src/kernel_services/ast_queries/logic_typing.ml
@@ -488,7 +488,7 @@ type typing_context = {
   anonCompFieldName : string;
   conditionalConversion : typ -> typ -> typ;
   find_macro : string -> lexpr;
-  find_var : ?label:string -> var:string -> logic_var;
+  find_var : ?label:string -> string -> logic_var;
   find_enum_tag : string -> exp * typ;
   find_comp_field: compinfo -> string -> offset;
   find_type : type_namespace -> string -> typ;
@@ -670,7 +670,7 @@ module Make
        val anonCompFieldName : string
        val conditionalConversion : typ -> typ -> typ
        val find_macro : string -> lexpr
-       val find_var : ?label:string -> var:string -> logic_var
+       val find_var : ?label:string -> string -> logic_var
        val find_enum_tag : string -> exp * typ
        val find_comp_field: compinfo -> string -> offset
        val find_type : type_namespace -> string -> typ
@@ -2615,7 +2615,7 @@ struct
         with Not_found ->
         try
           let label = Lenv.string_of_current_label env in
-          let info = ctxt.find_var ?label ~var:x in
+          let info = ctxt.find_var ?label x in
           (match info.lv_origin with
            | Some lv ->
              check_current_label loc env;
diff --git a/src/kernel_services/ast_queries/logic_typing.mli b/src/kernel_services/ast_queries/logic_typing.mli
index e1c613d9e29..109b45d7f1b 100644
--- a/src/kernel_services/ast_queries/logic_typing.mli
+++ b/src/kernel_services/ast_queries/logic_typing.mli
@@ -97,7 +97,7 @@ type typing_context = {
   anonCompFieldName : string;
   conditionalConversion : typ -> typ -> typ;
   find_macro : string -> Logic_ptree.lexpr;
-  find_var : ?label:string -> var:string -> logic_var;
+  find_var : ?label:string -> string -> logic_var;
   (** the label argument is a C label (obeying the restrictions
       of which label can be present in a \at). If present, the scope for
       searching local C variables is the one of the statement with
@@ -262,7 +262,7 @@ module Make
        val anonCompFieldName : string
        val conditionalConversion : typ -> typ -> typ
        val find_macro : string -> Logic_ptree.lexpr
-       val find_var : ?label:string -> var:string -> logic_var
+       val find_var : ?label:string -> string -> logic_var
        (** see corresponding field in {!Logic_typing.typing_context}. *)
        val find_enum_tag : string -> exp * typ
        val find_type : type_namespace -> string -> typ
diff --git a/src/plugins/aorai/data_for_aorai.ml b/src/plugins/aorai/data_for_aorai.ml
index b1423f97bef..abc05400af3 100644
--- a/src/plugins/aorai/data_for_aorai.ml
+++ b/src/plugins/aorai/data_for_aorai.ml
@@ -697,7 +697,7 @@ struct
   let conditionalConversion = Cabs2cil.logicConditionalConversion
   let is_loop () = false
   let find_macro _ = raise Not_found
-  let find_var ?label:_ ~var:_ = raise Not_found
+  let find_var ?label:_ _ = raise Not_found
   let find_enum_tag _ = raise Not_found
   (*let find_comp_type ~kind:_ _ = raise Not_found*)
   let find_comp_field info s =
-- 
GitLab


From 0e4878bd5fa096a52a28f94aa18e842827cfeb53 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Wed, 3 Feb 2021 16:12:50 +0100
Subject: [PATCH 081/141] [Eva] avoid triggering warning 16
 (unerasable-optional-argument)

---
 .../values/numerors/numerors_arithmetics.ml   | 16 ++++++-------
 .../values/numerors/numerors_interval.ml      | 24 +++++++++----------
 .../values/numerors/numerors_interval.mli     |  8 +++----
 3 files changed, 24 insertions(+), 24 deletions(-)

diff --git a/src/plugins/value/values/numerors/numerors_arithmetics.ml b/src/plugins/value/values/numerors/numerors_arithmetics.ml
index 776f7edf3f3..d2cea72a638 100644
--- a/src/plugins/value/values/numerors/numerors_arithmetics.ml
+++ b/src/plugins/value/values/numerors/numerors_arithmetics.ml
@@ -331,16 +331,16 @@ module Exact : Arithmetic with type forward = I.t = struct
       I.narrow x.exact (I.neg r.exact)
 
     let add x y r = [x ; y ; r] >>+ fun _ ->
-      I.backward_add ~prec:P.Real ~left:x.exact ~right:y.exact ~result:r.exact
+      I.backward_add ~prec:P.Real ~left:x.exact ~right:y.exact ~result:r.exact ()
 
     let sub x y r = [x ; y ; r] >>+ fun _ ->
-      I.backward_sub ~prec:P.Real ~left:x.exact ~right:y.exact ~result:r.exact
+      I.backward_sub ~prec:P.Real ~left:x.exact ~right:y.exact ~result:r.exact ()
 
     let mul x y r = [x ; y ; r] >>+ fun _ ->
-      I.backward_mul ~prec:P.Real ~left:x.exact ~right:y.exact ~result:r.exact
+      I.backward_mul ~prec:P.Real ~left:x.exact ~right:y.exact ~result:r.exact ()
 
     let div x y r = [x ; y ; r] >>+ fun _ ->
-      I.backward_div ~prec:P.Real ~left:x.exact ~right:y.exact ~result:r.exact
+      I.backward_div ~prec:P.Real ~left:x.exact ~right:y.exact ~result:r.exact ()
 
   end
 
@@ -378,16 +378,16 @@ module Approx : Arithmetic with type forward = I.t = struct
       I.narrow x.approx (I.neg r.approx)
 
     let add x y r = [x ; y ; r] >>+ fun prec ->
-      I.backward_add ~prec ~left:x.approx ~right:y.approx ~result:r.approx
+      I.backward_add ~prec ~left:x.approx ~right:y.approx ~result:r.approx ()
 
     let sub x y r = [x ; y ; r] >>+ fun prec ->
-      I.backward_sub ~prec ~left:x.approx ~right:y.approx ~result:r.approx
+      I.backward_sub ~prec ~left:x.approx ~right:y.approx ~result:r.approx ()
 
     let mul x y r = [x ; y ; r] >>+ fun prec ->
-      I.backward_mul ~prec ~left:x.approx ~right:y.approx ~result:r.approx
+      I.backward_mul ~prec ~left:x.approx ~right:y.approx ~result:r.approx ()
 
     let div x y r = [x ; y ; r] >>+ fun prec ->
-      I.backward_div ~prec ~left:x.approx ~right:y.approx ~result:r.approx
+      I.backward_div ~prec ~left:x.approx ~right:y.approx ~result:r.approx ()
 
   end
 
diff --git a/src/plugins/value/values/numerors/numerors_interval.ml b/src/plugins/value/values/numerors/numerors_interval.ml
index 7f1e0f63bf4..1354d6dbc46 100644
--- a/src/plugins/value/values/numerors/numerors_interval.ml
+++ b/src/plugins/value/values/numerors/numerors_interval.ml
@@ -441,7 +441,7 @@ let finite_values ~prec = function
     let max = F.min (F.maximal_pos_float prec) y in
     if max < min then None else Some (min, max)
 
-let backward_op (op : operator) fnan ?(prec = Precisions.Real) value result =
+let backward_op (op : operator) fnan ?(prec = Precisions.Real) value result () =
   if contains_infinity result || (contains_nan value && contains_nan result)
   then `Value (top prec)
   else
@@ -471,7 +471,7 @@ let synthetize left right =
   | `Value left, `Value right -> `Value (left, right)
 [@@inline]
 
-let backward_add ?(prec = Precisions.Real) ~left ~right ~result =
+let backward_add ?(prec = Precisions.Real) ~left ~right ~result () =
   let reduce_for_nan value =
     match contains_pos_infinity value, contains_neg_infinity value with
     | true , true   -> I (F.neg_inf prec, F.pos_inf prec, true)
@@ -479,38 +479,38 @@ let backward_add ?(prec = Precisions.Real) ~left ~right ~result =
     | false, true   -> I (F.pos_inf prec, F.pos_inf prec, true)
     | false, false  -> NaN prec
   in
-  let right' = backward_op F.sub reduce_for_nan ~prec left  result in
-  let left'  = backward_op F.sub reduce_for_nan ~prec right result in
+  let right' = backward_op F.sub reduce_for_nan ~prec left  result () in
+  let left'  = backward_op F.sub reduce_for_nan ~prec right result () in
   synthetize left' right'
 
-let backward_sub ?(prec = Precisions.Real) ~left ~right ~result =
-  match backward_add ~prec ~left ~right:(neg right) ~result with
+let backward_sub ?(prec = Precisions.Real) ~left ~right ~result () =
+  match backward_add ~prec ~left ~right:(neg right) ~result () with
   | `Bottom -> `Bottom
   | `Value (left, right) -> `Value (left, neg right)
 
-let backward_mul ?(prec = Precisions.Real) ~left ~right ~result =
+let backward_mul ?(prec = Precisions.Real) ~left ~right ~result () =
   let reduce_for_nan value =
     match contains_infinity value, contains_a_zero value with
     | true, _ | _, true -> I (F.neg_inf prec, F.pos_inf prec, true)
     | false, false -> NaN prec
   in
-  let right' = backward_op F.div reduce_for_nan ~prec left  result in
-  let left'  = backward_op F.div reduce_for_nan ~prec right result in
+  let right' = backward_op F.div reduce_for_nan ~prec left  result () in
+  let left'  = backward_op F.div reduce_for_nan ~prec right result () in
   synthetize left' right'
 
-let backward_div ?(prec = Precisions.Real) ~left ~right ~result =
+let backward_div ?(prec = Precisions.Real) ~left ~right ~result () =
   let reduce_for_nan value =
     match contains_infinity value, contains_a_zero value with
     | true, _ | _, true -> I (F.neg_inf prec, F.pos_inf prec, true)
     | false, false -> NaN prec
   in
   let right' =
-    match backward_op F.div reduce_for_nan ~prec left  result with
+    match backward_op F.div reduce_for_nan ~prec left  result () with
     | `Value right' ->
       let one = F.of_int ~prec 1 in
       let one = I (one, one, false) in
       `Value (div ~prec one right')
     | `Bottom -> `Bottom
   in
-  let left'  = backward_op F.div reduce_for_nan ~prec right result in
+  let left'  = backward_op F.div reduce_for_nan ~prec right result () in
   synthetize left' right'
diff --git a/src/plugins/value/values/numerors/numerors_interval.mli b/src/plugins/value/values/numerors/numerors_interval.mli
index badb0a2d25a..1a4ea5b7545 100644
--- a/src/plugins/value/values/numerors/numerors_interval.mli
+++ b/src/plugins/value/values/numerors/numerors_interval.mli
@@ -182,10 +182,10 @@ val backward_gt : ?prec:Precisions.t -> t -> t -> t Bottom.or_bottom
 
 (** These functions perform backward propagation for arithmetic *)
 val backward_add : ?prec:Precisions.t -> left:t -> right:t ->
-  result:t -> (t * t) Bottom.or_bottom
+  result:t -> unit -> (t * t) Bottom.or_bottom
 val backward_sub : ?prec:Precisions.t -> left:t -> right:t ->
-  result:t -> (t * t) Bottom.or_bottom
+  result:t -> unit -> (t * t) Bottom.or_bottom
 val backward_mul : ?prec:Precisions.t -> left:t -> right:t ->
-  result:t -> (t * t) Bottom.or_bottom
+  result:t -> unit -> (t * t) Bottom.or_bottom
 val backward_div : ?prec:Precisions.t -> left:t -> right:t ->
-  result:t -> (t * t) Bottom.or_bottom
+  result:t -> unit -> (t * t) Bottom.or_bottom
-- 
GitLab


From 4b37c93fca4b5d529ab5ed79db6d5b2466902361 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Mon, 8 Feb 2021 15:40:28 +0100
Subject: [PATCH 082/141] [Kernel] remove unerasable-optional-argument warning
 related to wto

---
 src/kernel_services/analysis/wto_statement.ml | 2 +-
 src/libraries/utils/wto.ml                    | 9 ++++-----
 src/libraries/utils/wto.mli                   | 5 +++--
 src/plugins/wp/StmtSemantics.ml               | 2 +-
 4 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/kernel_services/analysis/wto_statement.ml b/src/kernel_services/analysis/wto_statement.ml
index bfa182f5e12..b69dd555d6d 100644
--- a/src/kernel_services/analysis/wto_statement.ml
+++ b/src/kernel_services/analysis/wto_statement.ml
@@ -39,7 +39,7 @@ let build_wto kf =
   let init = Kernel_function.find_first_stmt kf
   and succs = fun stmt -> List.rev stmt.succs
   in
-  Scheduler.partition ?pref:None ~init ~succs
+  Scheduler.partition ~pref:(fun _ _ -> 0) ~init ~succs
 
 
 (* ********************************************************************** *)
diff --git a/src/libraries/utils/wto.ml b/src/libraries/utils/wto.ml
index ec3583f3003..5c6ed3e9801 100644
--- a/src/libraries/utils/wto.ml
+++ b/src/libraries/utils/wto.ml
@@ -187,10 +187,9 @@ module Make(N:sig
           let element = Stack.pop state.stack in
           DFN.remove state.dfn element;
           if not (N.equal element vertex) then begin
-            let best_head = match pref with
-              (** the strict is important because we are conservative *)
-              | Some cmp when cmp best_head element < 0 -> element
-              | _ -> best_head
+            (** the strict is important because we are conservative *)
+            let best_head =
+              if pref best_head element < 0 then element else best_head
             in
             reset_SCC best_head
           end
@@ -223,7 +222,7 @@ module Make(N:sig
 
   type pref = N.t -> N.t -> int
 
-  let partition ?pref ~init ~succs =
+  let partition ~pref ~init ~succs =
     let state = {dfn = DFN.create 17; num = 0; succs;
                  stack = Stack.create () } in
     let loop,component = visit ~pref state init [] in
diff --git a/src/libraries/utils/wto.mli b/src/libraries/utils/wto.mli
index 004312ad709..1a693e0f597 100644
--- a/src/libraries/utils/wto.mli
+++ b/src/libraries/utils/wto.mli
@@ -53,11 +53,12 @@ module Make(Node:sig
   end):sig
 
   type pref = Node.t -> Node.t -> int
-  (** partial order of preference for the choice of the head of a loop *)
+  (** Partial order of preference for the choice of the head of a loop.
+      Use "(fun _ _ -> 0)" for no specific preference. *)
 
   (** Implements Bourdoncle "Efficient chaotic iteration strategies with
   widenings" algorithm to compute a WTO. *)
-  val partition: ?pref:pref -> init:Node.t -> succs:(Node.t -> Node.t list) -> Node.t partition
+  val partition: pref:pref -> init:Node.t -> succs:(Node.t -> Node.t list) -> Node.t partition
 
   val pretty_partition: Format.formatter -> Node.t partition -> unit
   val pretty_component: Format.formatter -> Node.t component -> unit
diff --git a/src/plugins/wp/StmtSemantics.ml b/src/plugins/wp/StmtSemantics.ml
index f5236949e0a..5466a629e8d 100644
--- a/src/plugins/wp/StmtSemantics.ml
+++ b/src/plugins/wp/StmtSemantics.ml
@@ -597,7 +597,7 @@ struct
     let next = (a.return_point,Vertex.Set.empty) in
     let wto =
       WTO.partition
-        ?pref:None (* natural loop keep the heads *)
+        ~pref:(fun _ _ -> 0) (* natural loops keep their heads *)
         ~succs:(UnrollUnnatural.G.succ g)
         ~init:here in
 
-- 
GitLab


From 876bddaa703d7a6602145dcaa1ccf270776e39eb Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Mon, 8 Feb 2021 15:41:31 +0100
Subject: [PATCH 083/141] [Wp] remove unerasable-optional-argument warning
 related to prove_prop

---
 src/plugins/wp/ProverWhy3.ml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/plugins/wp/ProverWhy3.ml b/src/plugins/wp/ProverWhy3.ml
index 54e5d9d0cbf..ed48014f562 100644
--- a/src/plugins/wp/ProverWhy3.ml
+++ b/src/plugins/wp/ProverWhy3.ml
@@ -1088,7 +1088,7 @@ let prove_goal ~id ~title ~name ?axioms t =
   end;
   th, decl
 
-let prove_prop ?axioms ~pid ~prop =
+let prove_prop ?axioms ~pid prop =
   let id = WpPropId.get_propid pid in
   let title = Pretty_utils.to_string WpPropId.pretty pid in
   let name = "WP" in
@@ -1105,13 +1105,13 @@ let task_of_wpo wpo =
       let axioms = v.Wpo.VC_Annot.axioms in
       let prop = Wpo.GOAL.compute_proof v.Wpo.VC_Annot.goal in
       (* Format.printf "Goal: %a@." Lang.F.pp_pred prop; *)
-      prove_prop ~pid ~prop ?axioms
+      prove_prop ~pid prop ?axioms
   | Wpo.GoalLemma v ->
       let lemma = v.Wpo.VC_Lemma.lemma in
       let depends = v.Wpo.VC_Lemma.depends in
       let prop = Lang.F.p_forall lemma.l_forall lemma.l_lemma in
       let axioms = Some(lemma.l_cluster,depends) in
-      prove_prop ~pid ~prop ?axioms
+      prove_prop ~pid prop ?axioms
 
 (* -------------------------------------------------------------------------- *)
 (* --- Prover Task                                                        --- *)
-- 
GitLab


From 78c6d534556b10fd6109a6fb45efd823f387a69c Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Mon, 8 Feb 2021 15:43:43 +0100
Subject: [PATCH 084/141] [Wp] remove unerasable-optional-argument warning
 related to Havoc.strategy

---
 src/plugins/wp/Auto.mli     | 2 +-
 src/plugins/wp/TacHavoc.ml  | 2 +-
 src/plugins/wp/TacHavoc.mli | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/plugins/wp/Auto.mli b/src/plugins/wp/Auto.mli
index 6b5234198a8..669b50df4c8 100644
--- a/src/plugins/wp/Auto.mli
+++ b/src/plugins/wp/Auto.mli
@@ -35,7 +35,7 @@ val contrapose : ?priority:float -> selection -> strategy
 val compound : ?priority:float -> selection -> strategy
 val cut : ?priority:float -> ?modus:bool -> selection -> strategy
 val filter : ?priority:float -> ?anti:bool -> unit -> strategy
-val havoc : ?priority:float -> havoc:selection -> strategy
+val havoc : ?priority:float -> selection -> strategy
 val separated : ?priority:float -> selection -> strategy
 val instance : ?priority:float -> selection -> selection list -> strategy
 val lemma : ?priority:float -> ?at:selection -> string -> selection list -> strategy
diff --git a/src/plugins/wp/TacHavoc.ml b/src/plugins/wp/TacHavoc.ml
index f363cf4ecc8..294c706e6b6 100644
--- a/src/plugins/wp/TacHavoc.ml
+++ b/src/plugins/wp/TacHavoc.ml
@@ -196,7 +196,7 @@ class validity =
 module Havoc =
 struct
   let tactical = Tactical.export (new havoc)
-  let strategy ?(priority=1.0) ~havoc =
+  let strategy ?(priority=1.0) havoc =
     Strategy.{
       priority ;
       tactical ;
diff --git a/src/plugins/wp/TacHavoc.mli b/src/plugins/wp/TacHavoc.mli
index 0942b43ac08..de44ed3601e 100644
--- a/src/plugins/wp/TacHavoc.mli
+++ b/src/plugins/wp/TacHavoc.mli
@@ -29,7 +29,7 @@ module Havoc :
 sig
   val tactical : tactical
   val strategy :
-    ?priority:float -> havoc:selection -> strategy
+    ?priority:float -> selection -> strategy
 end
 
 module Separated :
-- 
GitLab


From 0ca18665e5e44ad386eeeb929b28353865b6b839 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Mon, 8 Feb 2021 15:46:55 +0100
Subject: [PATCH 085/141] [Gui] remove unerasable-optional-argument warning
 related to menu_manager

---
 src/plugins/gui/design.ml        | 2 +-
 src/plugins/gui/menu_manager.ml  | 2 +-
 src/plugins/gui/menu_manager.mli | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/plugins/gui/design.ml b/src/plugins/gui/design.ml
index c5a986d5802..21ade2a5af1 100644
--- a/src/plugins/gui/design.ml
+++ b/src/plugins/gui/design.ml
@@ -1034,7 +1034,7 @@ class main_window () : main_window_extension_points =
         let m =
           new Menu_manager.menu_manager
             ~packing:(toplevel_vbox#pack ~expand:false ~fill:false ~from:`START)
-            ~host:(self :> Gtk_helper.host)
+            (self :> Gtk_helper.host)
         in
         menu_manager <- Some m;
         m
diff --git a/src/plugins/gui/menu_manager.ml b/src/plugins/gui/menu_manager.ml
index 5d835aabd1c..af195e70150 100644
--- a/src/plugins/gui/menu_manager.ml
+++ b/src/plugins/gui/menu_manager.ml
@@ -112,7 +112,7 @@ let add_submenu container ~pos label =
 external set_menu :  Obj.t -> unit = "ige_mac_menu_set_menu_bar"
 *)
 
-class menu_manager ?packing ~host:(_:Gtk_helper.host) =
+class menu_manager ?packing (_:Gtk_helper.host) =
   let menubar = GMenu.menu_bar ?packing () in
   (*  let () = set_menu (Obj.field (Obj.repr ((menubar)#as_widget)) 1) in *)
   let factory = new GMenu.factory menubar in
diff --git a/src/plugins/gui/menu_manager.mli b/src/plugins/gui/menu_manager.mli
index dba70f9279c..22f5cba0dc5 100644
--- a/src/plugins/gui/menu_manager.mli
+++ b/src/plugins/gui/menu_manager.mli
@@ -113,7 +113,7 @@ end
 
 (** How to handle a Frama-C menu. 
     @since Boron-20100401 *)
-class menu_manager: ?packing:(GObj.widget -> unit) -> host:Gtk_helper.host ->
+class menu_manager: ?packing:(GObj.widget -> unit) -> Gtk_helper.host ->
   object
 
     (** {2 API for plug-ins} *)
-- 
GitLab


From 7aaa4bdaf1e376e557deeb51cf689a29cd809629 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Wed, 10 Feb 2021 09:31:40 +0100
Subject: [PATCH 086/141] [Wto] document 'pref' argument

---
 src/libraries/utils/wto.mli | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/libraries/utils/wto.mli b/src/libraries/utils/wto.mli
index 1a693e0f597..6a12f1a3f84 100644
--- a/src/libraries/utils/wto.mli
+++ b/src/libraries/utils/wto.mli
@@ -54,6 +54,8 @@ module Make(Node:sig
 
   type pref = Node.t -> Node.t -> int
   (** Partial order of preference for the choice of the head of a loop.
+      [pref current_head new_candidate] must return < 0 if [new_candidate]
+      is preferred to [current_head].
       Use "(fun _ _ -> 0)" for no specific preference. *)
 
   (** Implements Bourdoncle "Efficient chaotic iteration strategies with
-- 
GitLab


From 85658270e34f289c48545519f13b67bbc1594d7f Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Wed, 10 Feb 2021 12:19:39 +0100
Subject: [PATCH 087/141] [Instantiate] avoid warning 68 with OCaml 4.12

---
 src/plugins/instantiate/Instantiate.mli          | 4 ++--
 src/plugins/instantiate/instantiator_builder.ml  | 4 ++--
 src/plugins/instantiate/instantiator_builder.mli | 4 ++--
 src/plugins/instantiate/stdlib/calloc.ml         | 2 +-
 src/plugins/instantiate/stdlib/free.ml           | 2 +-
 src/plugins/instantiate/stdlib/malloc.ml         | 2 +-
 src/plugins/instantiate/string/mem_utils.ml      | 2 +-
 src/plugins/instantiate/string/mem_utils.mli     | 2 +-
 src/plugins/instantiate/string/memset.ml         | 2 +-
 9 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/src/plugins/instantiate/Instantiate.mli b/src/plugins/instantiate/Instantiate.mli
index 4444dd5d95b..ee3914d0e80 100644
--- a/src/plugins/instantiate/Instantiate.mli
+++ b/src/plugins/instantiate/Instantiate.mli
@@ -84,12 +84,12 @@ module Instantiator_builder: sig
     *)
     val generate_prototype: override_key -> (string * typ)
 
-    (** [generate_spec key fundec loc] must generate the specification of the
+    (** [generate_spec key loc fundec] must generate the specification of the
         [fundec] generated from [key]. The location is the one generated by the
         [Transform] visitor. Note that it must return a [funspec] but should
         {b not} register it in [Annotations] tables.
     *)
-    val generate_spec: override_key -> fundec -> location -> funspec
+    val generate_spec: override_key -> location -> fundec -> funspec
   end
 end
 
diff --git a/src/plugins/instantiate/instantiator_builder.ml b/src/plugins/instantiate/instantiator_builder.ml
index e700239c933..05c65a157f7 100644
--- a/src/plugins/instantiate/instantiator_builder.ml
+++ b/src/plugins/instantiate/instantiator_builder.ml
@@ -33,7 +33,7 @@ module type Generator_sig = sig
   val retype_args: override_key -> exp list -> exp list
   val args_for_original: override_key -> exp list -> exp list
   val generate_prototype: override_key -> (string * typ)
-  val generate_spec: override_key -> fundec -> location -> funspec
+  val generate_spec: override_key -> location -> fundec -> funspec
 end
 
 module type Instantiator = sig
@@ -90,7 +90,7 @@ module Make_instantiator (G: Generator_sig) = struct
     let spec = Cil.empty_funspec () in
     Globals.Functions.replace_by_definition spec fd loc ;
     let kf = Globals.Functions.get fd.svar in
-    let spec = generate_spec key fd loc in
+    let spec = generate_spec key loc fd in
     Annotations.add_behaviors Options.emitter kf spec.spec_behavior ;
     List.iter
       (Annotations.add_complete Options.emitter kf)
diff --git a/src/plugins/instantiate/instantiator_builder.mli b/src/plugins/instantiate/instantiator_builder.mli
index b0eb2f79fcf..b731e6b5576 100644
--- a/src/plugins/instantiate/instantiator_builder.mli
+++ b/src/plugins/instantiate/instantiator_builder.mli
@@ -83,12 +83,12 @@ module type Generator_sig = sig
   *)
   val generate_prototype: override_key -> (string * typ)
 
-  (** [generate_spec key fundec loc] must generate the specification of the
+  (** [generate_spec key loc fundec] must generate the specification of the
       [fundec] generated from [key]. The location is the one generated by the
       [Transform] visitor. Note that it must return a [funspec] but should
       {b not} register it in [Annotations] tables.
   *)
-  val generate_spec: override_key -> fundec -> location -> funspec
+  val generate_spec: override_key -> location -> fundec -> funspec
 end
 
 (** Signature of a instantiator.
diff --git a/src/plugins/instantiate/stdlib/calloc.ml b/src/plugins/instantiate/stdlib/calloc.ml
index 443804eb044..2176585ddaf 100644
--- a/src/plugins/instantiate/stdlib/calloc.ml
+++ b/src/plugins/instantiate/stdlib/calloc.ml
@@ -107,7 +107,7 @@ let make_behavior_no_allocation loc alloc_type num size =
   let alloc = allocates_nothing () in
   make_behavior ~name:"no_allocation" ~assumes ~assigns ~ensures ~alloc ()
 
-let generate_spec alloc_type { svar = vi } loc =
+let generate_spec alloc_type loc { svar = vi } =
   let (cnum, csize) = match Cil.getFormalsDecl vi with
     | [ cnum ; csize ] -> cnum, csize
     | _ -> unexpected "ill-formed fundec in specification generation"
diff --git a/src/plugins/instantiate/stdlib/free.ml b/src/plugins/instantiate/stdlib/free.ml
index b1adaae34a3..1542cc7a5ab 100644
--- a/src/plugins/instantiate/stdlib/free.ml
+++ b/src/plugins/instantiate/stdlib/free.ml
@@ -62,7 +62,7 @@ let make_behavior_no_deallocation loc ptr =
   let alloc = allocates_nothing () in
   make_behavior ~name:"no_allocation" ~assumes ~assigns ~ensures ~alloc ()
 
-let generate_spec _typ { svar = vi } loc =
+let generate_spec _typ loc { svar = vi } =
   let ptr = match Cil.getFormalsDecl vi with
     | [ ptr ] -> cvar_to_tvar ptr
     | _ -> unexpected "ill-formed fundec in specification generation"
diff --git a/src/plugins/instantiate/stdlib/malloc.ml b/src/plugins/instantiate/stdlib/malloc.ml
index f7b3e9f3b0d..f471209a103 100644
--- a/src/plugins/instantiate/stdlib/malloc.ml
+++ b/src/plugins/instantiate/stdlib/malloc.ml
@@ -48,7 +48,7 @@ let make_behavior_no_allocation loc ptr_type size =
   let alloc = allocates_nothing () in
   make_behavior ~name:"no_allocation" ~assumes ~assigns ~ensures ~alloc ()
 
-let generate_spec alloc_typ { svar = vi } loc =
+let generate_spec alloc_typ loc { svar = vi } =
   let (csize) = match Cil.getFormalsDecl vi with
     | [ size ] -> size
     | _ -> unexpected "ill-formed fundec in specification generation"
diff --git a/src/plugins/instantiate/string/mem_utils.ml b/src/plugins/instantiate/string/mem_utils.ml
index 200e3f1e37e..c1df382fa53 100644
--- a/src/plugins/instantiate/string/mem_utils.ml
+++ b/src/plugins/instantiate/string/mem_utils.ml
@@ -58,7 +58,7 @@ let mem2s_typing _ = function
     (Cil.isCompleteType dest)
   | _ -> false
 
-let mem2s_spec ~requires ~assigns ~ensures _t { svar = vi } loc =
+let mem2s_spec ~requires ~assigns ~ensures _t loc { svar = vi } =
   let (cdest, csrc, clen) = match Cil.getFormalsDecl vi with
     | [ dest ; src ; len ] -> dest, src, len
     | _ -> unexpected "ill-formed fundec in specification generation"
diff --git a/src/plugins/instantiate/string/mem_utils.mli b/src/plugins/instantiate/string/mem_utils.mli
index 2a580c48732..d81d16f04fe 100644
--- a/src/plugins/instantiate/string/mem_utils.mli
+++ b/src/plugins/instantiate/string/mem_utils.mli
@@ -56,7 +56,7 @@ val mem2s_spec:
   requires: (identified_predicate list) spec_gen ->
   assigns: assigns spec_gen ->
   ensures: (termination_kind * identified_predicate) list spec_gen ->
-  typ -> fundec -> location -> funspec
+  typ -> location -> fundec -> funspec
 
 val mem2s_typing: typ option -> typ list -> bool
 
diff --git a/src/plugins/instantiate/string/memset.ml b/src/plugins/instantiate/string/memset.ml
index bb3ce6ca4d8..f71c0b994c8 100644
--- a/src/plugins/instantiate/string/memset.ml
+++ b/src/plugins/instantiate/string/memset.ml
@@ -162,7 +162,7 @@ let generate_ensures e loc t ptr value len =
       { (presult_ptr ~loc t ptr) with pred_name = [ "result"] }
     ])
 
-let generate_spec (_t, e) { svar = vi } loc =
+let generate_spec (_t, e) loc { svar = vi } =
   let (cptr, cvalue, clen) = match Cil.getFormalsDecl vi with
     | [ ptr ; value ; len ] -> ptr, (Some value), len
     | [ ptr ; len ] -> ptr, None, len
-- 
GitLab


From a15a35e1feb754d2ba55c5ebc51ac08cb5a5eb0e Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Fri, 12 Feb 2021 09:53:01 +0100
Subject: [PATCH 088/141] [kernel] fixes Property.cmp_kind

---
 src/kernel_services/ast_data/property.ml      |    16 +-
 .../tests/sarif/oracle/std_string.res.oracle  |    22 +
 .../tests/sarif/oracle/std_string.sarif       | 25270 ++++++++++++++++
 .../markdown-report/tests/sarif/std_string.c  |     8 +
 4 files changed, 25309 insertions(+), 7 deletions(-)
 create mode 100644 src/plugins/markdown-report/tests/sarif/oracle/std_string.res.oracle
 create mode 100644 src/plugins/markdown-report/tests/sarif/oracle/std_string.sarif
 create mode 100644 src/plugins/markdown-report/tests/sarif/std_string.c

diff --git a/src/kernel_services/ast_data/property.ml b/src/kernel_services/ast_data/property.ml
index 53209718642..9d77b9fc6ce 100644
--- a/src/kernel_services/ast_data/property.ml
+++ b/src/kernel_services/ast_data/property.ml
@@ -758,11 +758,11 @@ module Ordered_by_function = Datatype.Make_with_collections(
         | IPAllocation _ -> 16
         | IPPredicate { ip_kind = PKTerminates } -> 17
         | IPDecrease _ -> 18
-        | IPReachable _ -> 18
-        | IPComplete _ -> 19
-        | IPDisjoint _ -> 20
-        | IPExtended _ -> 21
-        | IPOther _ -> 22
+        | IPReachable _ -> 19
+        | IPComplete _ -> 20
+        | IPDisjoint _ -> 21
+        | IPExtended _ -> 22
+        | IPOther _ -> 23
         | IPCodeAnnot ca ->
           Kernel.fatal "Unexpected code annot %a in identified property"
             Cil_printer.pp_code_annotation ca.ica_ca
@@ -820,9 +820,11 @@ module Ordered_by_function = Datatype.Make_with_collections(
         let res = other_loc_compare l1 l2 in
         if res <> 0 then res
         else String.compare n1 n2
-      | _ ->
+      | (p1,p2) ->
         Kernel.fatal
-          "Property.cmp_same_kind called with 2 arguments of different kind"
+          "Property.cmp_same_kind called with 2 arguments of different kind:\
+           @\n@[<2>Property 1 is: %a@]@\n@[<2>Property 2 is: %a@]"
+          pretty p1 pretty p2
 
     let compare p1 p2 =
       let kf1 = get_kf p1 and kf2 = get_kf p2 in
diff --git a/src/plugins/markdown-report/tests/sarif/oracle/std_string.res.oracle b/src/plugins/markdown-report/tests/sarif/oracle/std_string.res.oracle
new file mode 100644
index 00000000000..bfb86c1c794
--- /dev/null
+++ b/src/plugins/markdown-report/tests/sarif/oracle/std_string.res.oracle
@@ -0,0 +1,22 @@
+[kernel] Parsing tests/sarif/std_string.c (with preprocessing)
+[eva] Analyzing a complete application starting at main
+[eva] Computing initial state
+[eva] Initial state computed
+[eva:initial-state] Values of globals at initialization
+  
+[eva] done for function main
+[eva] ====== VALUES COMPUTED ======
+[eva:final-states] Values at end of function main:
+  __retres ∈ {0}
+[eva:summary] ====== ANALYSIS SUMMARY ======
+  ----------------------------------------------------------------------------
+  1 function analyzed (out of 1): 100% coverage.
+  In this function, 2 statements reached (out of 2): 100% coverage.
+  ----------------------------------------------------------------------------
+  No errors or warnings raised during the analysis.
+  ----------------------------------------------------------------------------
+  0 alarms generated by the analysis.
+  ----------------------------------------------------------------------------
+  No logical properties have been reached by the analysis.
+  ----------------------------------------------------------------------------
+[mdr] Report tests/sarif/result/std_string.sarif generated
diff --git a/src/plugins/markdown-report/tests/sarif/oracle/std_string.sarif b/src/plugins/markdown-report/tests/sarif/oracle/std_string.sarif
new file mode 100644
index 00000000000..d898b252849
--- /dev/null
+++ b/src/plugins/markdown-report/tests/sarif/oracle/std_string.sarif
@@ -0,0 +1,25270 @@
+{
+  "$schema":
+    "https://github.com/oasis-tcs/sarif-spec/blob/master/Documents/CommitteeSpecificationDrafts/v2.1.0-CSD.1/sarif-schema-2.1.0.json",
+  "version": "2.1.0",
+  "runs": [
+    {
+      "tool": {
+        "driver": {
+          "name": "frama-c",
+          "fullName": "frama-c-0+omitted-for-deterministic-output",
+          "version": "0+omitted-for-deterministic-output",
+          "downloadUri": "https://frama-c.com/download.html",
+          "informationUri": "https://frama-c.com"
+        }
+      },
+      "invocations": [
+        {
+          "commandLine":
+            "frama-c -check tests/sarif/std_string.c -eva -then -mdr-sarif-deterministic -mdr-gen sarif -mdr-out tests/sarif/result/std_string.sarif",
+          "arguments": [
+            "-check", "tests/sarif/std_string.c", "-eva", "-then",
+            "-mdr-sarif-deterministic", "-mdr-gen", "sarif", "-mdr-out",
+            "tests/sarif/result/std_string.sarif"
+          ],
+          "exitCode": 0,
+          "executionSuccessful": true
+        }
+      ],
+      "originalUriBaseIds": {
+        "FRAMAC_SHARE": {
+          "uri": "file:///omitted-for-deterministic-output/"
+        },
+        "FRAMAC_LIB": { "uri": "file:///omitted-for-deterministic-output/" },
+        "FRAMAC_PLUGIN": {
+          "uri": "file:///omitted-for-deterministic-output/"
+        },
+        "PWD": { "uri": "file:///omitted-for-deterministic-output/" }
+      },
+      "artifacts": [
+        {
+          "location": {
+            "uri": "tests/sarif/std_string.c",
+            "uriBaseId": "PWD"
+          },
+          "roles": [ "analysisTarget" ],
+          "mimeType": "text/x-csrc"
+        }
+      ],
+      "results": [
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "MemChr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 57,
+                  "startColumn": 4,
+                  "endLine": 59,
+                  "endColumn": 62,
+                  "byteLength": 134
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "MemCmp." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 39,
+                  "startColumn": 4,
+                  "endLine": 42,
+                  "endColumn": 70,
+                  "byteLength": 170
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "MemSet." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 68,
+                  "startColumn": 4,
+                  "endLine": 70,
+                  "endColumn": 63,
+                  "byteLength": 135
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "StrChr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 168,
+                  "startColumn": 4,
+                  "endLine": 170,
+                  "endColumn": 75,
+                  "byteLength": 132
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "StrCmp." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 143,
+                  "startColumn": 4,
+                  "endLine": 147,
+                  "endColumn": 63,
+                  "byteLength": 170
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "StrLen." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 132,
+                  "startColumn": 4,
+                  "endLine": 135,
+                  "endColumn": 38,
+                  "byteLength": 185
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "StrNCmp." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 155,
+                  "startColumn": 4,
+                  "endLine": 159,
+                  "endColumn": 53,
+                  "byteLength": 191
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "WMemChr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 183,
+                  "startColumn": 4,
+                  "endLine": 185,
+                  "endColumn": 63,
+                  "byteLength": 143
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "WcsChr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 266,
+                  "startColumn": 4,
+                  "endLine": 269,
+                  "endColumn": 29,
+                  "byteLength": 153
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "WcsCmp." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 240,
+                  "startColumn": 4,
+                  "endLine": 244,
+                  "endColumn": 63,
+                  "byteLength": 173
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "WcsLen." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 230,
+                  "startColumn": 4,
+                  "endLine": 232,
+                  "endColumn": 63,
+                  "byteLength": 147
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "WcsNCmp." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 252,
+                  "startColumn": 4,
+                  "endLine": 256,
+                  "endColumn": 53,
+                  "byteLength": 194
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "dynamic_allocation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_alloc_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 39,
+                  "startColumn": 4,
+                  "endLine": 41,
+                  "endColumn": 61,
+                  "byteLength": 110
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "memchr_def." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 57,
+                  "startColumn": 4,
+                  "endLine": 59,
+                  "endColumn": 62,
+                  "byteLength": 134
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "memcmp_strlen_left." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 119,
+                  "startColumn": 4,
+                  "endLine": 121,
+                  "endColumn": 77,
+                  "byteLength": 148
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "memcmp_strlen_right." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 123,
+                  "startColumn": 4,
+                  "endLine": 125,
+                  "endColumn": 77,
+                  "byteLength": 149
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "memcmp_strlen_shift_left." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 127,
+                  "startColumn": 4,
+                  "endLine": 130,
+                  "endColumn": 38,
+                  "byteLength": 184
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "memcmp_strlen_shift_right." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 132,
+                  "startColumn": 4,
+                  "endLine": 135,
+                  "endColumn": 38,
+                  "byteLength": 185
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "memcmp_zero." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 39,
+                  "startColumn": 4,
+                  "endLine": 42,
+                  "endColumn": 70,
+                  "byteLength": 170
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "memset_def." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 68,
+                  "startColumn": 4,
+                  "endLine": 70,
+                  "endColumn": 63,
+                  "byteLength": 135
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "never_allocable." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_alloc_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 39,
+                  "startColumn": 4,
+                  "endLine": 41,
+                  "endColumn": 61,
+                  "byteLength": 110
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "strchr_def." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 168,
+                  "startColumn": 4,
+                  "endLine": 170,
+                  "endColumn": 75,
+                  "byteLength": 132
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "strcmp_zero." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 143,
+                  "startColumn": 4,
+                  "endLine": 147,
+                  "endColumn": 63,
+                  "byteLength": 170
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "strlen_at_null." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 92,
+                  "startColumn": 4,
+                  "endLine": 93,
+                  "endColumn": 61,
+                  "byteLength": 86
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "strlen_before_null." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 89,
+                  "startColumn": 4,
+                  "endLine": 90,
+                  "endColumn": 72,
+                  "byteLength": 101
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "strlen_create." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 111,
+                  "startColumn": 4,
+                  "endLine": 113,
+                  "endColumn": 51,
+                  "byteLength": 111
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "strlen_create_shift." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 115,
+                  "startColumn": 4,
+                  "endLine": 117,
+                  "endColumn": 62,
+                  "byteLength": 143
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "strlen_neg." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 84,
+                  "startColumn": 4,
+                  "endLine": 87,
+                  "endColumn": 22,
+                  "byteLength": 109
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "strlen_not_zero." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 95,
+                  "startColumn": 4,
+                  "endLine": 97,
+                  "endColumn": 58,
+                  "byteLength": 120
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "strlen_pos_or_null." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 78,
+                  "startColumn": 4,
+                  "endLine": 82,
+                  "endColumn": 40,
+                  "byteLength": 169
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "strlen_shift." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 107,
+                  "startColumn": 4,
+                  "endLine": 109,
+                  "endColumn": 59,
+                  "byteLength": 118
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "strlen_sup." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 103,
+                  "startColumn": 4,
+                  "endLine": 105,
+                  "endColumn": 51,
+                  "byteLength": 108
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "strlen_zero." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 99,
+                  "startColumn": 4,
+                  "endLine": 101,
+                  "endColumn": 59,
+                  "byteLength": 117
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "strncmp_zero." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 155,
+                  "startColumn": 4,
+                  "endLine": 159,
+                  "endColumn": 53,
+                  "byteLength": 191
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "wcschr_def." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 266,
+                  "startColumn": 4,
+                  "endLine": 269,
+                  "endColumn": 29,
+                  "byteLength": 153
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "wcscmp_zero." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 240,
+                  "startColumn": 4,
+                  "endLine": 244,
+                  "endColumn": 63,
+                  "byteLength": 173
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "wcslen_at_null." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 207,
+                  "startColumn": 4,
+                  "endLine": 208,
+                  "endColumn": 65,
+                  "byteLength": 90
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "wcslen_before_null." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 204,
+                  "startColumn": 4,
+                  "endLine": 205,
+                  "endColumn": 76,
+                  "byteLength": 105
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "wcslen_create." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 226,
+                  "startColumn": 4,
+                  "endLine": 228,
+                  "endColumn": 52,
+                  "byteLength": 115
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "wcslen_create_shift." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 230,
+                  "startColumn": 4,
+                  "endLine": 232,
+                  "endColumn": 63,
+                  "byteLength": 147
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "wcslen_neg." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 199,
+                  "startColumn": 4,
+                  "endLine": 202,
+                  "endColumn": 22,
+                  "byteLength": 113
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "wcslen_not_zero." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 210,
+                  "startColumn": 4,
+                  "endLine": 212,
+                  "endColumn": 59,
+                  "byteLength": 124
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "wcslen_pos_or_null." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 193,
+                  "startColumn": 4,
+                  "endLine": 197,
+                  "endColumn": 41,
+                  "byteLength": 174
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "wcslen_shift." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 222,
+                  "startColumn": 4,
+                  "endLine": 224,
+                  "endColumn": 55,
+                  "byteLength": 117
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "wcslen_sup." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 218,
+                  "startColumn": 4,
+                  "endLine": 220,
+                  "endColumn": 52,
+                  "byteLength": 112
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "wcslen_zero." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 214,
+                  "startColumn": 4,
+                  "endLine": 216,
+                  "endColumn": 60,
+                  "byteLength": 121
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "wcsncmp_zero." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 252,
+                  "startColumn": 4,
+                  "endLine": 256,
+                  "endColumn": 53,
+                  "byteLength": 194
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "wmemchr_def." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_string_axiomatic.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 183,
+                  "startColumn": 4,
+                  "endLine": 185,
+                  "endColumn": 63,
+                  "byteLength": 143
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior default! in function Frama_C_abort."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 180,
+                  "startColumn": 12,
+                  "endLine": 180,
+                  "endColumn": 25,
+                  "byteLength": 13
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "never_terminates." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 178,
+                  "startColumn": 28,
+                  "endLine": 178,
+                  "endColumn": 34,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function Frama_C_abort." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 180,
+                  "startColumn": 12,
+                  "endLine": 180,
+                  "endColumn": 25,
+                  "byteLength": 13
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "terminates \\false." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 176,
+                  "startColumn": 13,
+                  "endLine": 176,
+                  "endColumn": 19,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "behavior default! in function Frama_C_abstract_cardinal."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 188,
+                  "startColumn": 17,
+                  "endLine": 188,
+                  "endColumn": 42,
+                  "byteLength": 25
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "assigns clause in function Frama_C_abstract_cardinal."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 188,
+                  "startColumn": 17,
+                  "endLine": 188,
+                  "endColumn": 42,
+                  "byteLength": 25
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_abstract_cardinal."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 187,
+                  "startColumn": 12,
+                  "endLine": 187,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior default! in function Frama_C_abstract_max."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 190,
+                  "startColumn": 17,
+                  "endLine": 190,
+                  "endColumn": 37,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "assigns clause in function Frama_C_abstract_max."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 190,
+                  "startColumn": 17,
+                  "endLine": 190,
+                  "endColumn": 37,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_abstract_max."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 189,
+                  "startColumn": 12,
+                  "endLine": 189,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior default! in function Frama_C_abstract_min."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 192,
+                  "startColumn": 17,
+                  "endLine": 192,
+                  "endColumn": 37,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "assigns clause in function Frama_C_abstract_min."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 192,
+                  "startColumn": 17,
+                  "endLine": 192,
+                  "endColumn": 37,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_abstract_min."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 191,
+                  "startColumn": 12,
+                  "endLine": 191,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior default! in function Frama_C_char_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 79,
+                  "startColumn": 12,
+                  "endLine": 79,
+                  "endColumn": 33,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "order." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 74,
+                  "startColumn": 20,
+                  "endLine": 74,
+                  "endColumn": 30,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_bounded." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 77,
+                  "startColumn": 28,
+                  "endLine": 77,
+                  "endColumn": 49,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "assigns clause in function Frama_C_char_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 75,
+                  "startColumn": 12,
+                  "endLine": 75,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_char_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 75,
+                  "startColumn": 12,
+                  "endLine": 75,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term Frama_C_entropy_source in function Frama_C_char_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 76,
+                  "startColumn": 12,
+                  "endLine": 76,
+                  "endColumn": 34,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior default! in function Frama_C_double_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 165,
+                  "startColumn": 14,
+                  "endLine": 165,
+                  "endColumn": 37,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "finite." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 159,
+                  "startColumn": 21,
+                  "endLine": 159,
+                  "endColumn": 55,
+                  "byteLength": 34
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "order." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 160,
+                  "startColumn": 20,
+                  "endLine": 160,
+                  "endColumn": 30,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_bounded." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 163,
+                  "startColumn": 28,
+                  "endLine": 163,
+                  "endColumn": 72,
+                  "byteLength": 44
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "assigns clause in function Frama_C_double_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 161,
+                  "startColumn": 12,
+                  "endLine": 161,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_double_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 161,
+                  "startColumn": 12,
+                  "endLine": 161,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term Frama_C_entropy_source in function Frama_C_double_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 162,
+                  "startColumn": 12,
+                  "endLine": 162,
+                  "endColumn": 34,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior default! in function Frama_C_float_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 157,
+                  "startColumn": 13,
+                  "endLine": 157,
+                  "endColumn": 35,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "finite." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 151,
+                  "startColumn": 21,
+                  "endLine": 151,
+                  "endColumn": 55,
+                  "byteLength": 34
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "order." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 152,
+                  "startColumn": 20,
+                  "endLine": 152,
+                  "endColumn": 30,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_bounded." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 155,
+                  "startColumn": 28,
+                  "endLine": 155,
+                  "endColumn": 72,
+                  "byteLength": 44
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "assigns clause in function Frama_C_float_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 153,
+                  "startColumn": 12,
+                  "endLine": 153,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_float_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 153,
+                  "startColumn": 12,
+                  "endLine": 153,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term Frama_C_entropy_source in function Frama_C_float_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 154,
+                  "startColumn": 12,
+                  "endLine": 154,
+                  "endColumn": 34,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior default! in function Frama_C_int_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 108,
+                  "startColumn": 11,
+                  "endLine": 108,
+                  "endColumn": 31,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "order." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 103,
+                  "startColumn": 20,
+                  "endLine": 103,
+                  "endColumn": 30,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_bounded." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 106,
+                  "startColumn": 28,
+                  "endLine": 106,
+                  "endColumn": 49,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "assigns clause in function Frama_C_int_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 104,
+                  "startColumn": 12,
+                  "endLine": 104,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_int_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 104,
+                  "startColumn": 12,
+                  "endLine": 104,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term Frama_C_entropy_source in function Frama_C_int_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 105,
+                  "startColumn": 12,
+                  "endLine": 105,
+                  "endColumn": 34,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior default! in function Frama_C_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 57,
+                  "startColumn": 11,
+                  "endLine": 57,
+                  "endColumn": 27,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "order." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 52,
+                  "startColumn": 20,
+                  "endLine": 52,
+                  "endColumn": 30,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_bounded." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 55,
+                  "startColumn": 28,
+                  "endLine": 55,
+                  "endColumn": 49,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "assigns clause in function Frama_C_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 53,
+                  "startColumn": 12,
+                  "endLine": 53,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 53,
+                  "startColumn": 12,
+                  "endLine": 53,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term Frama_C_entropy_source in function Frama_C_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 54,
+                  "startColumn": 12,
+                  "endLine": 54,
+                  "endColumn": 34,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior default! in function Frama_C_interval_split."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 64,
+                  "startColumn": 11,
+                  "endLine": 64,
+                  "endColumn": 33,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "order." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 59,
+                  "startColumn": 20,
+                  "endLine": 59,
+                  "endColumn": 30,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_bounded." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 62,
+                  "startColumn": 28,
+                  "endLine": 62,
+                  "endColumn": 49,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "assigns clause in function Frama_C_interval_split."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 60,
+                  "startColumn": 12,
+                  "endLine": 60,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_interval_split."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 60,
+                  "startColumn": 12,
+                  "endLine": 60,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term Frama_C_entropy_source in function Frama_C_interval_split."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 61,
+                  "startColumn": 12,
+                  "endLine": 61,
+                  "endColumn": 34,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior default! in function Frama_C_long_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 124,
+                  "startColumn": 12,
+                  "endLine": 124,
+                  "endColumn": 33,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "order." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 119,
+                  "startColumn": 20,
+                  "endLine": 119,
+                  "endColumn": 30,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_bounded." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 122,
+                  "startColumn": 28,
+                  "endLine": 122,
+                  "endColumn": 49,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "assigns clause in function Frama_C_long_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 120,
+                  "startColumn": 12,
+                  "endLine": 120,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_long_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 120,
+                  "startColumn": 12,
+                  "endLine": 120,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term Frama_C_entropy_source in function Frama_C_long_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 121,
+                  "startColumn": 12,
+                  "endLine": 121,
+                  "endColumn": 34,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "behavior default! in function Frama_C_long_long_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 140,
+                  "startColumn": 17,
+                  "endLine": 140,
+                  "endColumn": 43,
+                  "byteLength": 26
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "order." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 135,
+                  "startColumn": 20,
+                  "endLine": 135,
+                  "endColumn": 30,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_bounded." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 138,
+                  "startColumn": 28,
+                  "endLine": 138,
+                  "endColumn": 49,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "assigns clause in function Frama_C_long_long_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 136,
+                  "startColumn": 12,
+                  "endLine": 136,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_long_long_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 136,
+                  "startColumn": 12,
+                  "endLine": 136,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term Frama_C_entropy_source in function Frama_C_long_long_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 137,
+                  "startColumn": 12,
+                  "endLine": 137,
+                  "endColumn": 34,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior default! in function Frama_C_make_unknown."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 38,
+                  "startColumn": 12,
+                  "endLine": 38,
+                  "endColumn": 32,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_p." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 33,
+                  "startColumn": 22,
+                  "endLine": 33,
+                  "endColumn": 44,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 36,
+                  "startColumn": 28,
+                  "endLine": 36,
+                  "endColumn": 56,
+                  "byteLength": 28
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "assigns clause in function Frama_C_make_unknown."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 34,
+                  "startColumn": 12,
+                  "endLine": 34,
+                  "endColumn": 23,
+                  "byteLength": 11
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *(p + (0 .. l - 1)) in function Frama_C_make_unknown."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 34,
+                  "startColumn": 12,
+                  "endLine": 34,
+                  "endColumn": 23,
+                  "byteLength": 11
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term Frama_C_entropy_source in function Frama_C_make_unknown."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 35,
+                  "startColumn": 12,
+                  "endLine": 35,
+                  "endColumn": 34,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior default! in function Frama_C_nondet."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 44,
+                  "startColumn": 11,
+                  "endLine": 44,
+                  "endColumn": 25,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_a_or_b." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 42,
+                  "startColumn": 27,
+                  "endLine": 42,
+                  "endColumn": 55,
+                  "byteLength": 28
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function Frama_C_nondet." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 40,
+                  "startColumn": 12,
+                  "endLine": 40,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_nondet."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 40,
+                  "startColumn": 12,
+                  "endLine": 40,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term Frama_C_entropy_source in function Frama_C_nondet."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 41,
+                  "startColumn": 12,
+                  "endLine": 41,
+                  "endColumn": 34,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior default! in function Frama_C_nondet_ptr."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 50,
+                  "startColumn": 12,
+                  "endLine": 50,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_a_or_b." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 48,
+                  "startColumn": 27,
+                  "endLine": 48,
+                  "endColumn": 55,
+                  "byteLength": 28
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "assigns clause in function Frama_C_nondet_ptr."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 46,
+                  "startColumn": 12,
+                  "endLine": 46,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_nondet_ptr."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 46,
+                  "startColumn": 12,
+                  "endLine": 46,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term Frama_C_entropy_source in function Frama_C_nondet_ptr."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 47,
+                  "startColumn": 12,
+                  "endLine": 47,
+                  "endColumn": 34,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior default! in function Frama_C_offset."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 183,
+                  "startColumn": 14,
+                  "endLine": 183,
+                  "endColumn": 28,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function Frama_C_offset." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 183,
+                  "startColumn": 14,
+                  "endLine": 183,
+                  "endColumn": 28,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_offset."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 182,
+                  "startColumn": 12,
+                  "endLine": 182,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "behavior default! in function Frama_C_real_interval_as_double."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 173,
+                  "startColumn": 14,
+                  "endLine": 173,
+                  "endColumn": 45,
+                  "byteLength": 31
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "finite." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 167,
+                  "startColumn": 21,
+                  "endLine": 167,
+                  "endColumn": 55,
+                  "byteLength": 34
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "order." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 168,
+                  "startColumn": 20,
+                  "endLine": 168,
+                  "endColumn": 30,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_bounded." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 171,
+                  "startColumn": 28,
+                  "endLine": 171,
+                  "endColumn": 72,
+                  "byteLength": 44
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "assigns clause in function Frama_C_real_interval_as_double."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 169,
+                  "startColumn": 12,
+                  "endLine": 169,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_real_interval_as_double."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 169,
+                  "startColumn": 12,
+                  "endLine": 169,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term Frama_C_entropy_source in function Frama_C_real_interval_as_double."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 170,
+                  "startColumn": 12,
+                  "endLine": 170,
+                  "endColumn": 34,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior default! in function Frama_C_short_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 93,
+                  "startColumn": 13,
+                  "endLine": 93,
+                  "endColumn": 35,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "order." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 88,
+                  "startColumn": 20,
+                  "endLine": 88,
+                  "endColumn": 30,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_bounded." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 91,
+                  "startColumn": 28,
+                  "endLine": 91,
+                  "endColumn": 49,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "assigns clause in function Frama_C_short_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 89,
+                  "startColumn": 12,
+                  "endLine": 89,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_short_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 89,
+                  "startColumn": 12,
+                  "endLine": 89,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term Frama_C_entropy_source in function Frama_C_short_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 90,
+                  "startColumn": 12,
+                  "endLine": 90,
+                  "endColumn": 34,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior default! in function Frama_C_size_t_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 148,
+                  "startColumn": 14,
+                  "endLine": 148,
+                  "endColumn": 37,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "order." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 143,
+                  "startColumn": 20,
+                  "endLine": 143,
+                  "endColumn": 30,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_bounded." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 146,
+                  "startColumn": 28,
+                  "endLine": 146,
+                  "endColumn": 49,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "assigns clause in function Frama_C_size_t_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 144,
+                  "startColumn": 12,
+                  "endLine": 144,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_size_t_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 144,
+                  "startColumn": 12,
+                  "endLine": 144,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term Frama_C_entropy_source in function Frama_C_size_t_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 145,
+                  "startColumn": 12,
+                  "endLine": 145,
+                  "endColumn": 34,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "behavior default! in function Frama_C_unsigned_char_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 71,
+                  "startColumn": 21,
+                  "endLine": 71,
+                  "endColumn": 51,
+                  "byteLength": 30
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "order." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 66,
+                  "startColumn": 20,
+                  "endLine": 66,
+                  "endColumn": 30,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_bounded." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 69,
+                  "startColumn": 28,
+                  "endLine": 69,
+                  "endColumn": 49,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "assigns clause in function Frama_C_unsigned_char_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 67,
+                  "startColumn": 12,
+                  "endLine": 67,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_unsigned_char_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 67,
+                  "startColumn": 12,
+                  "endLine": 67,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term Frama_C_entropy_source in function Frama_C_unsigned_char_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 68,
+                  "startColumn": 12,
+                  "endLine": 68,
+                  "endColumn": 34,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "behavior default! in function Frama_C_unsigned_int_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 101,
+                  "startColumn": 20,
+                  "endLine": 101,
+                  "endColumn": 49,
+                  "byteLength": 29
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "order." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 96,
+                  "startColumn": 20,
+                  "endLine": 96,
+                  "endColumn": 30,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_bounded." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 99,
+                  "startColumn": 28,
+                  "endLine": 99,
+                  "endColumn": 49,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "assigns clause in function Frama_C_unsigned_int_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 97,
+                  "startColumn": 12,
+                  "endLine": 97,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_unsigned_int_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 97,
+                  "startColumn": 12,
+                  "endLine": 97,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term Frama_C_entropy_source in function Frama_C_unsigned_int_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 98,
+                  "startColumn": 12,
+                  "endLine": 98,
+                  "endColumn": 34,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "behavior default! in function Frama_C_unsigned_long_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 116,
+                  "startColumn": 21,
+                  "endLine": 116,
+                  "endColumn": 51,
+                  "byteLength": 30
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "order." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 111,
+                  "startColumn": 20,
+                  "endLine": 111,
+                  "endColumn": 30,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_bounded." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 114,
+                  "startColumn": 28,
+                  "endLine": 114,
+                  "endColumn": 49,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "assigns clause in function Frama_C_unsigned_long_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 112,
+                  "startColumn": 12,
+                  "endLine": 112,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_unsigned_long_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 112,
+                  "startColumn": 12,
+                  "endLine": 112,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term Frama_C_entropy_source in function Frama_C_unsigned_long_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 113,
+                  "startColumn": 12,
+                  "endLine": 113,
+                  "endColumn": 34,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "behavior default! in function Frama_C_unsigned_long_long_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 132,
+                  "startColumn": 26,
+                  "endLine": 132,
+                  "endColumn": 61,
+                  "byteLength": 35
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "order." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 127,
+                  "startColumn": 20,
+                  "endLine": 127,
+                  "endColumn": 30,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_bounded." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 130,
+                  "startColumn": 28,
+                  "endLine": 130,
+                  "endColumn": 49,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "assigns clause in function Frama_C_unsigned_long_long_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 128,
+                  "startColumn": 12,
+                  "endLine": 128,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_unsigned_long_long_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 128,
+                  "startColumn": 12,
+                  "endLine": 128,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term Frama_C_entropy_source in function Frama_C_unsigned_long_long_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 129,
+                  "startColumn": 12,
+                  "endLine": 129,
+                  "endColumn": 34,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "behavior default! in function Frama_C_unsigned_short_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 86,
+                  "startColumn": 22,
+                  "endLine": 86,
+                  "endColumn": 53,
+                  "byteLength": 31
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "order." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 81,
+                  "startColumn": 20,
+                  "endLine": 81,
+                  "endColumn": 30,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_bounded." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 84,
+                  "startColumn": 28,
+                  "endLine": 84,
+                  "endColumn": 49,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "assigns clause in function Frama_C_unsigned_short_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 82,
+                  "startColumn": 12,
+                  "endLine": 82,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function Frama_C_unsigned_short_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 82,
+                  "startColumn": 12,
+                  "endLine": 82,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term Frama_C_entropy_source in function Frama_C_unsigned_short_interval."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/__fc_builtin.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 83,
+                  "startColumn": 12,
+                  "endLine": 83,
+                  "endColumn": 34,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function _Exit." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 481,
+                  "startColumn": 12,
+                  "endLine": 481,
+                  "endColumn": 17,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "never_terminates." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 479,
+                  "startColumn": 28,
+                  "endLine": 479,
+                  "endColumn": 34,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function _Exit." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 481,
+                  "startColumn": 12,
+                  "endLine": 481,
+                  "endColumn": 17,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function abort." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 462,
+                  "startColumn": 12,
+                  "endLine": 462,
+                  "endColumn": 17,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "status." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 459,
+                  "startColumn": 16,
+                  "endLine": 459,
+                  "endColumn": 33,
+                  "byteLength": 17
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "never_terminates." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 460,
+                  "startColumn": 28,
+                  "endLine": 460,
+                  "endColumn": 34,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function abort." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 458,
+                  "startColumn": 10,
+                  "endLine": 458,
+                  "endColumn": 22,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\exit_status in function abort."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 458,
+                  "startColumn": 10,
+                  "endLine": 458,
+                  "endColumn": 22,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function abs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 575,
+                  "startColumn": 11,
+                  "endLine": 575,
+                  "endColumn": 14,
+                  "byteLength": 3
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior negative in function abs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 575,
+                  "startColumn": 11,
+                  "endLine": 575,
+                  "endColumn": 14,
+                  "byteLength": 3
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior nonnegative in function abs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 575,
+                  "startColumn": 11,
+                  "endLine": 575,
+                  "endColumn": 14,
+                  "byteLength": 3
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "abs_representable." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 564,
+                  "startColumn": 30,
+                  "endLine": 564,
+                  "endColumn": 51,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "negative." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 567,
+                  "startColumn": 22,
+                  "endLine": 567,
+                  "endColumn": 27,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "nonnegative." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 570,
+                  "startColumn": 25,
+                  "endLine": 570,
+                  "endColumn": 31,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "opposite_result." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 568,
+                  "startColumn": 29,
+                  "endLine": 568,
+                  "endColumn": 42,
+                  "byteLength": 13
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "same_result." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 571,
+                  "startColumn": 25,
+                  "endLine": 571,
+                  "endColumn": 37,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function abs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 575,
+                  "startColumn": 11,
+                  "endLine": 575,
+                  "endColumn": 14,
+                  "byteLength": 3
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function abs."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 565,
+                  "startColumn": 10,
+                  "endLine": 565,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "complete clause in function abs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 575,
+                  "startColumn": 11,
+                  "endLine": 575,
+                  "endColumn": 14,
+                  "byteLength": 3
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "disjoint clause in function abs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 575,
+                  "startColumn": 11,
+                  "endLine": 575,
+                  "endColumn": 14,
+                  "byteLength": 3
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior default! in function at_quick_exit."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 468,
+                  "startColumn": 11,
+                  "endLine": 468,
+                  "endColumn": 24,
+                  "byteLength": 13
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function at_quick_exit." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 468,
+                  "startColumn": 11,
+                  "endLine": 468,
+                  "endColumn": 24,
+                  "byteLength": 13
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function at_quick_exit."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 467,
+                  "startColumn": 12,
+                  "endLine": 467,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function atexit." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 465,
+                  "startColumn": 11,
+                  "endLine": 465,
+                  "endColumn": 17,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function atexit." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 465,
+                  "startColumn": 11,
+                  "endLine": 465,
+                  "endColumn": 17,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function atexit."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 464,
+                  "startColumn": 12,
+                  "endLine": 464,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function atof." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 75,
+                  "startColumn": 14,
+                  "endLine": 75,
+                  "endColumn": 18,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_nptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 72,
+                  "startColumn": 23,
+                  "endLine": 72,
+                  "endColumn": 40,
+                  "byteLength": 17
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function atof." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 75,
+                  "startColumn": 14,
+                  "endLine": 75,
+                  "endColumn": 18,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function atof."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 73,
+                  "startColumn": 10,
+                  "endLine": 73,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function atoi." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 81,
+                  "startColumn": 11,
+                  "endLine": 81,
+                  "endColumn": 15,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_nptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 78,
+                  "startColumn": 23,
+                  "endLine": 78,
+                  "endColumn": 40,
+                  "byteLength": 17
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function atoi." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 81,
+                  "startColumn": 11,
+                  "endLine": 81,
+                  "endColumn": 15,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function atoi."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 79,
+                  "startColumn": 10,
+                  "endLine": 79,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function atol." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 87,
+                  "startColumn": 16,
+                  "endLine": 87,
+                  "endColumn": 20,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_nptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 84,
+                  "startColumn": 23,
+                  "endLine": 84,
+                  "endColumn": 40,
+                  "byteLength": 17
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function atol." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 87,
+                  "startColumn": 16,
+                  "endLine": 87,
+                  "endColumn": 20,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function atol."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 85,
+                  "startColumn": 10,
+                  "endLine": 85,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function atoll." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 93,
+                  "startColumn": 21,
+                  "endLine": 93,
+                  "endColumn": 26,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_nptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 90,
+                  "startColumn": 23,
+                  "endLine": 90,
+                  "endColumn": 40,
+                  "byteLength": 17
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function atoll." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 93,
+                  "startColumn": 21,
+                  "endLine": 93,
+                  "endColumn": 26,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function atoll."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 91,
+                  "startColumn": 10,
+                  "endLine": 91,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function bsearch." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 547,
+                  "startColumn": 12,
+                  "endLine": 547,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_function_compar." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 540,
+                  "startColumn": 34,
+                  "endLine": 540,
+                  "endColumn": 57,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "null_or_correct_result." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 544,
+                  "startColumn": 34,
+                  "endLine": 545,
+                  "endColumn": 76,
+                  "byteLength": 96
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function bsearch." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 547,
+                  "startColumn": 12,
+                  "endLine": 547,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function bsearch."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 541,
+                  "startColumn": 10,
+                  "endLine": 541,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function bzero." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/strings.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 40,
+                  "startColumn": 12,
+                  "endLine": 40,
+                  "endColumn": 17,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_memory_area." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/strings.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 36,
+                  "startColumn": 32,
+                  "endLine": 36,
+                  "endColumn": 63,
+                  "byteLength": 31
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "s_initialized." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/strings.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 38,
+                  "startColumn": 39,
+                  "endLine": 38,
+                  "endColumn": 75,
+                  "byteLength": 36
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "zero_initialized." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/strings.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 39,
+                  "startColumn": 28,
+                  "endLine": 39,
+                  "endColumn": 63,
+                  "byteLength": 35
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function bzero." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/strings.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 37,
+                  "startColumn": 10,
+                  "endLine": 37,
+                  "endColumn": 31,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *((char *)s + (0 .. n - 1)) in function bzero."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/strings.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 37,
+                  "startColumn": 10,
+                  "endLine": 37,
+                  "endColumn": 31,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior allocation in function calloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 385,
+                  "startColumn": 12,
+                  "endLine": 385,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function calloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 385,
+                  "startColumn": 12,
+                  "endLine": 385,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior no_allocation in function calloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 385,
+                  "startColumn": 12,
+                  "endLine": 385,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "can_allocate." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 372,
+                  "startColumn": 26,
+                  "endLine": 372,
+                  "endColumn": 52,
+                  "byteLength": 26
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "cannot_allocate." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 378,
+                  "startColumn": 29,
+                  "endLine": 378,
+                  "endColumn": 56,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "allocation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 373,
+                  "startColumn": 24,
+                  "endLine": 373,
+                  "endColumn": 53,
+                  "byteLength": 29
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 374,
+                  "startColumn": 28,
+                  "endLine": 374,
+                  "endColumn": 77,
+                  "byteLength": 49
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "zero_initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 375,
+                  "startColumn": 33,
+                  "endLine": 375,
+                  "endColumn": 81,
+                  "byteLength": 48
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "null_result." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 381,
+                  "startColumn": 25,
+                  "endLine": 381,
+                  "endColumn": 41,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function calloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 367,
+                  "startColumn": 10,
+                  "endLine": 367,
+                  "endColumn": 26,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function calloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 385,
+                  "startColumn": 12,
+                  "endLine": 385,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_heap_status in function calloc."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 367,
+                  "startColumn": 10,
+                  "endLine": 367,
+                  "endColumn": 26,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function calloc."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 368,
+                  "startColumn": 10,
+                  "endLine": 368,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function calloc."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 379,
+                  "startColumn": 12,
+                  "endLine": 379,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "allocates/frees clause in function calloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 366,
+                  "startColumn": 12,
+                  "endLine": 366,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "allocates/frees clause in function calloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 385,
+                  "startColumn": 12,
+                  "endLine": 385,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "complete clause in function calloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 385,
+                  "startColumn": 12,
+                  "endLine": 385,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "disjoint clause in function calloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 385,
+                  "startColumn": 12,
+                  "endLine": 385,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function div." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 606,
+                  "startColumn": 13,
+                  "endLine": 606,
+                  "endColumn": 16,
+                  "byteLength": 3
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function div." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 606,
+                  "startColumn": 13,
+                  "endLine": 606,
+                  "endColumn": 16,
+                  "byteLength": 3
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function div."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 605,
+                  "startColumn": 12,
+                  "endLine": 605,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function drand48." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 322,
+                  "startColumn": 14,
+                  "endLine": 322,
+                  "endColumn": 21,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "random48_initialized." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 317,
+                  "startColumn": 33,
+                  "endLine": 317,
+                  "endColumn": 56,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_range." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 320,
+                  "startColumn": 24,
+                  "endLine": 320,
+                  "endColumn": 67,
+                  "byteLength": 43
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function drand48." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 318,
+                  "startColumn": 10,
+                  "endLine": 318,
+                  "endColumn": 37,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_random48_counter[0 .. 2] in function drand48."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 318,
+                  "startColumn": 10,
+                  "endLine": 318,
+                  "endColumn": 37,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function drand48."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 319,
+                  "startColumn": 10,
+                  "endLine": 319,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function erand48." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 330,
+                  "startColumn": 14,
+                  "endLine": 330,
+                  "endColumn": 21,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 325,
+                  "startColumn": 45,
+                  "endLine": 325,
+                  "endColumn": 71,
+                  "byteLength": 26
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_range." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 328,
+                  "startColumn": 24,
+                  "endLine": 328,
+                  "endColumn": 67,
+                  "byteLength": 43
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function erand48." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 326,
+                  "startColumn": 10,
+                  "endLine": 326,
+                  "endColumn": 37,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_random48_counter[0 .. 2] in function erand48."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 326,
+                  "startColumn": 10,
+                  "endLine": 326,
+                  "endColumn": 37,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function erand48."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 327,
+                  "startColumn": 10,
+                  "endLine": 327,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function exit." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 475,
+                  "startColumn": 12,
+                  "endLine": 475,
+                  "endColumn": 16,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "status." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 472,
+                  "startColumn": 16,
+                  "endLine": 472,
+                  "endColumn": 38,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "never_terminates." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 473,
+                  "startColumn": 28,
+                  "endLine": 473,
+                  "endColumn": 34,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function exit." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 471,
+                  "startColumn": 10,
+                  "endLine": 471,
+                  "endColumn": 22,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\exit_status in function exit."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 471,
+                  "startColumn": 10,
+                  "endLine": 471,
+                  "endColumn": 22,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior deallocation in function free." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 419,
+                  "startColumn": 12,
+                  "endLine": 419,
+                  "endColumn": 16,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function free." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 419,
+                  "startColumn": 12,
+                  "endLine": 419,
+                  "endColumn": 16,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior no_deallocation in function free." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 419,
+                  "startColumn": 12,
+                  "endLine": 419,
+                  "endColumn": 16,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "freeable." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 405,
+                  "startColumn": 23,
+                  "endLine": 405,
+                  "endColumn": 47,
+                  "byteLength": 24
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "nonnull_p." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 409,
+                  "startColumn": 23,
+                  "endLine": 409,
+                  "endColumn": 31,
+                  "byteLength": 8
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "null_p." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 413,
+                  "startColumn": 20,
+                  "endLine": 413,
+                  "endColumn": 28,
+                  "byteLength": 8
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "freed." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 411,
+                  "startColumn": 19,
+                  "endLine": 411,
+                  "endColumn": 32,
+                  "byteLength": 13
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function free." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 410,
+                  "startColumn": 12,
+                  "endLine": 410,
+                  "endColumn": 28,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function free." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 407,
+                  "startColumn": 12,
+                  "endLine": 407,
+                  "endColumn": 28,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function free." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 419,
+                  "startColumn": 12,
+                  "endLine": 419,
+                  "endColumn": 16,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term __fc_heap_status in function free."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 410,
+                  "startColumn": 12,
+                  "endLine": 410,
+                  "endColumn": 28,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term __fc_heap_status in function free."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 407,
+                  "startColumn": 12,
+                  "endLine": 407,
+                  "endColumn": 28,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "allocates/frees clause in function free." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 406,
+                  "startColumn": 10,
+                  "endLine": 406,
+                  "endColumn": 11,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "allocates/frees clause in function free." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 419,
+                  "startColumn": 12,
+                  "endLine": 419,
+                  "endColumn": 16,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "complete clause in function free." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 419,
+                  "startColumn": 12,
+                  "endLine": 419,
+                  "endColumn": 16,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "disjoint clause in function free." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 419,
+                  "startColumn": 12,
+                  "endLine": 419,
+                  "endColumn": 16,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function getenv." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 490,
+                  "startColumn": 12,
+                  "endLine": 490,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_name." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 486,
+                  "startColumn": 23,
+                  "endLine": 486,
+                  "endColumn": 46,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "null_or_valid_result." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 488,
+                  "startColumn": 32,
+                  "endLine": 488,
+                  "endColumn": 67,
+                  "byteLength": 35
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function getenv." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 490,
+                  "startColumn": 12,
+                  "endLine": 490,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function getenv."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 487,
+                  "startColumn": 10,
+                  "endLine": 487,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function jrand48." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 362,
+                  "startColumn": 16,
+                  "endLine": 362,
+                  "endColumn": 23,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 357,
+                  "startColumn": 45,
+                  "endLine": 357,
+                  "endColumn": 71,
+                  "byteLength": 26
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_range." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 360,
+                  "startColumn": 24,
+                  "endLine": 360,
+                  "endColumn": 59,
+                  "byteLength": 35
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function jrand48." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 358,
+                  "startColumn": 10,
+                  "endLine": 358,
+                  "endColumn": 37,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_random48_counter[0 .. 2] in function jrand48."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 358,
+                  "startColumn": 10,
+                  "endLine": 358,
+                  "endColumn": 37,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function jrand48."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 359,
+                  "startColumn": 10,
+                  "endLine": 359,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function labs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 589,
+                  "startColumn": 16,
+                  "endLine": 589,
+                  "endColumn": 20,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior negative in function labs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 589,
+                  "startColumn": 16,
+                  "endLine": 589,
+                  "endColumn": 20,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior nonnegative in function labs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 589,
+                  "startColumn": 16,
+                  "endLine": 589,
+                  "endColumn": 20,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "abs_representable." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 578,
+                  "startColumn": 30,
+                  "endLine": 578,
+                  "endColumn": 61,
+                  "byteLength": 31
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "negative." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 581,
+                  "startColumn": 22,
+                  "endLine": 581,
+                  "endColumn": 27,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "nonnegative." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 584,
+                  "startColumn": 25,
+                  "endLine": 584,
+                  "endColumn": 31,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "opposite_result." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 582,
+                  "startColumn": 29,
+                  "endLine": 582,
+                  "endColumn": 42,
+                  "byteLength": 13
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "same_result." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 585,
+                  "startColumn": 25,
+                  "endLine": 585,
+                  "endColumn": 37,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function labs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 589,
+                  "startColumn": 16,
+                  "endLine": 589,
+                  "endColumn": 20,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function labs."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 579,
+                  "startColumn": 10,
+                  "endLine": 579,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "complete clause in function labs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 589,
+                  "startColumn": 16,
+                  "endLine": 589,
+                  "endColumn": 20,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "disjoint clause in function labs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 589,
+                  "startColumn": 16,
+                  "endLine": 589,
+                  "endColumn": 20,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function lcong48." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 314,
+                  "startColumn": 12,
+                  "endLine": 314,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "random48_initialized." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 312,
+                  "startColumn": 32,
+                  "endLine": 312,
+                  "endColumn": 55,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function lcong48." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 310,
+                  "startColumn": 10,
+                  "endLine": 310,
+                  "endColumn": 37,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_random48_counter[0 .. 2] in function lcong48."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 310,
+                  "startColumn": 10,
+                  "endLine": 310,
+                  "endColumn": 37,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_random48_init in function lcong48."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 311,
+                  "startColumn": 10,
+                  "endLine": 311,
+                  "endColumn": 28,
+                  "byteLength": 18
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function ldiv." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 608,
+                  "startColumn": 14,
+                  "endLine": 608,
+                  "endColumn": 18,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function ldiv." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 608,
+                  "startColumn": 14,
+                  "endLine": 608,
+                  "endColumn": 18,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function ldiv."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 607,
+                  "startColumn": 12,
+                  "endLine": 607,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function llabs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 603,
+                  "startColumn": 21,
+                  "endLine": 603,
+                  "endColumn": 26,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior negative in function llabs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 603,
+                  "startColumn": 21,
+                  "endLine": 603,
+                  "endColumn": 26,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior nonnegative in function llabs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 603,
+                  "startColumn": 21,
+                  "endLine": 603,
+                  "endColumn": 26,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "abs_representable." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 592,
+                  "startColumn": 30,
+                  "endLine": 592,
+                  "endColumn": 63,
+                  "byteLength": 33
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "negative." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 595,
+                  "startColumn": 22,
+                  "endLine": 595,
+                  "endColumn": 27,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "nonnegative." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 598,
+                  "startColumn": 25,
+                  "endLine": 598,
+                  "endColumn": 31,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "opposite_result." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 596,
+                  "startColumn": 29,
+                  "endLine": 596,
+                  "endColumn": 42,
+                  "byteLength": 13
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "same_result." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 599,
+                  "startColumn": 25,
+                  "endLine": 599,
+                  "endColumn": 37,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function llabs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 603,
+                  "startColumn": 21,
+                  "endLine": 603,
+                  "endColumn": 26,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function llabs."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 593,
+                  "startColumn": 10,
+                  "endLine": 593,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "complete clause in function llabs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 603,
+                  "startColumn": 21,
+                  "endLine": 603,
+                  "endColumn": 26,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "disjoint clause in function llabs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 603,
+                  "startColumn": 21,
+                  "endLine": 603,
+                  "endColumn": 26,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function lldiv." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 610,
+                  "startColumn": 15,
+                  "endLine": 610,
+                  "endColumn": 20,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function lldiv." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 610,
+                  "startColumn": 15,
+                  "endLine": 610,
+                  "endColumn": 20,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function lldiv."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 609,
+                  "startColumn": 12,
+                  "endLine": 609,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function lrand48." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 338,
+                  "startColumn": 16,
+                  "endLine": 338,
+                  "endColumn": 23,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "random48_initialized." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 333,
+                  "startColumn": 33,
+                  "endLine": 333,
+                  "endColumn": 56,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_range." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 336,
+                  "startColumn": 24,
+                  "endLine": 336,
+                  "endColumn": 49,
+                  "byteLength": 25
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function lrand48." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 334,
+                  "startColumn": 10,
+                  "endLine": 334,
+                  "endColumn": 37,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_random48_counter[0 .. 2] in function lrand48."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 334,
+                  "startColumn": 10,
+                  "endLine": 334,
+                  "endColumn": 37,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function lrand48."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 335,
+                  "startColumn": 10,
+                  "endLine": 335,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior allocation in function malloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 403,
+                  "startColumn": 12,
+                  "endLine": 403,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function malloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 403,
+                  "startColumn": 12,
+                  "endLine": 403,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior no_allocation in function malloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 403,
+                  "startColumn": 12,
+                  "endLine": 403,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "can_allocate." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 391,
+                  "startColumn": 26,
+                  "endLine": 391,
+                  "endColumn": 44,
+                  "byteLength": 18
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "cannot_allocate." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 396,
+                  "startColumn": 29,
+                  "endLine": 396,
+                  "endColumn": 48,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "allocation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 394,
+                  "startColumn": 24,
+                  "endLine": 394,
+                  "endColumn": 44,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "null_result." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 399,
+                  "startColumn": 25,
+                  "endLine": 399,
+                  "endColumn": 39,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function malloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 392,
+                  "startColumn": 12,
+                  "endLine": 392,
+                  "endColumn": 28,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function malloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 388,
+                  "startColumn": 12,
+                  "endLine": 388,
+                  "endColumn": 28,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function malloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 403,
+                  "startColumn": 12,
+                  "endLine": 403,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_heap_status in function malloc."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 392,
+                  "startColumn": 12,
+                  "endLine": 392,
+                  "endColumn": 28,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function malloc."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 393,
+                  "startColumn": 12,
+                  "endLine": 393,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_heap_status in function malloc."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 388,
+                  "startColumn": 12,
+                  "endLine": 388,
+                  "endColumn": 28,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function malloc."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 389,
+                  "startColumn": 12,
+                  "endLine": 389,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function malloc."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 397,
+                  "startColumn": 12,
+                  "endLine": 397,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "allocates/frees clause in function malloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 387,
+                  "startColumn": 14,
+                  "endLine": 387,
+                  "endColumn": 21,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "allocates/frees clause in function malloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 403,
+                  "startColumn": 12,
+                  "endLine": 403,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "complete clause in function malloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 403,
+                  "startColumn": 12,
+                  "endLine": 403,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "disjoint clause in function malloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 403,
+                  "startColumn": 12,
+                  "endLine": 403,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function mblen." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 618,
+                  "startColumn": 11,
+                  "endLine": 618,
+                  "endColumn": 16,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function mblen." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 616,
+                  "startColumn": 12,
+                  "endLine": 616,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function mblen."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 616,
+                  "startColumn": 12,
+                  "endLine": 616,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term __fc_mblen_state in function mblen."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 616,
+                  "startColumn": 21,
+                  "endLine": 616,
+                  "endColumn": 37,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function mbstowcs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 650,
+                  "startColumn": 14,
+                  "endLine": 650,
+                  "endColumn": 22,
+                  "byteLength": 8
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "separation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 646,
+                  "startColumn": 23,
+                  "endLine": 646,
+                  "endColumn": 42,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function mbstowcs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 647,
+                  "startColumn": 10,
+                  "endLine": 647,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function mbstowcs."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 647,
+                  "startColumn": 10,
+                  "endLine": 647,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *(pwcs + (0 .. n - 1)) in function mbstowcs."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 648,
+                  "startColumn": 10,
+                  "endLine": 648,
+                  "endColumn": 24,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function mbtowc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 630,
+                  "startColumn": 11,
+                  "endLine": 630,
+                  "endColumn": 17,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "separation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 623,
+                  "startColumn": 23,
+                  "endLine": 623,
+                  "endColumn": 41,
+                  "byteLength": 18
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "consumed_range." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 628,
+                  "startColumn": 26,
+                  "endLine": 628,
+                  "endColumn": 38,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function mbtowc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 624,
+                  "startColumn": 10,
+                  "endLine": 624,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function mbtowc."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 624,
+                  "startColumn": 10,
+                  "endLine": 624,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *(pwc + (0 .. \\result - 1)) in function mbtowc."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 626,
+                  "startColumn": 10,
+                  "endLine": 626,
+                  "endColumn": 29,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_mbtowc_state in function mbtowc."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 626,
+                  "startColumn": 31,
+                  "endLine": 626,
+                  "endColumn": 48,
+                  "byteLength": 17
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function memchr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 242,
+                  "startColumn": 5,
+                  "endLine": 249,
+                  "endColumn": 1,
+                  "byteLength": 225
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior found in function memchr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 242,
+                  "startColumn": 5,
+                  "endLine": 249,
+                  "endColumn": 1,
+                  "byteLength": 225
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior not_found in function memchr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 242,
+                  "startColumn": 5,
+                  "endLine": 249,
+                  "endColumn": 1,
+                  "byteLength": 225
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 68,
+                  "startColumn": 9,
+                  "endLine": 69,
+                  "endColumn": 74,
+                  "byteLength": 100
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 71,
+                  "startColumn": 8,
+                  "endLine": 72,
+                  "endColumn": 71,
+                  "byteLength": 116
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "danglingness." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 74,
+                  "startColumn": 8,
+                  "endLine": 75,
+                  "endColumn": 61,
+                  "byteLength": 80
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "char_found." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 78,
+                  "startColumn": 24,
+                  "endLine": 78,
+                  "endColumn": 44,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "char_not_found." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 85,
+                  "startColumn": 28,
+                  "endLine": 85,
+                  "endColumn": 49,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_same_base." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 79,
+                  "startColumn": 30,
+                  "endLine": 79,
+                  "endColumn": 66,
+                  "byteLength": 36
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_char." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 80,
+                  "startColumn": 25,
+                  "endLine": 80,
+                  "endColumn": 45,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_in_str." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 81,
+                  "startColumn": 27,
+                  "endLine": 83,
+                  "endColumn": 54,
+                  "byteLength": 120
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_null." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 86,
+                  "startColumn": 25,
+                  "endLine": 86,
+                  "endColumn": 41,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function memchr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 242,
+                  "startColumn": 5,
+                  "endLine": 249,
+                  "endColumn": 1,
+                  "byteLength": 225
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function memchr."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 76,
+                  "startColumn": 12,
+                  "endLine": 76,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function memcmp." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 147,
+                  "startColumn": 4,
+                  "endLine": 155,
+                  "endColumn": 1,
+                  "byteLength": 243
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_s1." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 55,
+                  "startColumn": 23,
+                  "endLine": 55,
+                  "endColumn": 49,
+                  "byteLength": 26
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_s2." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 56,
+                  "startColumn": 23,
+                  "endLine": 56,
+                  "endColumn": 49,
+                  "byteLength": 26
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 57,
+                  "startColumn": 32,
+                  "endLine": 57,
+                  "endColumn": 68,
+                  "byteLength": 36
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 58,
+                  "startColumn": 32,
+                  "endLine": 58,
+                  "endColumn": 68,
+                  "byteLength": 36
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "danglingness." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 59,
+                  "startColumn": 30,
+                  "endLine": 59,
+                  "endColumn": 49,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "danglingness." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 60,
+                  "startColumn": 30,
+                  "endLine": 60,
+                  "endColumn": 49,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "logic_spec." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 63,
+                  "startColumn": 24,
+                  "endLine": 63,
+                  "endColumn": 73,
+                  "byteLength": 49
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function memcmp." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 147,
+                  "startColumn": 4,
+                  "endLine": 155,
+                  "endColumn": 1,
+                  "byteLength": 243
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function memcmp."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 61,
+                  "startColumn": 12,
+                  "endLine": 61,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function memcpy." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 30,
+                  "startColumn": 4,
+                  "endLine": 42,
+                  "endColumn": 1,
+                  "byteLength": 379
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_dest." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 92,
+                  "startColumn": 25,
+                  "endLine": 92,
+                  "endColumn": 48,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_src." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 93,
+                  "startColumn": 24,
+                  "endLine": 93,
+                  "endColumn": 51,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "separation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 95,
+                  "startColumn": 4,
+                  "endLine": 95,
+                  "endColumn": 62,
+                  "byteLength": 58
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "copied_contents." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 98,
+                  "startColumn": 29,
+                  "endLine": 98,
+                  "endColumn": 76,
+                  "byteLength": 47
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_ptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 99,
+                  "startColumn": 24,
+                  "endLine": 99,
+                  "endColumn": 39,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function memcpy." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 96,
+                  "startColumn": 12,
+                  "endLine": 96,
+                  "endColumn": 35,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *((char *)dest + (0 .. n - 1)) in function memcpy."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 96,
+                  "startColumn": 12,
+                  "endLine": 96,
+                  "endColumn": 35,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function memcpy."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 97,
+                  "startColumn": 12,
+                  "endLine": 97,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "no_eva." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 33,
+                  "startColumn": 27,
+                  "endLine": 33,
+                  "endColumn": 38,
+                  "byteLength": 11
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "no_eva." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 34,
+                  "startColumn": 27,
+                  "endLine": 34,
+                  "endColumn": 92,
+                  "byteLength": 65
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function memcpy." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 35,
+                  "startColumn": 17,
+                  "endLine": 35,
+                  "endColumn": 18,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "decrease clause in function memcpy." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 36,
+                  "startColumn": 17,
+                  "endLine": 36,
+                  "endColumn": 22,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "error",
+          "message": { "text": "reachability of stmt line 38 in memcpy." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 38,
+                  "startColumn": 2,
+                  "endLine": 40,
+                  "endColumn": 3,
+                  "byteLength": 76
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "error",
+          "message": { "text": "reachability post stmt line 38 in memcpy." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 38,
+                  "startColumn": 2,
+                  "endLine": 40,
+                  "endColumn": 3,
+                  "byteLength": 76
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function memmove." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 72,
+                  "startColumn": 4,
+                  "endLine": 102,
+                  "endColumn": 1,
+                  "byteLength": 1223
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_dest." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 104,
+                  "startColumn": 25,
+                  "endLine": 104,
+                  "endColumn": 48,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_src." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 105,
+                  "startColumn": 24,
+                  "endLine": 105,
+                  "endColumn": 51,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "copied_contents." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 108,
+                  "startColumn": 29,
+                  "endLine": 108,
+                  "endColumn": 76,
+                  "byteLength": 47
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_ptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 109,
+                  "startColumn": 24,
+                  "endLine": 109,
+                  "endColumn": 39,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function memmove." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 106,
+                  "startColumn": 12,
+                  "endLine": 106,
+                  "endColumn": 35,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *((char *)dest + (0 .. n - 1)) in function memmove."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 106,
+                  "startColumn": 12,
+                  "endLine": 106,
+                  "endColumn": 35,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function memmove."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 107,
+                  "startColumn": 12,
+                  "endLine": 107,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "no_eva." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 79,
+                  "startColumn": 29,
+                  "endLine": 79,
+                  "endColumn": 40,
+                  "byteLength": 11
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "no_eva." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 80,
+                  "startColumn": 29,
+                  "endLine": 80,
+                  "endColumn": 109,
+                  "byteLength": 80
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "no_eva." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 81,
+                  "startColumn": 29,
+                  "endLine": 81,
+                  "endColumn": 108,
+                  "byteLength": 79
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function memmove." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 82,
+                  "startColumn": 19,
+                  "endLine": 82,
+                  "endColumn": 20,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "decrease clause in function memmove." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 83,
+                  "startColumn": 19,
+                  "endLine": 83,
+                  "endColumn": 24,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "error",
+          "message": { "text": "reachability of stmt line 85 in memmove." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 85,
+                  "startColumn": 4,
+                  "endLine": 86,
+                  "endColumn": 18,
+                  "byteLength": 49
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "error",
+          "message": { "text": "reachability post stmt line 85 in memmove." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 85,
+                  "startColumn": 4,
+                  "endLine": 86,
+                  "endColumn": 18,
+                  "byteLength": 49
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "no_eva." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 91,
+                  "startColumn": 29,
+                  "endLine": 91,
+                  "endColumn": 39,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "no_eva." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 92,
+                  "startColumn": 29,
+                  "endLine": 92,
+                  "endColumn": 108,
+                  "byteLength": 79
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "no_eva." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 93,
+                  "startColumn": 29,
+                  "endLine": 93,
+                  "endColumn": 109,
+                  "byteLength": 80
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function memmove." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 94,
+                  "startColumn": 19,
+                  "endLine": 94,
+                  "endColumn": 20,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "decrease clause in function memmove." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 95,
+                  "startColumn": 19,
+                  "endLine": 95,
+                  "endColumn": 20,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "error",
+          "message": { "text": "reachability of stmt line 97 in memmove." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 97,
+                  "startColumn": 4,
+                  "endLine": 98,
+                  "endColumn": 18,
+                  "byteLength": 51
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "error",
+          "message": { "text": "reachability post stmt line 97 in memmove." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 97,
+                  "startColumn": 4,
+                  "endLine": 98,
+                  "endColumn": 18,
+                  "byteLength": 51
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function memoverlap." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 63,
+                  "startColumn": 11,
+                  "endLine": 70,
+                  "endColumn": 1,
+                  "byteLength": 255
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior not_separated_gt in function memoverlap."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 63,
+                  "startColumn": 11,
+                  "endLine": 70,
+                  "endColumn": 1,
+                  "byteLength": 255
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior not_separated_lt in function memoverlap."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 63,
+                  "startColumn": 11,
+                  "endLine": 70,
+                  "endColumn": 1,
+                  "byteLength": 255
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior separated in function memoverlap." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 63,
+                  "startColumn": 11,
+                  "endLine": 70,
+                  "endColumn": 1,
+                  "byteLength": 255
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "separation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 50,
+                  "startColumn": 35,
+                  "endLine": 50,
+                  "endColumn": 77,
+                  "byteLength": 42
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "separation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 53,
+                  "startColumn": 32,
+                  "endLine": 53,
+                  "endColumn": 75,
+                  "byteLength": 43
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "p_before_q." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 54,
+                  "startColumn": 24,
+                  "endLine": 54,
+                  "endColumn": 38,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "separation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 57,
+                  "startColumn": 32,
+                  "endLine": 57,
+                  "endColumn": 75,
+                  "byteLength": 43
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "p_after_q." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 58,
+                  "startColumn": 23,
+                  "endLine": 58,
+                  "endColumn": 37,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_no_overlap." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 51,
+                  "startColumn": 31,
+                  "endLine": 51,
+                  "endColumn": 43,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_p_before_q." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 55,
+                  "startColumn": 31,
+                  "endLine": 55,
+                  "endColumn": 44,
+                  "byteLength": 13
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_p_after_q." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 59,
+                  "startColumn": 30,
+                  "endLine": 59,
+                  "endColumn": 42,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function memoverlap." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 63,
+                  "startColumn": 11,
+                  "endLine": 70,
+                  "endColumn": 1,
+                  "byteLength": 255
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function memoverlap."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 48,
+                  "startColumn": 10,
+                  "endLine": 48,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "complete clause in function memoverlap." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 63,
+                  "startColumn": 11,
+                  "endLine": 70,
+                  "endColumn": 1,
+                  "byteLength": 255
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "disjoint clause in function memoverlap." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 63,
+                  "startColumn": 11,
+                  "endLine": 70,
+                  "endColumn": 1,
+                  "byteLength": 255
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function memset." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 118,
+                  "startColumn": 4,
+                  "endLine": 125,
+                  "endColumn": 1,
+                  "byteLength": 144
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_s." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 115,
+                  "startColumn": 22,
+                  "endLine": 115,
+                  "endColumn": 42,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "acsl_c_equiv." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 118,
+                  "startColumn": 26,
+                  "endLine": 118,
+                  "endColumn": 46,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_ptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 119,
+                  "startColumn": 24,
+                  "endLine": 119,
+                  "endColumn": 36,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function memset." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 116,
+                  "startColumn": 12,
+                  "endLine": 116,
+                  "endColumn": 32,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *((char *)s + (0 .. n - 1)) in function memset."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 116,
+                  "startColumn": 12,
+                  "endLine": 116,
+                  "endColumn": 32,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function memset."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 117,
+                  "startColumn": 12,
+                  "endLine": 117,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function mkstemp." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 700,
+                  "startColumn": 11,
+                  "endLine": 700,
+                  "endColumn": 18,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_template." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 694,
+                  "startColumn": 27,
+                  "endLine": 694,
+                  "endColumn": 48,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_error_or_valid_fd." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 697,
+                  "startColumn": 36,
+                  "endLine": 698,
+                  "endColumn": 53,
+                  "byteLength": 70
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function mkstemp." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 695,
+                  "startColumn": 10,
+                  "endLine": 695,
+                  "endColumn": 22,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *(templat + (0 ..)) in function mkstemp."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 695,
+                  "startColumn": 10,
+                  "endLine": 695,
+                  "endColumn": 22,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function mkstemp."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 696,
+                  "startColumn": 10,
+                  "endLine": 696,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function mrand48." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 354,
+                  "startColumn": 16,
+                  "endLine": 354,
+                  "endColumn": 23,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "random48_initialized." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 349,
+                  "startColumn": 33,
+                  "endLine": 349,
+                  "endColumn": 56,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_range." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 352,
+                  "startColumn": 24,
+                  "endLine": 352,
+                  "endColumn": 59,
+                  "byteLength": 35
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function mrand48." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 350,
+                  "startColumn": 10,
+                  "endLine": 350,
+                  "endColumn": 37,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_random48_counter[0 .. 2] in function mrand48."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 350,
+                  "startColumn": 10,
+                  "endLine": 350,
+                  "endColumn": 37,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function mrand48."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 351,
+                  "startColumn": 10,
+                  "endLine": 351,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function nrand48." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 346,
+                  "startColumn": 16,
+                  "endLine": 346,
+                  "endColumn": 23,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 341,
+                  "startColumn": 45,
+                  "endLine": 341,
+                  "endColumn": 71,
+                  "byteLength": 26
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_range." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 344,
+                  "startColumn": 24,
+                  "endLine": 344,
+                  "endColumn": 49,
+                  "byteLength": 25
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function nrand48." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 342,
+                  "startColumn": 10,
+                  "endLine": 342,
+                  "endColumn": 37,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_random48_counter[0 .. 2] in function nrand48."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 342,
+                  "startColumn": 10,
+                  "endLine": 342,
+                  "endColumn": 37,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function nrand48."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 343,
+                  "startColumn": 10,
+                  "endLine": 343,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior allocation in function posix_memalign."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 689,
+                  "startColumn": 11,
+                  "endLine": 689,
+                  "endColumn": 25,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior default! in function posix_memalign."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 689,
+                  "startColumn": 11,
+                  "endLine": 689,
+                  "endColumn": 25,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior no_allocation in function posix_memalign."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 689,
+                  "startColumn": 11,
+                  "endLine": 689,
+                  "endColumn": 25,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_memptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 666,
+                  "startColumn": 25,
+                  "endLine": 666,
+                  "endColumn": 39,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "alignment_is_a_suitable_power_of_two." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 668,
+                  "startColumn": 4,
+                  "endLine": 669,
+                  "endColumn": 54,
+                  "byteLength": 84
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "can_allocate." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 675,
+                  "startColumn": 26,
+                  "endLine": 675,
+                  "endColumn": 44,
+                  "byteLength": 18
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "cannot_allocate." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 682,
+                  "startColumn": 29,
+                  "endLine": 682,
+                  "endColumn": 48,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "allocation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 679,
+                  "startColumn": 24,
+                  "endLine": 679,
+                  "endColumn": 44,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_zero." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 680,
+                  "startColumn": 25,
+                  "endLine": 680,
+                  "endColumn": 37,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_non_zero." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 685,
+                  "startColumn": 29,
+                  "endLine": 685,
+                  "endColumn": 55,
+                  "byteLength": 26
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function posix_memalign." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 676,
+                  "startColumn": 12,
+                  "endLine": 676,
+                  "endColumn": 28,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function posix_memalign." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 671,
+                  "startColumn": 10,
+                  "endLine": 671,
+                  "endColumn": 26,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function posix_memalign." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 689,
+                  "startColumn": 11,
+                  "endLine": 689,
+                  "endColumn": 25,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_heap_status in function posix_memalign."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 676,
+                  "startColumn": 12,
+                  "endLine": 676,
+                  "endColumn": 28,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function posix_memalign."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 677,
+                  "startColumn": 12,
+                  "endLine": 677,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_heap_status in function posix_memalign."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 671,
+                  "startColumn": 10,
+                  "endLine": 671,
+                  "endColumn": 26,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function posix_memalign."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 672,
+                  "startColumn": 10,
+                  "endLine": 672,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term \\result in function posix_memalign."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 683,
+                  "startColumn": 12,
+                  "endLine": 683,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "allocates/frees clause in function posix_memalign."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 670,
+                  "startColumn": 12,
+                  "endLine": 670,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "allocates/frees clause in function posix_memalign."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 689,
+                  "startColumn": 11,
+                  "endLine": 689,
+                  "endColumn": 25,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "complete clause in function posix_memalign."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 689,
+                  "startColumn": 11,
+                  "endLine": 689,
+                  "endColumn": 25,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "disjoint clause in function posix_memalign."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 689,
+                  "startColumn": 11,
+                  "endLine": 689,
+                  "endColumn": 25,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function putenv." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 497,
+                  "startColumn": 11,
+                  "endLine": 497,
+                  "endColumn": 17,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 493,
+                  "startColumn": 25,
+                  "endLine": 493,
+                  "endColumn": 50,
+                  "byteLength": 25
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function putenv." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 494,
+                  "startColumn": 10,
+                  "endLine": 494,
+                  "endColumn": 23,
+                  "byteLength": 13
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term __fc_env[0 ..] in function putenv."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 494,
+                  "startColumn": 10,
+                  "endLine": 494,
+                  "endColumn": 23,
+                  "byteLength": 13
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function putenv."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 495,
+                  "startColumn": 10,
+                  "endLine": 495,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function qsort." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 558,
+                  "startColumn": 12,
+                  "endLine": 558,
+                  "endColumn": 17,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_function_compar." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 553,
+                  "startColumn": 34,
+                  "endLine": 553,
+                  "endColumn": 57,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function qsort." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 554,
+                  "startColumn": 10,
+                  "endLine": 554,
+                  "endColumn": 29,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *((char *)base + (0 ..)) in function qsort."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 554,
+                  "startColumn": 10,
+                  "endLine": 554,
+                  "endColumn": 29,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function quick_exit." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 521,
+                  "startColumn": 12,
+                  "endLine": 521,
+                  "endColumn": 22,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "never_terminates." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 519,
+                  "startColumn": 28,
+                  "endLine": 519,
+                  "endColumn": 34,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function quick_exit." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 521,
+                  "startColumn": 12,
+                  "endLine": 521,
+                  "endColumn": 22,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function rand." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 272,
+                  "startColumn": 11,
+                  "endLine": 272,
+                  "endColumn": 15,
+                  "byteLength": 4
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_range." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 270,
+                  "startColumn": 26,
+                  "endLine": 270,
+                  "endColumn": 55,
+                  "byteLength": 29
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function rand." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 268,
+                  "startColumn": 12,
+                  "endLine": 268,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function rand."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 268,
+                  "startColumn": 12,
+                  "endLine": 268,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_random_counter in function rand."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 269,
+                  "startColumn": 12,
+                  "endLine": 269,
+                  "endColumn": 31,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function random." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 281,
+                  "startColumn": 16,
+                  "endLine": 281,
+                  "endColumn": 22,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_range." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 279,
+                  "startColumn": 24,
+                  "endLine": 279,
+                  "endColumn": 53,
+                  "byteLength": 29
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function random." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 281,
+                  "startColumn": 16,
+                  "endLine": 281,
+                  "endColumn": 22,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function random."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 278,
+                  "startColumn": 10,
+                  "endLine": 278,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior allocation in function realloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 452,
+                  "startColumn": 12,
+                  "endLine": 452,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior deallocation in function realloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 452,
+                  "startColumn": 12,
+                  "endLine": 452,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function realloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 452,
+                  "startColumn": 12,
+                  "endLine": 452,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior fail in function realloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 452,
+                  "startColumn": 12,
+                  "endLine": 452,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "freeable." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 422,
+                  "startColumn": 22,
+                  "endLine": 422,
+                  "endColumn": 52,
+                  "byteLength": 30
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "can_allocate." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 429,
+                  "startColumn": 27,
+                  "endLine": 429,
+                  "endColumn": 45,
+                  "byteLength": 18
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "nonnull_ptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 435,
+                  "startColumn": 26,
+                  "endLine": 435,
+                  "endColumn": 38,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "can_allocate." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 436,
+                  "startColumn": 27,
+                  "endLine": 436,
+                  "endColumn": 45,
+                  "byteLength": 18
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "cannot_allocate." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 442,
+                  "startColumn": 30,
+                  "endLine": 442,
+                  "endColumn": 49,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "allocation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 432,
+                  "startColumn": 25,
+                  "endLine": 432,
+                  "endColumn": 45,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "freed." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 438,
+                  "startColumn": 20,
+                  "endLine": 438,
+                  "endColumn": 35,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "freeable." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 439,
+                  "startColumn": 23,
+                  "endLine": 439,
+                  "endColumn": 61,
+                  "byteLength": 38
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "null_result." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 446,
+                  "startColumn": 26,
+                  "endLine": 446,
+                  "endColumn": 42,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function realloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 452,
+                  "startColumn": 12,
+                  "endLine": 452,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function realloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 425,
+                  "startColumn": 11,
+                  "endLine": 425,
+                  "endColumn": 27,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function realloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 452,
+                  "startColumn": 12,
+                  "endLine": 452,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function realloc."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 431,
+                  "startColumn": 13,
+                  "endLine": 431,
+                  "endColumn": 20,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_heap_status in function realloc."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 425,
+                  "startColumn": 11,
+                  "endLine": 425,
+                  "endColumn": 27,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function realloc."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 426,
+                  "startColumn": 11,
+                  "endLine": 426,
+                  "endColumn": 18,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function realloc."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 445,
+                  "startColumn": 13,
+                  "endLine": 445,
+                  "endColumn": 20,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "allocates/frees clause in function realloc."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 430,
+                  "startColumn": 15,
+                  "endLine": 430,
+                  "endColumn": 22,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "allocates/frees clause in function realloc."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 437,
+                  "startColumn": 11,
+                  "endLine": 437,
+                  "endColumn": 14,
+                  "byteLength": 3
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "allocates/frees clause in function realloc."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 424,
+                  "startColumn": 9,
+                  "endLine": 424,
+                  "endColumn": 12,
+                  "byteLength": 3
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "allocates/frees clause in function realloc."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 452,
+                  "startColumn": 12,
+                  "endLine": 452,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "complete clause in function realloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 452,
+                  "startColumn": 12,
+                  "endLine": 452,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "disjoint clause in function realloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 452,
+                  "startColumn": 12,
+                  "endLine": 452,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "disjoint clause in function realloc." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 452,
+                  "startColumn": 12,
+                  "endLine": 452,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function seed48." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 307,
+                  "startColumn": 22,
+                  "endLine": 307,
+                  "endColumn": 23,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 300,
+                  "startColumn": 47,
+                  "endLine": 300,
+                  "endColumn": 75,
+                  "byteLength": 28
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "random48_initialized." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 304,
+                  "startColumn": 32,
+                  "endLine": 304,
+                  "endColumn": 55,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_counter." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 305,
+                  "startColumn": 26,
+                  "endLine": 305,
+                  "endColumn": 60,
+                  "byteLength": 34
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function seed48." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 301,
+                  "startColumn": 10,
+                  "endLine": 301,
+                  "endColumn": 37,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_random48_counter[0 .. 2] in function seed48."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 301,
+                  "startColumn": 10,
+                  "endLine": 301,
+                  "endColumn": 37,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_random48_init in function seed48."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 302,
+                  "startColumn": 10,
+                  "endLine": 302,
+                  "endColumn": 28,
+                  "byteLength": 18
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function seed48."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 303,
+                  "startColumn": 10,
+                  "endLine": 303,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function setenv." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 507,
+                  "startColumn": 11,
+                  "endLine": 507,
+                  "endColumn": 17,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_name." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 500,
+                  "startColumn": 23,
+                  "endLine": 500,
+                  "endColumn": 46,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_value." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 501,
+                  "startColumn": 24,
+                  "endLine": 501,
+                  "endColumn": 48,
+                  "byteLength": 24
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_ok_or_error." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 505,
+                  "startColumn": 30,
+                  "endLine": 505,
+                  "endColumn": 59,
+                  "byteLength": 29
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function setenv." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 502,
+                  "startColumn": 10,
+                  "endLine": 502,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function setenv."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 502,
+                  "startColumn": 10,
+                  "endLine": 502,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term __fc_env[0 ..] in function setenv."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 502,
+                  "startColumn": 19,
+                  "endLine": 502,
+                  "endColumn": 32,
+                  "byteLength": 13
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function srand." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 275,
+                  "startColumn": 12,
+                  "endLine": 275,
+                  "endColumn": 17,
+                  "byteLength": 5
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function srand." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 274,
+                  "startColumn": 12,
+                  "endLine": 274,
+                  "endColumn": 31,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_random_counter in function srand."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 274,
+                  "startColumn": 12,
+                  "endLine": 274,
+                  "endColumn": 31,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function srand48." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 297,
+                  "startColumn": 12,
+                  "endLine": 297,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "random48_initialized." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 295,
+                  "startColumn": 32,
+                  "endLine": 295,
+                  "endColumn": 55,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function srand48." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 293,
+                  "startColumn": 10,
+                  "endLine": 293,
+                  "endColumn": 37,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_random48_counter[0 .. 2] in function srand48."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 293,
+                  "startColumn": 10,
+                  "endLine": 293,
+                  "endColumn": 37,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_random48_init in function srand48."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 294,
+                  "startColumn": 10,
+                  "endLine": 294,
+                  "endColumn": 28,
+                  "byteLength": 18
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function srandom." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 284,
+                  "startColumn": 12,
+                  "endLine": 284,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function srandom." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 283,
+                  "startColumn": 12,
+                  "endLine": 283,
+                  "endColumn": 31,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_random_counter in function srandom."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 283,
+                  "startColumn": 12,
+                  "endLine": 283,
+                  "endColumn": 31,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function stpcpy." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 405,
+                  "startColumn": 12,
+                  "endLine": 405,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_src." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 396,
+                  "startColumn": 31,
+                  "endLine": 396,
+                  "endColumn": 53,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "room_string." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 397,
+                  "startColumn": 26,
+                  "endLine": 397,
+                  "endColumn": 55,
+                  "byteLength": 29
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "separation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 399,
+                  "startColumn": 4,
+                  "endLine": 399,
+                  "endColumn": 59,
+                  "byteLength": 55
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "equal_contents." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 402,
+                  "startColumn": 28,
+                  "endLine": 402,
+                  "endColumn": 49,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "points_to_end." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 403,
+                  "startColumn": 27,
+                  "endLine": 403,
+                  "endColumn": 57,
+                  "byteLength": 30
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function stpcpy." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 400,
+                  "startColumn": 12,
+                  "endLine": 400,
+                  "endColumn": 32,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *(dest + (0 .. strlen{Old}(src))) in function stpcpy."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 400,
+                  "startColumn": 12,
+                  "endLine": 400,
+                  "endColumn": 32,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function stpcpy."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 401,
+                  "startColumn": 12,
+                  "endLine": 401,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strcasecmp." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 167,
+                  "startColumn": 4,
+                  "endLine": 177,
+                  "endColumn": 1,
+                  "byteLength": 284
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s1." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/strings.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 46,
+                  "startColumn": 28,
+                  "endLine": 46,
+                  "endColumn": 49,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s2." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/strings.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 47,
+                  "startColumn": 28,
+                  "endLine": 47,
+                  "endColumn": 49,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strcasecmp." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 167,
+                  "startColumn": 4,
+                  "endLine": 177,
+                  "endColumn": 1,
+                  "byteLength": 284
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strcasecmp."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/strings.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 48,
+                  "startColumn": 10,
+                  "endLine": 48,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strcasestr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 239,
+                  "startColumn": 12,
+                  "endLine": 239,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_haystack." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 231,
+                  "startColumn": 36,
+                  "endLine": 231,
+                  "endColumn": 63,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_needle." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 232,
+                  "startColumn": 34,
+                  "endLine": 232,
+                  "endColumn": 59,
+                  "byteLength": 25
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_null_or_in_haystack." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 236,
+                  "startColumn": 4,
+                  "endLine": 237,
+                  "endColumn": 65,
+                  "byteLength": 82
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strcasestr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 239,
+                  "startColumn": 12,
+                  "endLine": 239,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strcasestr."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 233,
+                  "startColumn": 12,
+                  "endLine": 233,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strcat." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 179,
+                  "startColumn": 4,
+                  "endLine": 188,
+                  "endColumn": 1,
+                  "byteLength": 174
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_src." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 408,
+                  "startColumn": 31,
+                  "endLine": 408,
+                  "endColumn": 53,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_dest." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 409,
+                  "startColumn": 32,
+                  "endLine": 409,
+                  "endColumn": 50,
+                  "byteLength": 18
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "room_string." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 410,
+                  "startColumn": 26,
+                  "endLine": 410,
+                  "endColumn": 70,
+                  "byteLength": 44
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "sum_of_lengths." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 413,
+                  "startColumn": 28,
+                  "endLine": 413,
+                  "endColumn": 76,
+                  "byteLength": 48
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 416,
+                  "startColumn": 4,
+                  "endLine": 416,
+                  "endColumn": 60,
+                  "byteLength": 56
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "dest_null_terminated." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 417,
+                  "startColumn": 34,
+                  "endLine": 417,
+                  "endColumn": 77,
+                  "byteLength": 43
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_ptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 418,
+                  "startColumn": 24,
+                  "endLine": 418,
+                  "endColumn": 39,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strcat." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 411,
+                  "startColumn": 12,
+                  "endLine": 411,
+                  "endColumn": 58,
+                  "byteLength": 46
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *(dest +\n                      (strlen{Old}(dest) ..\n                                           strlen{Old}(dest) +\n                                           strlen{Old}(src))) in function strcat."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 411,
+                  "startColumn": 12,
+                  "endLine": 411,
+                  "endColumn": 58,
+                  "byteLength": 46
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strcat."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 414,
+                  "startColumn": 12,
+                  "endLine": 414,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "specialization of valid_string_s at stmt 191."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 182,
+                  "startColumn": 13,
+                  "endLine": 182,
+                  "endColumn": 25,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "error",
+          "message": { "text": "reachability of stmt line 182 in strcat." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 182,
+                  "startColumn": 13,
+                  "endLine": 182,
+                  "endColumn": 25,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default in function strchr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 225,
+                  "startColumn": 5,
+                  "endLine": 232,
+                  "endColumn": 1,
+                  "byteLength": 158
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strchr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 225,
+                  "startColumn": 5,
+                  "endLine": 232,
+                  "endColumn": 1,
+                  "byteLength": 158
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior found in function strchr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 225,
+                  "startColumn": 5,
+                  "endLine": 232,
+                  "endColumn": 1,
+                  "byteLength": 158
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior not_found in function strchr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 225,
+                  "startColumn": 5,
+                  "endLine": 232,
+                  "endColumn": 1,
+                  "byteLength": 158
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 157,
+                  "startColumn": 29,
+                  "endLine": 157,
+                  "endColumn": 49,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "char_found." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 160,
+                  "startColumn": 24,
+                  "endLine": 160,
+                  "endColumn": 35,
+                  "byteLength": 11
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "char_not_found." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 167,
+                  "startColumn": 28,
+                  "endLine": 167,
+                  "endColumn": 40,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_char." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 161,
+                  "startColumn": 25,
+                  "endLine": 161,
+                  "endColumn": 44,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_same_base." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 162,
+                  "startColumn": 30,
+                  "endLine": 162,
+                  "endColumn": 66,
+                  "byteLength": 36
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_in_length." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 163,
+                  "startColumn": 30,
+                  "endLine": 163,
+                  "endColumn": 59,
+                  "byteLength": 29
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_valid_string." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 164,
+                  "startColumn": 33,
+                  "endLine": 164,
+                  "endColumn": 59,
+                  "byteLength": 26
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_first_occur." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 165,
+                  "startColumn": 32,
+                  "endLine": 165,
+                  "endColumn": 79,
+                  "byteLength": 47
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_null." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 168,
+                  "startColumn": 25,
+                  "endLine": 168,
+                  "endColumn": 41,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_null_or_same_base." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 171,
+                  "startColumn": 4,
+                  "endLine": 171,
+                  "endColumn": 60,
+                  "byteLength": 56
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strchr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 225,
+                  "startColumn": 5,
+                  "endLine": 232,
+                  "endColumn": 1,
+                  "byteLength": 158
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strchr."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 158,
+                  "startColumn": 12,
+                  "endLine": 158,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strchrnul." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 179,
+                  "startColumn": 12,
+                  "endLine": 179,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 175,
+                  "startColumn": 29,
+                  "endLine": 175,
+                  "endColumn": 49,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_same_base." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 177,
+                  "startColumn": 30,
+                  "endLine": 177,
+                  "endColumn": 64,
+                  "byteLength": 34
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strchrnul." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 179,
+                  "startColumn": 12,
+                  "endLine": 179,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strchrnul."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 176,
+                  "startColumn": 12,
+                  "endLine": 176,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strcmp." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 127,
+                  "startColumn": 4,
+                  "endLine": 134,
+                  "endColumn": 1,
+                  "byteLength": 189
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s1." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 137,
+                  "startColumn": 30,
+                  "endLine": 137,
+                  "endColumn": 51,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s2." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 138,
+                  "startColumn": 30,
+                  "endLine": 138,
+                  "endColumn": 51,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "acsl_c_equiv." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 140,
+                  "startColumn": 26,
+                  "endLine": 140,
+                  "endColumn": 50,
+                  "byteLength": 24
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strcmp." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 127,
+                  "startColumn": 4,
+                  "endLine": 134,
+                  "endColumn": 1,
+                  "byteLength": 189
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strcmp."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 139,
+                  "startColumn": 12,
+                  "endLine": 139,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strcoll." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 155,
+                  "startColumn": 11,
+                  "endLine": 155,
+                  "endColumn": 18,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s1." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 151,
+                  "startColumn": 30,
+                  "endLine": 151,
+                  "endColumn": 51,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s2." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 152,
+                  "startColumn": 30,
+                  "endLine": 152,
+                  "endColumn": 51,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strcoll." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 155,
+                  "startColumn": 11,
+                  "endLine": 155,
+                  "endColumn": 18,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strcoll."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 153,
+                  "startColumn": 12,
+                  "endLine": 153,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strcpy." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 204,
+                  "startColumn": 4,
+                  "endLine": 211,
+                  "endColumn": 1,
+                  "byteLength": 137
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_src." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 351,
+                  "startColumn": 31,
+                  "endLine": 351,
+                  "endColumn": 53,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "room_string." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 352,
+                  "startColumn": 26,
+                  "endLine": 352,
+                  "endColumn": 55,
+                  "byteLength": 29
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "separation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 354,
+                  "startColumn": 4,
+                  "endLine": 354,
+                  "endColumn": 59,
+                  "byteLength": 55
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "equal_contents." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 357,
+                  "startColumn": 28,
+                  "endLine": 357,
+                  "endColumn": 49,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_ptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 358,
+                  "startColumn": 24,
+                  "endLine": 358,
+                  "endColumn": 39,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strcpy." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 355,
+                  "startColumn": 12,
+                  "endLine": 355,
+                  "endColumn": 32,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *(dest + (0 .. strlen{Old}(src))) in function strcpy."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 355,
+                  "startColumn": 12,
+                  "endLine": 355,
+                  "endColumn": 32,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strcpy."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 356,
+                  "startColumn": 12,
+                  "endLine": 356,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strcspn." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 202,
+                  "startColumn": 14,
+                  "endLine": 202,
+                  "endColumn": 21,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 197,
+                  "startColumn": 29,
+                  "endLine": 197,
+                  "endColumn": 49,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_reject." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 198,
+                  "startColumn": 34,
+                  "endLine": 198,
+                  "endColumn": 59,
+                  "byteLength": 25
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_bounded." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 200,
+                  "startColumn": 28,
+                  "endLine": 200,
+                  "endColumn": 53,
+                  "byteLength": 25
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strcspn." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 202,
+                  "startColumn": 14,
+                  "endLine": 202,
+                  "endColumn": 21,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strcspn."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 199,
+                  "startColumn": 12,
+                  "endLine": 199,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior allocation in function strdup." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 290,
+                  "startColumn": 5,
+                  "endLine": 300,
+                  "endColumn": 1,
+                  "byteLength": 159
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strdup." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 290,
+                  "startColumn": 5,
+                  "endLine": 300,
+                  "endColumn": 1,
+                  "byteLength": 159
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior no_allocation in function strdup." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 290,
+                  "startColumn": 5,
+                  "endLine": 300,
+                  "endColumn": 1,
+                  "byteLength": 159
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 468,
+                  "startColumn": 29,
+                  "endLine": 468,
+                  "endColumn": 49,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "can_allocate." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 472,
+                  "startColumn": 26,
+                  "endLine": 472,
+                  "endColumn": 49,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "cannot_allocate." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 479,
+                  "startColumn": 29,
+                  "endLine": 479,
+                  "endColumn": 53,
+                  "byteLength": 24
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "allocation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 475,
+                  "startColumn": 24,
+                  "endLine": 475,
+                  "endColumn": 49,
+                  "byteLength": 25
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_valid_string_and_same_contents." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 477,
+                  "startColumn": 4,
+                  "endLine": 477,
+                  "endColumn": 51,
+                  "byteLength": 47
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_null." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 482,
+                  "startColumn": 25,
+                  "endLine": 482,
+                  "endColumn": 41,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strdup." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 473,
+                  "startColumn": 12,
+                  "endLine": 473,
+                  "endColumn": 28,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strdup." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 290,
+                  "startColumn": 5,
+                  "endLine": 300,
+                  "endColumn": 1,
+                  "byteLength": 159
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strdup." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 290,
+                  "startColumn": 5,
+                  "endLine": 300,
+                  "endColumn": 1,
+                  "byteLength": 159
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_heap_status in function strdup."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 473,
+                  "startColumn": 12,
+                  "endLine": 473,
+                  "endColumn": 28,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strdup."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 474,
+                  "startColumn": 12,
+                  "endLine": 474,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strdup."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 470,
+                  "startColumn": 12,
+                  "endLine": 470,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strdup."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 480,
+                  "startColumn": 12,
+                  "endLine": 480,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "allocates/frees clause in function strdup." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 469,
+                  "startColumn": 14,
+                  "endLine": 469,
+                  "endColumn": 21,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "allocates/frees clause in function strdup." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 290,
+                  "startColumn": 5,
+                  "endLine": 300,
+                  "endColumn": 1,
+                  "byteLength": 159
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "specialization of valid_string_s at stmt 353."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 292,
+                  "startColumn": 13,
+                  "endLine": 292,
+                  "endColumn": 22,
+                  "byteLength": 9
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "error",
+          "message": { "text": "reachability of stmt line 292 in strdup." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 292,
+                  "startColumn": 13,
+                  "endLine": 292,
+                  "endColumn": 22,
+                  "byteLength": 9
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "specialization of valid_dest at stmt 360." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 298,
+                  "startColumn": 2,
+                  "endLine": 298,
+                  "endColumn": 17,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "specialization of valid_src at stmt 360." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 298,
+                  "startColumn": 2,
+                  "endLine": 298,
+                  "endColumn": 17,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "specialization of separation at stmt 360." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 298,
+                  "startColumn": 2,
+                  "endLine": 298,
+                  "endColumn": 17,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "error",
+          "message": { "text": "reachability of stmt line 298 in strdup." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 298,
+                  "startColumn": 2,
+                  "endLine": 298,
+                  "endColumn": 17,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strerror." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 277,
+                  "startColumn": 5,
+                  "endLine": 287,
+                  "endColumn": 1,
+                  "byteLength": 184
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_internal_str." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 343,
+                  "startColumn": 33,
+                  "endLine": 343,
+                  "endColumn": 59,
+                  "byteLength": 26
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_nul_terminated." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 344,
+                  "startColumn": 35,
+                  "endLine": 344,
+                  "endColumn": 51,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_valid_string." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 345,
+                  "startColumn": 33,
+                  "endLine": 345,
+                  "endColumn": 59,
+                  "byteLength": 26
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strerror." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 277,
+                  "startColumn": 5,
+                  "endLine": 287,
+                  "endColumn": 1,
+                  "byteLength": 184
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strerror."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 342,
+                  "startColumn": 12,
+                  "endLine": 342,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "specialization of valid_p at stmt 347." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 281,
+                  "startColumn": 4,
+                  "endLine": 281,
+                  "endColumn": 43,
+                  "byteLength": 39
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "error",
+          "message": { "text": "reachability of stmt line 281 in strerror." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 281,
+                  "startColumn": 4,
+                  "endLine": 281,
+                  "endColumn": 43,
+                  "byteLength": 39
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strlcat." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 455,
+                  "startColumn": 14,
+                  "endLine": 455,
+                  "endColumn": 21,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_src." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 448,
+                  "startColumn": 31,
+                  "endLine": 448,
+                  "endColumn": 53,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_dest." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 449,
+                  "startColumn": 32,
+                  "endLine": 449,
+                  "endColumn": 50,
+                  "byteLength": 18
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "room_nstring." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 450,
+                  "startColumn": 27,
+                  "endLine": 450,
+                  "endColumn": 48,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "bounded_result." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 453,
+                  "startColumn": 28,
+                  "endLine": 453,
+                  "endColumn": 65,
+                  "byteLength": 37
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strlcat." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 451,
+                  "startColumn": 12,
+                  "endLine": 451,
+                  "endColumn": 33,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *(dest + (strlen{Old}(dest) .. n)) in function strlcat."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 451,
+                  "startColumn": 12,
+                  "endLine": 451,
+                  "endColumn": 33,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strlcat."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 452,
+                  "startColumn": 12,
+                  "endLine": 452,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strlcpy." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 393,
+                  "startColumn": 7,
+                  "endLine": 393,
+                  "endColumn": 14,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_src." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 384,
+                  "startColumn": 31,
+                  "endLine": 384,
+                  "endColumn": 53,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "room_nstring." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 385,
+                  "startColumn": 27,
+                  "endLine": 385,
+                  "endColumn": 48,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "separation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 387,
+                  "startColumn": 4,
+                  "endLine": 387,
+                  "endColumn": 61,
+                  "byteLength": 57
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 390,
+                  "startColumn": 28,
+                  "endLine": 390,
+                  "endColumn": 73,
+                  "byteLength": 45
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "bounded_result." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 391,
+                  "startColumn": 28,
+                  "endLine": 391,
+                  "endColumn": 50,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strlcpy." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 388,
+                  "startColumn": 12,
+                  "endLine": 388,
+                  "endColumn": 24,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *(dest + (0 .. n - 1)) in function strlcpy."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 388,
+                  "startColumn": 12,
+                  "endLine": 388,
+                  "endColumn": 24,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strlcpy."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 389,
+                  "startColumn": 12,
+                  "endLine": 389,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strlen." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 104,
+                  "startColumn": 7,
+                  "endLine": 109,
+                  "endColumn": 1,
+                  "byteLength": 80
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 125,
+                  "startColumn": 29,
+                  "endLine": 125,
+                  "endColumn": 49,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "acsl_c_equiv." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 127,
+                  "startColumn": 26,
+                  "endLine": 127,
+                  "endColumn": 46,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strlen." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 104,
+                  "startColumn": 7,
+                  "endLine": 109,
+                  "endColumn": 1,
+                  "byteLength": 80
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strlen."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 126,
+                  "startColumn": 12,
+                  "endLine": 126,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strncasecmp." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/strings.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 57,
+                  "startColumn": 11,
+                  "endLine": 57,
+                  "endColumn": 22,
+                  "byteLength": 11
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s1." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/strings.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 53,
+                  "startColumn": 28,
+                  "endLine": 53,
+                  "endColumn": 53,
+                  "byteLength": 25
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s2." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/strings.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 54,
+                  "startColumn": 28,
+                  "endLine": 54,
+                  "endColumn": 53,
+                  "byteLength": 25
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strncasecmp." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/strings.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 57,
+                  "startColumn": 11,
+                  "endLine": 57,
+                  "endColumn": 22,
+                  "byteLength": 11
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strncasecmp."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/strings.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 55,
+                  "startColumn": 10,
+                  "endLine": 55,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior complete in function strncat." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 191,
+                  "startColumn": 4,
+                  "endLine": 202,
+                  "endColumn": 1,
+                  "byteLength": 233
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strncat." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 191,
+                  "startColumn": 4,
+                  "endLine": 202,
+                  "endColumn": 1,
+                  "byteLength": 233
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior partial in function strncat." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 191,
+                  "startColumn": 4,
+                  "endLine": 202,
+                  "endColumn": 1,
+                  "byteLength": 233
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_nstring_src." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 423,
+                  "startColumn": 32,
+                  "endLine": 423,
+                  "endColumn": 58,
+                  "byteLength": 26
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_dest." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 424,
+                  "startColumn": 32,
+                  "endLine": 424,
+                  "endColumn": 50,
+                  "byteLength": 18
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "room_string." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 430,
+                  "startColumn": 26,
+                  "endLine": 430,
+                  "endColumn": 74,
+                  "byteLength": 48
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "room_string." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 438,
+                  "startColumn": 26,
+                  "endLine": 438,
+                  "endColumn": 64,
+                  "byteLength": 38
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_src_fits." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 429,
+                  "startColumn": 35,
+                  "endLine": 429,
+                  "endColumn": 77,
+                  "byteLength": 42
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_src_too_large." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 437,
+                  "startColumn": 4,
+                  "endLine": 437,
+                  "endColumn": 49,
+                  "byteLength": 45
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_ptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 427,
+                  "startColumn": 24,
+                  "endLine": 427,
+                  "endColumn": 39,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "sum_of_lengths." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 434,
+                  "startColumn": 28,
+                  "endLine": 434,
+                  "endColumn": 76,
+                  "byteLength": 48
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "sum_of_bounded_lengths." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 442,
+                  "startColumn": 36,
+                  "endLine": 442,
+                  "endColumn": 74,
+                  "byteLength": 38
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strncat." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 431,
+                  "startColumn": 12,
+                  "endLine": 431,
+                  "endColumn": 58,
+                  "byteLength": 46
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strncat." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 425,
+                  "startColumn": 12,
+                  "endLine": 425,
+                  "endColumn": 50,
+                  "byteLength": 38
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strncat." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 439,
+                  "startColumn": 12,
+                  "endLine": 439,
+                  "endColumn": 48,
+                  "byteLength": 36
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *(dest +\n                      (strlen{Old}(dest) ..\n                                           strlen{Old}(dest) +\n                                           strlen{Old}(src))) in function strncat."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 431,
+                  "startColumn": 12,
+                  "endLine": 431,
+                  "endColumn": 58,
+                  "byteLength": 46
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strncat."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 433,
+                  "startColumn": 12,
+                  "endLine": 433,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *(dest + (strlen{Old}(dest) .. strlen{Old}(dest) + n)) in function strncat."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 425,
+                  "startColumn": 12,
+                  "endLine": 425,
+                  "endColumn": 50,
+                  "byteLength": 38
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strncat."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 426,
+                  "startColumn": 12,
+                  "endLine": 426,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *(dest + (strlen{Old}(dest) .. strlen{Old}(dest) + n)) in function strncat."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 439,
+                  "startColumn": 12,
+                  "endLine": 439,
+                  "endColumn": 48,
+                  "byteLength": 36
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strncat."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 441,
+                  "startColumn": 12,
+                  "endLine": 441,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "specialization of valid_string_s at stmt 204."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 193,
+                  "startColumn": 20,
+                  "endLine": 193,
+                  "endColumn": 32,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "error",
+          "message": { "text": "reachability of stmt line 193 in strncat." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 193,
+                  "startColumn": 20,
+                  "endLine": 193,
+                  "endColumn": 32,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strncmp." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 136,
+                  "startColumn": 4,
+                  "endLine": 145,
+                  "endColumn": 1,
+                  "byteLength": 267
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s1." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 144,
+                  "startColumn": 30,
+                  "endLine": 144,
+                  "endColumn": 55,
+                  "byteLength": 25
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s2." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 145,
+                  "startColumn": 30,
+                  "endLine": 145,
+                  "endColumn": 55,
+                  "byteLength": 25
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "acsl_c_equiv." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 147,
+                  "startColumn": 26,
+                  "endLine": 147,
+                  "endColumn": 53,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strncmp." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 136,
+                  "startColumn": 4,
+                  "endLine": 145,
+                  "endColumn": 1,
+                  "byteLength": 267
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strncmp."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 146,
+                  "startColumn": 12,
+                  "endLine": 146,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior complete in function strncpy." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 213,
+                  "startColumn": 5,
+                  "endLine": 223,
+                  "endColumn": 1,
+                  "byteLength": 198
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strncpy." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 213,
+                  "startColumn": 5,
+                  "endLine": 223,
+                  "endColumn": 1,
+                  "byteLength": 198
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior partial in function strncpy." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 213,
+                  "startColumn": 5,
+                  "endLine": 223,
+                  "endColumn": 1,
+                  "byteLength": 198
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_nstring_src." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 363,
+                  "startColumn": 32,
+                  "endLine": 363,
+                  "endColumn": 58,
+                  "byteLength": 26
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "room_nstring." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 364,
+                  "startColumn": 27,
+                  "endLine": 364,
+                  "endColumn": 50,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "separation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 366,
+                  "startColumn": 4,
+                  "endLine": 366,
+                  "endColumn": 43,
+                  "byteLength": 39
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "src_fits." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 372,
+                  "startColumn": 22,
+                  "endLine": 372,
+                  "endColumn": 37,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "src_too_long." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 375,
+                  "startColumn": 26,
+                  "endLine": 375,
+                  "endColumn": 42,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_ptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 369,
+                  "startColumn": 24,
+                  "endLine": 369,
+                  "endColumn": 39,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 370,
+                  "startColumn": 28,
+                  "endLine": 370,
+                  "endColumn": 57,
+                  "byteLength": 29
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "equal_after_copy." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 373,
+                  "startColumn": 30,
+                  "endLine": 373,
+                  "endColumn": 51,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "equal_prefix." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 376,
+                  "startColumn": 26,
+                  "endLine": 376,
+                  "endColumn": 60,
+                  "byteLength": 34
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strncpy." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 367,
+                  "startColumn": 12,
+                  "endLine": 367,
+                  "endColumn": 26,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *(dest + (0 .. n - 1)) in function strncpy."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 367,
+                  "startColumn": 12,
+                  "endLine": 367,
+                  "endColumn": 26,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strncpy."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 368,
+                  "startColumn": 12,
+                  "endLine": 368,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior allocation in function strndup." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 303,
+                  "startColumn": 5,
+                  "endLine": 318,
+                  "endColumn": 1,
+                  "byteLength": 291
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strndup." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 303,
+                  "startColumn": 5,
+                  "endLine": 318,
+                  "endColumn": 1,
+                  "byteLength": 291
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior no_allocation in function strndup."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 303,
+                  "startColumn": 5,
+                  "endLine": 318,
+                  "endColumn": 1,
+                  "byteLength": 291
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 486,
+                  "startColumn": 29,
+                  "endLine": 486,
+                  "endColumn": 49,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "can_allocate." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 491,
+                  "startColumn": 26,
+                  "endLine": 491,
+                  "endColumn": 60,
+                  "byteLength": 34
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "cannot_allocate." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 501,
+                  "startColumn": 29,
+                  "endLine": 501,
+                  "endColumn": 64,
+                  "byteLength": 35
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "allocation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 495,
+                  "startColumn": 24,
+                  "endLine": 495,
+                  "endColumn": 60,
+                  "byteLength": 36
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "result_valid_string_bounded_and_same_prefix."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 497,
+                  "startColumn": 4,
+                  "endLine": 499,
+                  "endColumn": 29,
+                  "byteLength": 124
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_null." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 504,
+                  "startColumn": 25,
+                  "endLine": 504,
+                  "endColumn": 41,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strndup." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 492,
+                  "startColumn": 12,
+                  "endLine": 492,
+                  "endColumn": 28,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strndup." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 303,
+                  "startColumn": 5,
+                  "endLine": 318,
+                  "endColumn": 1,
+                  "byteLength": 291
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strndup." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 303,
+                  "startColumn": 5,
+                  "endLine": 318,
+                  "endColumn": 1,
+                  "byteLength": 291
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_heap_status in function strndup."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 492,
+                  "startColumn": 12,
+                  "endLine": 492,
+                  "endColumn": 28,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strndup."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 493,
+                  "startColumn": 12,
+                  "endLine": 493,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strndup."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 488,
+                  "startColumn": 12,
+                  "endLine": 488,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strndup."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 502,
+                  "startColumn": 12,
+                  "endLine": 502,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "allocates/frees clause in function strndup."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 487,
+                  "startColumn": 14,
+                  "endLine": 487,
+                  "endColumn": 21,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "allocates/frees clause in function strndup."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 303,
+                  "startColumn": 5,
+                  "endLine": 318,
+                  "endColumn": 1,
+                  "byteLength": 291
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "specialization of valid_dest at stmt 380." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 315,
+                  "startColumn": 2,
+                  "endLine": 315,
+                  "endColumn": 17,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "specialization of valid_src at stmt 380." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 315,
+                  "startColumn": 2,
+                  "endLine": 315,
+                  "endColumn": 17,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "specialization of separation at stmt 380." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 315,
+                  "startColumn": 2,
+                  "endLine": 315,
+                  "endColumn": 17,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "error",
+          "message": { "text": "reachability of stmt line 315 in strndup." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 315,
+                  "startColumn": 2,
+                  "endLine": 315,
+                  "endColumn": 17,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strnlen." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 111,
+                  "startColumn": 7,
+                  "endLine": 116,
+                  "endColumn": 1,
+                  "byteLength": 110
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 131,
+                  "startColumn": 29,
+                  "endLine": 131,
+                  "endColumn": 53,
+                  "byteLength": 24
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_bounded." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 133,
+                  "startColumn": 28,
+                  "endLine": 133,
+                  "endColumn": 64,
+                  "byteLength": 36
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strnlen." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 111,
+                  "startColumn": 7,
+                  "endLine": 116,
+                  "endColumn": 1,
+                  "byteLength": 110
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strnlen."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 132,
+                  "startColumn": 12,
+                  "endLine": 132,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strpbrk." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 218,
+                  "startColumn": 12,
+                  "endLine": 218,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 212,
+                  "startColumn": 29,
+                  "endLine": 212,
+                  "endColumn": 49,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_accept." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 213,
+                  "startColumn": 34,
+                  "endLine": 213,
+                  "endColumn": 59,
+                  "byteLength": 25
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_null_or_same_base." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 216,
+                  "startColumn": 4,
+                  "endLine": 216,
+                  "endColumn": 60,
+                  "byteLength": 56
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strpbrk." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 218,
+                  "startColumn": 12,
+                  "endLine": 218,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strpbrk."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 214,
+                  "startColumn": 12,
+                  "endLine": 214,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default in function strrchr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 234,
+                  "startColumn": 5,
+                  "endLine": 240,
+                  "endColumn": 1,
+                  "byteLength": 165
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strrchr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 234,
+                  "startColumn": 5,
+                  "endLine": 240,
+                  "endColumn": 1,
+                  "byteLength": 165
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior found in function strrchr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 234,
+                  "startColumn": 5,
+                  "endLine": 240,
+                  "endColumn": 1,
+                  "byteLength": 165
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior not_found in function strrchr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 234,
+                  "startColumn": 5,
+                  "endLine": 240,
+                  "endColumn": 1,
+                  "byteLength": 165
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 181,
+                  "startColumn": 29,
+                  "endLine": 181,
+                  "endColumn": 49,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "char_found." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 184,
+                  "startColumn": 24,
+                  "endLine": 184,
+                  "endColumn": 35,
+                  "byteLength": 11
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "char_not_found." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 189,
+                  "startColumn": 28,
+                  "endLine": 189,
+                  "endColumn": 40,
+                  "byteLength": 12
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_char." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 185,
+                  "startColumn": 25,
+                  "endLine": 185,
+                  "endColumn": 38,
+                  "byteLength": 13
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_same_base." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 186,
+                  "startColumn": 30,
+                  "endLine": 186,
+                  "endColumn": 66,
+                  "byteLength": 36
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_valid_string." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 187,
+                  "startColumn": 33,
+                  "endLine": 187,
+                  "endColumn": 59,
+                  "byteLength": 26
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_null." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 190,
+                  "startColumn": 25,
+                  "endLine": 190,
+                  "endColumn": 41,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_null_or_same_base." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 193,
+                  "startColumn": 4,
+                  "endLine": 193,
+                  "endColumn": 60,
+                  "byteLength": 56
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strrchr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 234,
+                  "startColumn": 5,
+                  "endLine": 240,
+                  "endColumn": 1,
+                  "byteLength": 165
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strrchr."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 182,
+                  "startColumn": 12,
+                  "endLine": 182,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "specialization of valid_string_s at stmt 269."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 237,
+                  "startColumn": 18,
+                  "endLine": 237,
+                  "endColumn": 27,
+                  "byteLength": 9
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "error",
+          "message": { "text": "reachability of stmt line 237 in strrchr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 237,
+                  "startColumn": 18,
+                  "endLine": 237,
+                  "endColumn": 27,
+                  "byteLength": 9
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strsep." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 334,
+                  "startColumn": 12,
+                  "endLine": 334,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_stringp." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 329,
+                  "startColumn": 35,
+                  "endLine": 329,
+                  "endColumn": 76,
+                  "byteLength": 41
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_delim." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 330,
+                  "startColumn": 33,
+                  "endLine": 330,
+                  "endColumn": 57,
+                  "byteLength": 24
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strsep." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 331,
+                  "startColumn": 12,
+                  "endLine": 331,
+                  "endColumn": 20,
+                  "byteLength": 8
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *stringp in function strsep."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 331,
+                  "startColumn": 12,
+                  "endLine": 331,
+                  "endColumn": 20,
+                  "byteLength": 8
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strsep."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 332,
+                  "startColumn": 12,
+                  "endLine": 332,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strsignal." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 323,
+                  "startColumn": 5,
+                  "endLine": 333,
+                  "endColumn": 1,
+                  "byteLength": 190
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_internal_str." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 519,
+                  "startColumn": 33,
+                  "endLine": 519,
+                  "endColumn": 60,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_nul_terminated." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 520,
+                  "startColumn": 35,
+                  "endLine": 520,
+                  "endColumn": 51,
+                  "byteLength": 16
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_valid_string." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 521,
+                  "startColumn": 33,
+                  "endLine": 521,
+                  "endColumn": 59,
+                  "byteLength": 26
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strsignal." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 323,
+                  "startColumn": 5,
+                  "endLine": 333,
+                  "endColumn": 1,
+                  "byteLength": 190
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strsignal."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 518,
+                  "startColumn": 12,
+                  "endLine": 518,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "specialization of valid_p at stmt 386." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 327,
+                  "startColumn": 4,
+                  "endLine": 327,
+                  "endColumn": 44,
+                  "byteLength": 40
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "error",
+          "message": {
+            "text": "reachability of stmt line 327 in strsignal."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 327,
+                  "startColumn": 4,
+                  "endLine": 327,
+                  "endColumn": 44,
+                  "byteLength": 40
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strspn." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 210,
+                  "startColumn": 14,
+                  "endLine": 210,
+                  "endColumn": 20,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 204,
+                  "startColumn": 29,
+                  "endLine": 204,
+                  "endColumn": 49,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_accept." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 205,
+                  "startColumn": 34,
+                  "endLine": 205,
+                  "endColumn": 59,
+                  "byteLength": 25
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_bounded." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 208,
+                  "startColumn": 28,
+                  "endLine": 208,
+                  "endColumn": 53,
+                  "byteLength": 25
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strspn." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 206,
+                  "startColumn": 12,
+                  "endLine": 206,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strspn."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 206,
+                  "startColumn": 12,
+                  "endLine": 206,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strspn."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 207,
+                  "startColumn": 12,
+                  "endLine": 207,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strstr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 260,
+                  "startColumn": 5,
+                  "endLine": 272,
+                  "endColumn": 1,
+                  "byteLength": 380
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_haystack." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 220,
+                  "startColumn": 36,
+                  "endLine": 220,
+                  "endColumn": 63,
+                  "byteLength": 27
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_needle." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 221,
+                  "startColumn": 34,
+                  "endLine": 221,
+                  "endColumn": 59,
+                  "byteLength": 25
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_null_or_in_haystack." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 225,
+                  "startColumn": 4,
+                  "endLine": 227,
+                  "endColumn": 59,
+                  "byteLength": 141
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strstr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.c",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 260,
+                  "startColumn": 5,
+                  "endLine": 272,
+                  "endColumn": 1,
+                  "byteLength": 380
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strstr."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 222,
+                  "startColumn": 12,
+                  "endLine": 222,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strtod." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 116,
+                  "startColumn": 14,
+                  "endLine": 116,
+                  "endColumn": 20,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior no_storage in function strtod." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 116,
+                  "startColumn": 14,
+                  "endLine": 116,
+                  "endColumn": 20,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior store_position in function strtod."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 116,
+                  "startColumn": 14,
+                  "endLine": 116,
+                  "endColumn": 20,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_nptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 98,
+                  "startColumn": 23,
+                  "endLine": 98,
+                  "endColumn": 40,
+                  "byteLength": 17
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "separation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 99,
+                  "startColumn": 23,
+                  "endLine": 99,
+                  "endColumn": 47,
+                  "byteLength": 24
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 107,
+                  "startColumn": 27,
+                  "endLine": 107,
+                  "endColumn": 41,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "null_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 103,
+                  "startColumn": 25,
+                  "endLine": 103,
+                  "endColumn": 40,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "nonnull_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 106,
+                  "startColumn": 28,
+                  "endLine": 106,
+                  "endColumn": 43,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 110,
+                  "startColumn": 28,
+                  "endLine": 110,
+                  "endColumn": 48,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 111,
+                  "startColumn": 26,
+                  "endLine": 111,
+                  "endColumn": 45,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "position_subset." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 112,
+                  "startColumn": 29,
+                  "endLine": 112,
+                  "endColumn": 60,
+                  "byteLength": 31
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtod." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 100,
+                  "startColumn": 10,
+                  "endLine": 100,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtod." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 116,
+                  "startColumn": 14,
+                  "endLine": 116,
+                  "endColumn": 20,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtod." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 108,
+                  "startColumn": 12,
+                  "endLine": 108,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtod."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 100,
+                  "startColumn": 10,
+                  "endLine": 100,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *endptr in function strtod."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 101,
+                  "startColumn": 10,
+                  "endLine": 101,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtod."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 104,
+                  "startColumn": 12,
+                  "endLine": 104,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtod."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 108,
+                  "startColumn": 12,
+                  "endLine": 108,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *endptr in function strtod."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 109,
+                  "startColumn": 12,
+                  "endLine": 109,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "complete clause in function strtod." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 116,
+                  "startColumn": 14,
+                  "endLine": 116,
+                  "endColumn": 20,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "disjoint clause in function strtod." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 116,
+                  "startColumn": 14,
+                  "endLine": 116,
+                  "endColumn": 20,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strtof." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 138,
+                  "startColumn": 13,
+                  "endLine": 138,
+                  "endColumn": 19,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior no_storage in function strtof." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 138,
+                  "startColumn": 13,
+                  "endLine": 138,
+                  "endColumn": 19,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior store_position in function strtof."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 138,
+                  "startColumn": 13,
+                  "endLine": 138,
+                  "endColumn": 19,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_nptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 120,
+                  "startColumn": 23,
+                  "endLine": 120,
+                  "endColumn": 40,
+                  "byteLength": 17
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "separation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 121,
+                  "startColumn": 23,
+                  "endLine": 121,
+                  "endColumn": 47,
+                  "byteLength": 24
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 129,
+                  "startColumn": 27,
+                  "endLine": 129,
+                  "endColumn": 41,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "null_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 125,
+                  "startColumn": 25,
+                  "endLine": 125,
+                  "endColumn": 40,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "nonnull_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 128,
+                  "startColumn": 28,
+                  "endLine": 128,
+                  "endColumn": 43,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 132,
+                  "startColumn": 28,
+                  "endLine": 132,
+                  "endColumn": 48,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 133,
+                  "startColumn": 26,
+                  "endLine": 133,
+                  "endColumn": 45,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "position_subset." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 134,
+                  "startColumn": 29,
+                  "endLine": 134,
+                  "endColumn": 60,
+                  "byteLength": 31
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtof." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 122,
+                  "startColumn": 10,
+                  "endLine": 122,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtof." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 138,
+                  "startColumn": 13,
+                  "endLine": 138,
+                  "endColumn": 19,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtof." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 130,
+                  "startColumn": 12,
+                  "endLine": 130,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtof."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 122,
+                  "startColumn": 10,
+                  "endLine": 122,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *endptr in function strtof."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 123,
+                  "startColumn": 10,
+                  "endLine": 123,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtof."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 126,
+                  "startColumn": 12,
+                  "endLine": 126,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtof."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 130,
+                  "startColumn": 12,
+                  "endLine": 130,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *endptr in function strtof."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 131,
+                  "startColumn": 12,
+                  "endLine": 131,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "complete clause in function strtof." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 138,
+                  "startColumn": 13,
+                  "endLine": 138,
+                  "endColumn": 19,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "disjoint clause in function strtof." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 138,
+                  "startColumn": 13,
+                  "endLine": 138,
+                  "endColumn": 19,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strtok." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 283,
+                  "startColumn": 12,
+                  "endLine": 283,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior new_str in function strtok." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 283,
+                  "startColumn": 12,
+                  "endLine": 283,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior resume_str in function strtok." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 283,
+                  "startColumn": 12,
+                  "endLine": 283,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_delim." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 245,
+                  "startColumn": 31,
+                  "endLine": 245,
+                  "endColumn": 55,
+                  "byteLength": 24
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s_or_delim_not_found." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 258,
+                  "startColumn": 6,
+                  "endLine": 260,
+                  "endColumn": 70,
+                  "byteLength": 120
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "not_first_call." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 268,
+                  "startColumn": 29,
+                  "endLine": 268,
+                  "endColumn": 53,
+                  "byteLength": 24
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "s_not_null." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 256,
+                  "startColumn": 24,
+                  "endLine": 256,
+                  "endColumn": 34,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "s_null." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 267,
+                  "startColumn": 20,
+                  "endLine": 267,
+                  "endColumn": 30,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_subset." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 264,
+                  "startColumn": 27,
+                  "endLine": 264,
+                  "endColumn": 72,
+                  "byteLength": 45
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "ptr_subset." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 265,
+                  "startColumn": 24,
+                  "endLine": 265,
+                  "endColumn": 57,
+                  "byteLength": 33
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_subset." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 277,
+                  "startColumn": 27,
+                  "endLine": 278,
+                  "endColumn": 72,
+                  "byteLength": 92
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "ptr_subset." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 279,
+                  "startColumn": 24,
+                  "endLine": 279,
+                  "endColumn": 77,
+                  "byteLength": 53
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtok." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 246,
+                  "startColumn": 10,
+                  "endLine": 246,
+                  "endColumn": 16,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtok." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 261,
+                  "startColumn": 12,
+                  "endLine": 261,
+                  "endColumn": 27,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtok." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 269,
+                  "startColumn": 12,
+                  "endLine": 269,
+                  "endColumn": 32,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *(s + (0 ..)) in function strtok."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 246,
+                  "startColumn": 10,
+                  "endLine": 246,
+                  "endColumn": 16,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *(__fc_strtok_ptr + (0 ..)) in function strtok."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 248,
+                  "startColumn": 10,
+                  "endLine": 248,
+                  "endColumn": 30,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtok."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 250,
+                  "startColumn": 10,
+                  "endLine": 250,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term __fc_strtok_ptr in function strtok."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 252,
+                  "startColumn": 10,
+                  "endLine": 252,
+                  "endColumn": 25,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term __fc_strtok_ptr in function strtok."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 261,
+                  "startColumn": 12,
+                  "endLine": 261,
+                  "endColumn": 27,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *(s + (0 ..)) in function strtok."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 262,
+                  "startColumn": 12,
+                  "endLine": 262,
+                  "endColumn": 18,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtok."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 263,
+                  "startColumn": 12,
+                  "endLine": 263,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *(__fc_strtok_ptr + (0 ..)) in function strtok."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 269,
+                  "startColumn": 12,
+                  "endLine": 269,
+                  "endColumn": 32,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term __fc_strtok_ptr in function strtok."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 272,
+                  "startColumn": 12,
+                  "endLine": 272,
+                  "endColumn": 27,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtok."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 275,
+                  "startColumn": 12,
+                  "endLine": 275,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "complete clause in function strtok." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 283,
+                  "startColumn": 12,
+                  "endLine": 283,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "disjoint clause in function strtok." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 283,
+                  "startColumn": 12,
+                  "endLine": 283,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strtok_r." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 327,
+                  "startColumn": 12,
+                  "endLine": 327,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior new_str in function strtok_r." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 327,
+                  "startColumn": 12,
+                  "endLine": 327,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior resume_str in function strtok_r." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 327,
+                  "startColumn": 12,
+                  "endLine": 327,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_delim." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 286,
+                  "startColumn": 31,
+                  "endLine": 286,
+                  "endColumn": 55,
+                  "byteLength": 24
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_saveptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 287,
+                  "startColumn": 26,
+                  "endLine": 287,
+                  "endColumn": 41,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_s_or_delim_not_found." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 300,
+                  "startColumn": 6,
+                  "endLine": 302,
+                  "endColumn": 70,
+                  "byteLength": 120
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "not_first_call." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 311,
+                  "startColumn": 29,
+                  "endLine": 311,
+                  "endColumn": 46,
+                  "byteLength": 17
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 312,
+                  "startColumn": 37,
+                  "endLine": 312,
+                  "endColumn": 58,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "s_not_null." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 298,
+                  "startColumn": 24,
+                  "endLine": 298,
+                  "endColumn": 34,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "s_null." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 310,
+                  "startColumn": 20,
+                  "endLine": 310,
+                  "endColumn": 30,
+                  "byteLength": 10
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_subset." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 306,
+                  "startColumn": 27,
+                  "endLine": 306,
+                  "endColumn": 72,
+                  "byteLength": 45
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 307,
+                  "startColumn": 28,
+                  "endLine": 307,
+                  "endColumn": 49,
+                  "byteLength": 21
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "saveptr_subset." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 308,
+                  "startColumn": 28,
+                  "endLine": 308,
+                  "endColumn": 54,
+                  "byteLength": 26
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_subset." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 321,
+                  "startColumn": 27,
+                  "endLine": 322,
+                  "endColumn": 65,
+                  "byteLength": 85
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "saveptr_subset." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 323,
+                  "startColumn": 28,
+                  "endLine": 323,
+                  "endColumn": 67,
+                  "byteLength": 39
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtok_r." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 288,
+                  "startColumn": 10,
+                  "endLine": 288,
+                  "endColumn": 16,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtok_r." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 303,
+                  "startColumn": 12,
+                  "endLine": 303,
+                  "endColumn": 20,
+                  "byteLength": 8
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtok_r." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 313,
+                  "startColumn": 12,
+                  "endLine": 313,
+                  "endColumn": 27,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *(s + (0 ..)) in function strtok_r."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 288,
+                  "startColumn": 10,
+                  "endLine": 288,
+                  "endColumn": 16,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *(*saveptr + (0 ..)) in function strtok_r."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 290,
+                  "startColumn": 10,
+                  "endLine": 290,
+                  "endColumn": 25,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtok_r."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 292,
+                  "startColumn": 10,
+                  "endLine": 292,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *saveptr in function strtok_r."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 294,
+                  "startColumn": 10,
+                  "endLine": 294,
+                  "endColumn": 18,
+                  "byteLength": 8
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *saveptr in function strtok_r."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 303,
+                  "startColumn": 12,
+                  "endLine": 303,
+                  "endColumn": 20,
+                  "byteLength": 8
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *(s + (0 ..)) in function strtok_r."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 304,
+                  "startColumn": 12,
+                  "endLine": 304,
+                  "endColumn": 18,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtok_r."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 305,
+                  "startColumn": 12,
+                  "endLine": 305,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *(*saveptr + (0 ..)) in function strtok_r."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 313,
+                  "startColumn": 12,
+                  "endLine": 313,
+                  "endColumn": 27,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *saveptr in function strtok_r."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 316,
+                  "startColumn": 12,
+                  "endLine": 316,
+                  "endColumn": 20,
+                  "byteLength": 8
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtok_r."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 319,
+                  "startColumn": 12,
+                  "endLine": 319,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "complete clause in function strtok_r." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 327,
+                  "startColumn": 12,
+                  "endLine": 327,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "disjoint clause in function strtok_r." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 327,
+                  "startColumn": 12,
+                  "endLine": 327,
+                  "endColumn": 13,
+                  "byteLength": 1
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strtol." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 184,
+                  "startColumn": 16,
+                  "endLine": 184,
+                  "endColumn": 22,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior no_storage in function strtol." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 184,
+                  "startColumn": 16,
+                  "endLine": 184,
+                  "endColumn": 22,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior store_position in function strtol."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 184,
+                  "startColumn": 16,
+                  "endLine": 184,
+                  "endColumn": 22,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_nptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 165,
+                  "startColumn": 23,
+                  "endLine": 165,
+                  "endColumn": 40,
+                  "byteLength": 17
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "separation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 166,
+                  "startColumn": 23,
+                  "endLine": 166,
+                  "endColumn": 47,
+                  "byteLength": 24
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "base_range." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 167,
+                  "startColumn": 23,
+                  "endLine": 167,
+                  "endColumn": 51,
+                  "byteLength": 28
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 175,
+                  "startColumn": 27,
+                  "endLine": 175,
+                  "endColumn": 41,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "null_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 171,
+                  "startColumn": 25,
+                  "endLine": 171,
+                  "endColumn": 40,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "nonnull_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 174,
+                  "startColumn": 28,
+                  "endLine": 174,
+                  "endColumn": 43,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 178,
+                  "startColumn": 28,
+                  "endLine": 178,
+                  "endColumn": 48,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 179,
+                  "startColumn": 26,
+                  "endLine": 179,
+                  "endColumn": 45,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "position_subset." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 180,
+                  "startColumn": 29,
+                  "endLine": 180,
+                  "endColumn": 60,
+                  "byteLength": 31
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtol." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 168,
+                  "startColumn": 10,
+                  "endLine": 168,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtol." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 184,
+                  "startColumn": 16,
+                  "endLine": 184,
+                  "endColumn": 22,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtol." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 176,
+                  "startColumn": 12,
+                  "endLine": 176,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtol."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 168,
+                  "startColumn": 10,
+                  "endLine": 168,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *endptr in function strtol."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 169,
+                  "startColumn": 10,
+                  "endLine": 169,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtol."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 172,
+                  "startColumn": 12,
+                  "endLine": 172,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtol."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 176,
+                  "startColumn": 12,
+                  "endLine": 176,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *endptr in function strtol."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 177,
+                  "startColumn": 12,
+                  "endLine": 177,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "complete clause in function strtol." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 184,
+                  "startColumn": 16,
+                  "endLine": 184,
+                  "endColumn": 22,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "disjoint clause in function strtol." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 184,
+                  "startColumn": 16,
+                  "endLine": 184,
+                  "endColumn": 22,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strtold." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 160,
+                  "startColumn": 19,
+                  "endLine": 160,
+                  "endColumn": 26,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior no_storage in function strtold." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 160,
+                  "startColumn": 19,
+                  "endLine": 160,
+                  "endColumn": 26,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior store_position in function strtold."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 160,
+                  "startColumn": 19,
+                  "endLine": 160,
+                  "endColumn": 26,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_nptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 142,
+                  "startColumn": 23,
+                  "endLine": 142,
+                  "endColumn": 40,
+                  "byteLength": 17
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "separation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 143,
+                  "startColumn": 23,
+                  "endLine": 143,
+                  "endColumn": 47,
+                  "byteLength": 24
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 151,
+                  "startColumn": 27,
+                  "endLine": 151,
+                  "endColumn": 41,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "null_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 147,
+                  "startColumn": 25,
+                  "endLine": 147,
+                  "endColumn": 40,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "nonnull_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 150,
+                  "startColumn": 28,
+                  "endLine": 150,
+                  "endColumn": 43,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 154,
+                  "startColumn": 28,
+                  "endLine": 154,
+                  "endColumn": 48,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 155,
+                  "startColumn": 26,
+                  "endLine": 155,
+                  "endColumn": 45,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "position_subset." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 156,
+                  "startColumn": 29,
+                  "endLine": 156,
+                  "endColumn": 60,
+                  "byteLength": 31
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtold." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 144,
+                  "startColumn": 10,
+                  "endLine": 144,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtold." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 160,
+                  "startColumn": 19,
+                  "endLine": 160,
+                  "endColumn": 26,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtold." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 152,
+                  "startColumn": 12,
+                  "endLine": 152,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtold."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 144,
+                  "startColumn": 10,
+                  "endLine": 144,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *endptr in function strtold."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 145,
+                  "startColumn": 10,
+                  "endLine": 145,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtold."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 148,
+                  "startColumn": 12,
+                  "endLine": 148,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtold."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 152,
+                  "startColumn": 12,
+                  "endLine": 152,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *endptr in function strtold."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 153,
+                  "startColumn": 12,
+                  "endLine": 153,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "complete clause in function strtold." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 160,
+                  "startColumn": 19,
+                  "endLine": 160,
+                  "endColumn": 26,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "disjoint clause in function strtold." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 160,
+                  "startColumn": 19,
+                  "endLine": 160,
+                  "endColumn": 26,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strtoll." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 209,
+                  "startColumn": 21,
+                  "endLine": 209,
+                  "endColumn": 28,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior no_storage in function strtoll." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 209,
+                  "startColumn": 21,
+                  "endLine": 209,
+                  "endColumn": 28,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior store_position in function strtoll."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 209,
+                  "startColumn": 21,
+                  "endLine": 209,
+                  "endColumn": 28,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_nptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 190,
+                  "startColumn": 23,
+                  "endLine": 190,
+                  "endColumn": 40,
+                  "byteLength": 17
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "separation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 191,
+                  "startColumn": 23,
+                  "endLine": 191,
+                  "endColumn": 47,
+                  "byteLength": 24
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "base_range." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 192,
+                  "startColumn": 23,
+                  "endLine": 192,
+                  "endColumn": 51,
+                  "byteLength": 28
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 200,
+                  "startColumn": 27,
+                  "endLine": 200,
+                  "endColumn": 41,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "null_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 196,
+                  "startColumn": 25,
+                  "endLine": 196,
+                  "endColumn": 40,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "nonnull_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 199,
+                  "startColumn": 28,
+                  "endLine": 199,
+                  "endColumn": 43,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 203,
+                  "startColumn": 28,
+                  "endLine": 203,
+                  "endColumn": 48,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 204,
+                  "startColumn": 26,
+                  "endLine": 204,
+                  "endColumn": 45,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "position_subset." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 205,
+                  "startColumn": 29,
+                  "endLine": 205,
+                  "endColumn": 60,
+                  "byteLength": 31
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtoll." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 193,
+                  "startColumn": 10,
+                  "endLine": 193,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtoll." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 209,
+                  "startColumn": 21,
+                  "endLine": 209,
+                  "endColumn": 28,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtoll." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 201,
+                  "startColumn": 12,
+                  "endLine": 201,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtoll."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 193,
+                  "startColumn": 10,
+                  "endLine": 193,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *endptr in function strtoll."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 194,
+                  "startColumn": 10,
+                  "endLine": 194,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtoll."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 197,
+                  "startColumn": 12,
+                  "endLine": 197,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtoll."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 201,
+                  "startColumn": 12,
+                  "endLine": 201,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *endptr in function strtoll."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 202,
+                  "startColumn": 12,
+                  "endLine": 202,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "complete clause in function strtoll." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 209,
+                  "startColumn": 21,
+                  "endLine": 209,
+                  "endColumn": 28,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "disjoint clause in function strtoll." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 209,
+                  "startColumn": 21,
+                  "endLine": 209,
+                  "endColumn": 28,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strtoul." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 234,
+                  "startColumn": 25,
+                  "endLine": 234,
+                  "endColumn": 32,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior no_storage in function strtoul." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 234,
+                  "startColumn": 25,
+                  "endLine": 234,
+                  "endColumn": 32,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior store_position in function strtoul."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 234,
+                  "startColumn": 25,
+                  "endLine": 234,
+                  "endColumn": 32,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_nptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 215,
+                  "startColumn": 23,
+                  "endLine": 215,
+                  "endColumn": 40,
+                  "byteLength": 17
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "separation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 216,
+                  "startColumn": 23,
+                  "endLine": 216,
+                  "endColumn": 47,
+                  "byteLength": 24
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "base_range." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 217,
+                  "startColumn": 23,
+                  "endLine": 217,
+                  "endColumn": 51,
+                  "byteLength": 28
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 225,
+                  "startColumn": 27,
+                  "endLine": 225,
+                  "endColumn": 41,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "null_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 221,
+                  "startColumn": 25,
+                  "endLine": 221,
+                  "endColumn": 40,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "nonnull_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 224,
+                  "startColumn": 28,
+                  "endLine": 224,
+                  "endColumn": 43,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 228,
+                  "startColumn": 28,
+                  "endLine": 228,
+                  "endColumn": 48,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 229,
+                  "startColumn": 26,
+                  "endLine": 229,
+                  "endColumn": 45,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "position_subset." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 230,
+                  "startColumn": 29,
+                  "endLine": 230,
+                  "endColumn": 60,
+                  "byteLength": 31
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtoul." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 218,
+                  "startColumn": 10,
+                  "endLine": 218,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtoul." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 234,
+                  "startColumn": 25,
+                  "endLine": 234,
+                  "endColumn": 32,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtoul." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 226,
+                  "startColumn": 12,
+                  "endLine": 226,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtoul."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 218,
+                  "startColumn": 10,
+                  "endLine": 218,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *endptr in function strtoul."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 219,
+                  "startColumn": 10,
+                  "endLine": 219,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtoul."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 222,
+                  "startColumn": 12,
+                  "endLine": 222,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtoul."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 226,
+                  "startColumn": 12,
+                  "endLine": 226,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *endptr in function strtoul."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 227,
+                  "startColumn": 12,
+                  "endLine": 227,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "complete clause in function strtoul." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 234,
+                  "startColumn": 25,
+                  "endLine": 234,
+                  "endColumn": 32,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "disjoint clause in function strtoul." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 234,
+                  "startColumn": 25,
+                  "endLine": 234,
+                  "endColumn": 32,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strtoull." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 259,
+                  "startColumn": 30,
+                  "endLine": 259,
+                  "endColumn": 38,
+                  "byteLength": 8
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior no_storage in function strtoull." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 259,
+                  "startColumn": 30,
+                  "endLine": 259,
+                  "endColumn": 38,
+                  "byteLength": 8
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "behavior store_position in function strtoull."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 259,
+                  "startColumn": 30,
+                  "endLine": 259,
+                  "endColumn": 38,
+                  "byteLength": 8
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_nptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 240,
+                  "startColumn": 23,
+                  "endLine": 240,
+                  "endColumn": 40,
+                  "byteLength": 17
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "separation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 241,
+                  "startColumn": 23,
+                  "endLine": 241,
+                  "endColumn": 47,
+                  "byteLength": 24
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "base_range." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 242,
+                  "startColumn": 23,
+                  "endLine": 242,
+                  "endColumn": 51,
+                  "byteLength": 28
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 250,
+                  "startColumn": 27,
+                  "endLine": 250,
+                  "endColumn": 41,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "null_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 246,
+                  "startColumn": 25,
+                  "endLine": 246,
+                  "endColumn": 40,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "nonnull_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 249,
+                  "startColumn": 28,
+                  "endLine": 249,
+                  "endColumn": 43,
+                  "byteLength": 15
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "initialization." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 253,
+                  "startColumn": 28,
+                  "endLine": 253,
+                  "endColumn": 48,
+                  "byteLength": 20
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_endptr." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 254,
+                  "startColumn": 26,
+                  "endLine": 254,
+                  "endColumn": 45,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "position_subset." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 255,
+                  "startColumn": 29,
+                  "endLine": 255,
+                  "endColumn": 60,
+                  "byteLength": 31
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtoull." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 243,
+                  "startColumn": 10,
+                  "endLine": 243,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtoull." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 259,
+                  "startColumn": 30,
+                  "endLine": 259,
+                  "endColumn": 38,
+                  "byteLength": 8
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strtoull." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 251,
+                  "startColumn": 12,
+                  "endLine": 251,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtoull."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 243,
+                  "startColumn": 10,
+                  "endLine": 243,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *endptr in function strtoull."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 244,
+                  "startColumn": 10,
+                  "endLine": 244,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtoull."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 247,
+                  "startColumn": 12,
+                  "endLine": 247,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strtoull."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 251,
+                  "startColumn": 12,
+                  "endLine": 251,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *endptr in function strtoull."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 252,
+                  "startColumn": 12,
+                  "endLine": 252,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "complete clause in function strtoull." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 259,
+                  "startColumn": 30,
+                  "endLine": 259,
+                  "endColumn": 38,
+                  "byteLength": 8
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "disjoint clause in function strtoull." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 259,
+                  "startColumn": 30,
+                  "endLine": 259,
+                  "endColumn": 38,
+                  "byteLength": 8
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function strxfrm." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 463,
+                  "startColumn": 14,
+                  "endLine": 463,
+                  "endColumn": 21,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_dest." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 458,
+                  "startColumn": 25,
+                  "endLine": 458,
+                  "endColumn": 48,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_string_src." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 459,
+                  "startColumn": 31,
+                  "endLine": 459,
+                  "endColumn": 53,
+                  "byteLength": 22
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function strxfrm." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 460,
+                  "startColumn": 12,
+                  "endLine": 460,
+                  "endColumn": 26,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *(dest + (0 .. n - 1)) in function strxfrm."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 460,
+                  "startColumn": 12,
+                  "endLine": 460,
+                  "endColumn": 26,
+                  "byteLength": 14
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function strxfrm."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/string.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 461,
+                  "startColumn": 12,
+                  "endLine": 461,
+                  "endColumn": 19,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function system." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 528,
+                  "startColumn": 11,
+                  "endLine": 528,
+                  "endColumn": 17,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "null_or_valid_string_command." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 525,
+                  "startColumn": 5,
+                  "endLine": 525,
+                  "endColumn": 51,
+                  "byteLength": 46
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function system." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 528,
+                  "startColumn": 11,
+                  "endLine": 528,
+                  "endColumn": 17,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function system."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 526,
+                  "startColumn": 10,
+                  "endLine": 526,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function unsetenv." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 515,
+                  "startColumn": 11,
+                  "endLine": 515,
+                  "endColumn": 19,
+                  "byteLength": 8
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "valid_name." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 510,
+                  "startColumn": 23,
+                  "endLine": 510,
+                  "endColumn": 46,
+                  "byteLength": 23
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "result_ok_or_error." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 513,
+                  "startColumn": 30,
+                  "endLine": 513,
+                  "endColumn": 59,
+                  "byteLength": 29
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function unsetenv." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 511,
+                  "startColumn": 10,
+                  "endLine": 511,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function unsetenv."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 511,
+                  "startColumn": 10,
+                  "endLine": 511,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_env[0 ..] in function unsetenv."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 511,
+                  "startColumn": 19,
+                  "endLine": 511,
+                  "endColumn": 32,
+                  "byteLength": 13
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function wcstombs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 659,
+                  "startColumn": 14,
+                  "endLine": 659,
+                  "endColumn": 22,
+                  "byteLength": 8
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "separation." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 655,
+                  "startColumn": 23,
+                  "endLine": 655,
+                  "endColumn": 42,
+                  "byteLength": 19
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function wcstombs." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 656,
+                  "startColumn": 10,
+                  "endLine": 656,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function wcstombs."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 656,
+                  "startColumn": 10,
+                  "endLine": 656,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term *(s + (0 .. n - 1)) in function wcstombs."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 657,
+                  "startColumn": 10,
+                  "endLine": 657,
+                  "endColumn": 21,
+                  "byteLength": 11
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "behavior default! in function wctomb." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 641,
+                  "startColumn": 11,
+                  "endLine": 641,
+                  "endColumn": 17,
+                  "byteLength": 6
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": { "text": "assigns clause in function wctomb." },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 638,
+                  "startColumn": 10,
+                  "endLine": 638,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term \\result in function wctomb."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 638,
+                  "startColumn": 10,
+                  "endLine": 638,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text": "from clause of term *(s + (0 ..)) in function wctomb."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 639,
+                  "startColumn": 10,
+                  "endLine": 639,
+                  "endColumn": 17,
+                  "byteLength": 7
+                }
+              }
+            }
+          ]
+        },
+        {
+          "ruleId": "user-spec",
+          "kind": "pass",
+          "level": "none",
+          "message": {
+            "text":
+              "from clause of term __fc_wctomb_state in function wctomb."
+          },
+          "locations": [
+            {
+              "physicalLocation": {
+                "artifactLocation": {
+                  "uri": "libc/stdlib.h",
+                  "uriBaseId": "FRAMAC_SHARE"
+                },
+                "region": {
+                  "startLine": 639,
+                  "startColumn": 19,
+                  "endLine": 639,
+                  "endColumn": 36,
+                  "byteLength": 17
+                }
+              }
+            }
+          ]
+        }
+      ],
+      "defaultSourceLanguage": "C",
+      "taxonomies": [
+        {
+          "name": "frama-c",
+          "rules": [
+            {
+              "id": "user-spec",
+              "shortDescription": {
+                "text": "User-written ACSL specification."
+              }
+            }
+          ],
+          "contents": [ "nonLocalizedData" ]
+        }
+      ]
+    }
+  ]
+}
\ No newline at end of file
diff --git a/src/plugins/markdown-report/tests/sarif/std_string.c b/src/plugins/markdown-report/tests/sarif/std_string.c
new file mode 100644
index 00000000000..bc2bc89d0f4
--- /dev/null
+++ b/src/plugins/markdown-report/tests/sarif/std_string.c
@@ -0,0 +1,8 @@
+/* run.config*
+LOG: @PTEST_NAME@.sarif
+OPT: -eva -then -mdr-sarif-deterministic -mdr-gen sarif -mdr-out @PTEST_DIR@/result/@PTEST_NAME@.sarif
+*/
+
+#include "string.c"
+
+int main() { }
-- 
GitLab


From ce7bf0772650c315f70a21330d5b75f9fd03ea3c Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Mon, 11 Jan 2021 19:45:37 +0100
Subject: [PATCH 089/141] [aorai] avoid using logical operators in C code if
 LogicOperator is off

---
 src/plugins/aorai/aorai_utils.ml              |  43 ++++-
 .../aorai/tests/ya/logical_operators.i        |   9 +
 .../aorai/tests/ya/logical_operators.ya       |   3 +
 .../ya/oracle/logical_operators.res.oracle    | 161 ++++++++++++++++++
 .../oracle_prove/logical_operators.res.oracle |   4 +
 5 files changed, 219 insertions(+), 1 deletion(-)
 create mode 100644 src/plugins/aorai/tests/ya/logical_operators.i
 create mode 100644 src/plugins/aorai/tests/ya/logical_operators.ya
 create mode 100644 src/plugins/aorai/tests/ya/oracle/logical_operators.res.oracle
 create mode 100644 src/plugins/aorai/tests/ya/oracle_prove/logical_operators.res.oracle

diff --git a/src/plugins/aorai/aorai_utils.ml b/src/plugins/aorai/aorai_utils.ml
index dd533767fdd..2acc111a6f0 100644
--- a/src/plugins/aorai/aorai_utils.ml
+++ b/src/plugins/aorai/aorai_utils.ml
@@ -1982,8 +1982,49 @@ let mk_transitions_stmt generated_kf loc f st res trans =
     trans
     ([],[],Cil_datatype.Varinfo.Set.empty, Cil.zero ~loc, [])
 
+let mk_goto loc b =
+  let ghost = true in
+  match b.bstmts with
+  | [] -> Cil.mkBlock []
+  | [ { skind = Instr i } ] ->
+    let s = mkStmtOneInstr ~ghost i in
+    Cil.mkBlock [s]
+  | [ { skind = Goto (s,_) }] ->
+    let s' = mkStmt ~ghost (Goto (ref !s,loc)) in
+    Cil.mkBlock [s']
+  | s::_ ->
+    s.labels <-
+      (Label(Data_for_aorai.get_fresh "__aorai_label",loc,false)):: s.labels;
+    let s' = mkStmt ~ghost (Goto (ref s,loc)) in
+    Cil.mkBlock [s']
+
+let normalize_condition loc cond block1 block2 =
+  let rec aux cond b1 b2 =
+    match cond.enode with
+    | UnOp(LNot,e,_) -> aux e b2 b1
+    | BinOp(LAnd,e1,e2,_) ->
+      let b2' = mk_goto loc b2 in
+      let b1'= aux e2 b1 b2' in
+      aux e1 b1' b2
+    | BinOp(LOr,e1,e2,_) ->
+      let b1' = mk_goto loc b1 in
+      let b2' = aux e2 b1' b2 in
+      aux e1 b1 b2'
+    | _ ->
+      Cil.mkBlock [ Cil.mkStmt ~ghost:true (If(cond,b1,b2,loc)) ]
+  in
+  let b = aux cond block1 block2 in
+  match b.bstmts with
+  | [] -> Aorai_option.fatal "If normalization failed"
+  | [ s ] -> s
+  | _ -> Cil.mkStmt ~ghost:true (Block b)
+
 let mkIfStmt loc exp1 block1 block2 =
-  Cil.mkStmt ~ghost:true (If (exp1, block1, block2, loc))
+  if Kernel.LogicalOperators.get() then
+    Cil.mkStmt ~ghost:true (If (exp1, block1, block2, loc))
+  else
+    normalize_condition loc exp1 block1 block2
+
 
 let mk_deterministic_stmt
     generated_kf loc auto f fst status ret state
diff --git a/src/plugins/aorai/tests/ya/logical_operators.i b/src/plugins/aorai/tests/ya/logical_operators.i
new file mode 100644
index 00000000000..3a5beaefe1a
--- /dev/null
+++ b/src/plugins/aorai/tests/ya/logical_operators.i
@@ -0,0 +1,9 @@
+/* run.config*
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+*/
+
+void f(int x) {}
+
+void main(int x) {
+  f(x);
+}
diff --git a/src/plugins/aorai/tests/ya/logical_operators.ya b/src/plugins/aorai/tests/ya/logical_operators.ya
new file mode 100644
index 00000000000..5baf089d910
--- /dev/null
+++ b/src/plugins/aorai/tests/ya/logical_operators.ya
@@ -0,0 +1,3 @@
+%init : I;
+
+I: { f().x == 1 } -> I | other -> I;
diff --git a/src/plugins/aorai/tests/ya/oracle/logical_operators.res.oracle b/src/plugins/aorai/tests/ya/oracle/logical_operators.res.oracle
new file mode 100644
index 00000000000..da665d11dd5
--- /dev/null
+++ b/src/plugins/aorai/tests/ya/oracle/logical_operators.res.oracle
@@ -0,0 +1,161 @@
+[kernel] Parsing tests/ya/logical_operators.i (no preprocessing)
+[aorai] Welcome to the Aorai plugin
+[kernel] Parsing TMPDIR/aorai_logical_operators_0.i (no preprocessing)
+/* Generated by Frama-C */
+enum aorai_ListOper {
+    op_f = 1,
+    op_main = 0
+};
+enum aorai_OpStatusList {
+    aorai_Terminated = 1,
+    aorai_Called = 0
+};
+/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost int I = 1; */
+/*@ ghost
+  /@ requires 1 ≡ I;
+     requires 1 ≡ I ⇒ x ≡ 1 ∨ x ≢ 1;
+     ensures aorai_CurOpStatus ≡ aorai_Called;
+     ensures aorai_CurOperation ≡ op_f;
+     assigns aorai_CurOpStatus, aorai_CurOperation, I;
+     
+     behavior buch_state_I_in:
+       assumes 1 ≡ I ∧ (x ≡ 1 ∨ x ≢ 1);
+       ensures 1 ≡ I;
+     
+     behavior buch_state_I_out:
+       assumes 0 ≡ I ∨ (¬(x ≡ 1) ∧ ¬(x ≢ 1));
+       ensures 0 ≡ I;
+   @/
+  void f_pre_func(int x)
+  {
+    int I_tmp;
+    aorai_CurOpStatus = aorai_Called;
+    aorai_CurOperation = op_f;
+    I_tmp = I;
+    if (I == 1) {
+      if (x != 1) I_tmp = 1; else goto __aorai_label;
+    }
+    else {
+      __aorai_label: ;
+      if (I == 1) 
+        if (x == 1) I_tmp = 1; else I_tmp = 0;
+      else I_tmp = 0;
+    }
+    I = I_tmp;
+    return;
+  }
+
+*/
+
+/*@ ghost
+  /@ requires 1 ≡ I;
+     ensures aorai_CurOpStatus ≡ aorai_Terminated;
+     ensures aorai_CurOperation ≡ op_f;
+     assigns aorai_CurOpStatus, aorai_CurOperation, I;
+     
+     behavior buch_state_I_in:
+       assumes 1 ≡ I;
+       ensures 1 ≡ I;
+     
+     behavior buch_state_I_out:
+       assumes 0 ≡ I;
+       ensures 0 ≡ I;
+   @/
+  void f_post_func(void)
+  {
+    int I_tmp;
+    aorai_CurOpStatus = aorai_Terminated;
+    aorai_CurOperation = op_f;
+    I_tmp = I;
+    if (I == 1) I_tmp = 1; else I_tmp = 0;
+    I = I_tmp;
+    return;
+  }
+
+*/
+
+/*@ requires 1 ≡ I;
+    requires 1 ≡ I ⇒ x ≡ 1 ∨ x ≢ 1;
+    
+    behavior Buchi_property_behavior:
+      ensures \true;
+      ensures 1 ≡ I;
+ */
+void f(int x)
+{
+  /*@ ghost f_pre_func(x); */
+  /*@ ghost f_post_func(); */
+  return;
+}
+
+/*@ ghost
+  /@ requires 1 ≡ I;
+     ensures aorai_CurOpStatus ≡ aorai_Called;
+     ensures aorai_CurOperation ≡ op_main;
+     assigns aorai_CurOpStatus, aorai_CurOperation, I;
+     
+     behavior buch_state_I_in:
+       assumes 1 ≡ I;
+       ensures 1 ≡ I;
+     
+     behavior buch_state_I_out:
+       assumes 0 ≡ I;
+       ensures 0 ≡ I;
+   @/
+  void main_pre_func(int x)
+  {
+    int I_tmp;
+    aorai_CurOpStatus = aorai_Called;
+    aorai_CurOperation = op_main;
+    I_tmp = I;
+    if (I == 1) I_tmp = 1; else I_tmp = 0;
+    I = I_tmp;
+    return;
+  }
+
+*/
+
+/*@ ghost
+  /@ requires 1 ≡ I;
+     ensures aorai_CurOpStatus ≡ aorai_Terminated;
+     ensures aorai_CurOperation ≡ op_main;
+     assigns aorai_CurOpStatus, aorai_CurOperation, I;
+     
+     behavior buch_state_I_in:
+       assumes 1 ≡ I;
+       ensures 1 ≡ I;
+     
+     behavior buch_state_I_out:
+       assumes 0 ≡ I;
+       ensures 0 ≡ I;
+   @/
+  void main_post_func(void)
+  {
+    int I_tmp;
+    aorai_CurOpStatus = aorai_Terminated;
+    aorai_CurOperation = op_main;
+    I_tmp = I;
+    if (I == 1) I_tmp = 1; else I_tmp = 0;
+    I = I_tmp;
+    return;
+  }
+
+*/
+
+/*@ requires 1 ≡ I;
+    
+    behavior Buchi_property_behavior:
+      ensures \true;
+      ensures 1 ≡ I;
+ */
+void main(int x)
+{
+  /*@ ghost main_pre_func(x); */
+  f(x);
+  /*@ ghost main_post_func(); */
+  return;
+}
+
+
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/logical_operators.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/logical_operators.res.oracle
new file mode 100644
index 00000000000..4f152c30c54
--- /dev/null
+++ b/src/plugins/aorai/tests/ya/oracle_prove/logical_operators.res.oracle
@@ -0,0 +1,4 @@
+[kernel] Parsing tests/ya/logical_operators.i (no preprocessing)
+[aorai] Welcome to the Aorai plugin
+[kernel] Parsing TMPDIR/aorai_logical_operators_0.i (no preprocessing)
+[wp] Warning: Missing RTE guards
-- 
GitLab


From 03f04141a7fe0275cb0180359de80aaf799b473c Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Tue, 12 Jan 2021 09:16:55 +0100
Subject: [PATCH 090/141] [aorai] update oracles

---
 .../tests/ltl/oracle/test_boucle.res.oracle   |   9 +-
 .../tests/ltl/oracle/test_boucle1.res.oracle  |   6 +-
 .../tests/ltl/oracle/test_boucle2.res.oracle  |   4 +-
 .../tests/ltl/oracle/test_boucle3.res.oracle  |   4 +-
 .../ltl/oracle/test_factorial.res.oracle      |  15 +-
 .../ltl/oracle/test_recursion2.0.res.oracle   |   6 +-
 .../ltl/oracle/test_recursion2.1.res.oracle   |  10 +-
 .../tests/ltl/oracle/test_switch3.res.oracle  |  16 +-
 .../ltl/oracle/test_switch3_if.res.oracle     |  16 +-
 .../ltl/oracle/test_switch3_return.res.oracle |  16 +-
 .../aorai/tests/ya/logical_operators.i        |   2 +-
 .../ya/oracle/aorai_ptr_field.res.oracle      |  11 +-
 .../tests/ya/oracle/deterministic.res.oracle  |  33 +-
 .../aorai/tests/ya/oracle/formals.res.oracle  |  65 +++-
 .../tests/ya/oracle/hoare_seq.res.oracle      |  30 +-
 .../ya/oracle/logical_operators.res.oracle    |   9 +-
 .../tests/ya/oracle/loop_bts1050.res.oracle   |  18 +-
 .../ya/oracle/metavariables-right.res.oracle  |   4 +-
 .../aorai/tests/ya/oracle/not_prm.res.oracle  |   4 +-
 .../aorai/tests/ya/oracle/other.res.oracle    | 223 ++++++++++--
 .../aorai/tests/ya/oracle/seq.res.oracle      |  17 +-
 .../aorai/tests/ya/oracle/seq_loop.res.oracle |  18 +-
 .../aorai/tests/ya/oracle/serial.res.oracle   | 331 +++++++++++++-----
 .../aorai/tests/ya/oracle/stack.res.oracle    |  25 +-
 .../ya/oracle/test_acces_params.res.oracle    |   8 +-
 .../ya/oracle/test_acces_params2.res.oracle   |   8 +-
 .../test_boucle_rechercheTableau.res.oracle   |   8 +-
 .../tests/ya/oracle/test_factorial.res.oracle |  12 +-
 .../ya/oracle/test_recursion4.res.oracle      |  22 +-
 .../ya/oracle/test_recursion5.res.oracle      |  29 +-
 .../tests/ya/oracle/test_struct.res.oracle    |  16 +-
 31 files changed, 742 insertions(+), 253 deletions(-)

diff --git a/src/plugins/aorai/tests/ltl/oracle/test_boucle.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_boucle.res.oracle
index 04174d4018a..c73da4393f5 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_boucle.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_boucle.res.oracle
@@ -52,8 +52,9 @@ extern int call_to_an_undefined_function(void);
     T0_S2_tmp = T0_S2;
     T0_init_tmp = T0_init;
     accept_S1_tmp = accept_S1;
-    if (T0_S2 == 1 || accept_S1 == 1) accept_S1_tmp = 1;
-    else accept_S1_tmp = 0;
+    if (T0_S2 == 1) accept_S1_tmp = 1;
+    else 
+      if (accept_S1 == 1) accept_S1_tmp = 1; else accept_S1_tmp = 0;
     T0_init_tmp = 0;
     T0_S2_tmp = 0;
     T0_S2 = T0_S2_tmp;
@@ -160,7 +161,9 @@ int a(void)
     accept_S1_tmp = accept_S1;
     accept_S1_tmp = 0;
     T0_init_tmp = 0;
-    if (T0_S2 == 1 || accept_S1 == 1) T0_S2_tmp = 1; else T0_S2_tmp = 0;
+    if (T0_S2 == 1) T0_S2_tmp = 1;
+    else 
+      if (accept_S1 == 1) T0_S2_tmp = 1; else T0_S2_tmp = 0;
     T0_S2 = T0_S2_tmp;
     T0_init = T0_init_tmp;
     accept_S1 = accept_S1_tmp;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_boucle1.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_boucle1.res.oracle
index aed1c6cbbf0..380098d2be6 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_boucle1.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_boucle1.res.oracle
@@ -274,10 +274,12 @@ int commit_trans(void)
     accept_S4_tmp = accept_S4;
     accept_init_tmp = accept_init;
     accept_init_tmp = 0;
-    if (accept_S2 == 1 && status != 0) accept_S4_tmp = 1;
+    if (accept_S2 == 1) 
+      if (status != 0) accept_S4_tmp = 1; else accept_S4_tmp = 0;
     else accept_S4_tmp = 0;
     accept_S3_tmp = 0;
-    if (accept_S2 == 1 && status == 0) accept_S2_tmp = 1;
+    if (accept_S2 == 1) 
+      if (status == 0) accept_S2_tmp = 1; else accept_S2_tmp = 0;
     else accept_S2_tmp = 0;
     accept_S1_tmp = 0;
     accept_S1 = accept_S1_tmp;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_boucle2.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_boucle2.res.oracle
index 9ab4d87d9cc..53bd6b3751c 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_boucle2.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_boucle2.res.oracle
@@ -145,7 +145,9 @@ int rr = 1;
     accept_all_tmp = 0;
     accept_S5_tmp = 0;
     accept_S4_tmp = 0;
-    if (T0_S2 == 1 && rr == 51) accept_S3_tmp = 1; else accept_S3_tmp = 0;
+    if (T0_S2 == 1) 
+      if (rr == 51) accept_S3_tmp = 1; else accept_S3_tmp = 0;
+    else accept_S3_tmp = 0;
     T0_init_tmp = 0;
     if (T0_S2 == 1) T0_S2_tmp = 1; else T0_S2_tmp = 0;
     T0_S2 = T0_S2_tmp;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_boucle3.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_boucle3.res.oracle
index 8b2d1dbb5f2..3a2a6c4f723 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_boucle3.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_boucle3.res.oracle
@@ -238,7 +238,9 @@ void opa(void)
     accept_S3_tmp = accept_S3;
     accept_all_tmp = accept_all;
     accept_all_tmp = 0;
-    if (T1_S2 == 1 && rr == 51) accept_S3_tmp = 1; else accept_S3_tmp = 0;
+    if (T1_S2 == 1) 
+      if (rr == 51) accept_S3_tmp = 1; else accept_S3_tmp = 0;
+    else accept_S3_tmp = 0;
     T1_S2_tmp = 0;
     T0_init_tmp = 0;
     T0_S4_tmp = 0;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_factorial.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_factorial.res.oracle
index 4a0a9031b26..12e9c8f60dc 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_factorial.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_factorial.res.oracle
@@ -219,8 +219,9 @@ int decode_int(char *s)
     accept_S2_tmp = accept_S2;
     accept_init_tmp = accept_init;
     accept_init_tmp = 0;
-    if (accept_S1 == 1 || accept_S2 == 1) accept_S2_tmp = 1;
-    else accept_S2_tmp = 0;
+    if (accept_S1 == 1) accept_S2_tmp = 1;
+    else 
+      if (accept_S2 == 1) accept_S2_tmp = 1; else accept_S2_tmp = 0;
     accept_S1_tmp = 0;
     accept_S1 = accept_S1_tmp;
     accept_S2 = accept_S2_tmp;
@@ -268,10 +269,12 @@ int decode_int(char *s)
     accept_S2_tmp = accept_S2;
     accept_init_tmp = accept_init;
     accept_init_tmp = 0;
-    if (accept_S1 == 1 || accept_S2 == 1) accept_S2_tmp = 1;
-    else accept_S2_tmp = 0;
-    if (accept_S1 == 1 || accept_S2 == 1) accept_S1_tmp = 1;
-    else accept_S1_tmp = 0;
+    if (accept_S1 == 1) accept_S2_tmp = 1;
+    else 
+      if (accept_S2 == 1) accept_S2_tmp = 1; else accept_S2_tmp = 0;
+    if (accept_S1 == 1) accept_S1_tmp = 1;
+    else 
+      if (accept_S2 == 1) accept_S1_tmp = 1; else accept_S1_tmp = 0;
     accept_S1 = accept_S1_tmp;
     accept_S2 = accept_S2_tmp;
     accept_init = accept_init_tmp;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_recursion2.0.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_recursion2.0.res.oracle
index 6dda5c9d85b..472c3f9634c 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_recursion2.0.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_recursion2.0.res.oracle
@@ -106,7 +106,11 @@ int global_argc = 0;
     accept_T2_tmp = 0;
     T1_tmp = 0;
     T0_init_tmp = 0;
-    if (S1 == 1 || T1 == 1 && global_argc > 0) S1_tmp = 1; else S1_tmp = 0;
+    if (S1 == 1) S1_tmp = 1;
+    else 
+      if (T1 == 1) 
+        if (global_argc > 0) S1_tmp = 1; else S1_tmp = 0;
+      else S1_tmp = 0;
     S1 = S1_tmp;
     T0_init = T0_init_tmp;
     T1 = T1_tmp;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_recursion2.1.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_recursion2.1.res.oracle
index aabed966d5a..e2146d41412 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_recursion2.1.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_recursion2.1.res.oracle
@@ -106,7 +106,11 @@ int global_argc = 0;
     accept_T2_tmp = 0;
     T1_tmp = 0;
     T0_init_tmp = 0;
-    if (S1 == 1 || T1 == 1 && global_argc > 0) S1_tmp = 1; else S1_tmp = 0;
+    if (S1 == 1) S1_tmp = 1;
+    else 
+      if (T1 == 1) 
+        if (global_argc > 0) S1_tmp = 1; else S1_tmp = 0;
+      else S1_tmp = 0;
     S1 = S1_tmp;
     T0_init = T0_init_tmp;
     T1 = T1_tmp;
@@ -420,7 +424,9 @@ int sumOne(char *t, int length)
     T0_init_tmp = T0_init;
     T1_tmp = T1;
     accept_T2_tmp = accept_T2;
-    if (T1 == 1 && res == 1) accept_T2_tmp = 1; else accept_T2_tmp = 0;
+    if (T1 == 1) 
+      if (res == 1) accept_T2_tmp = 1; else accept_T2_tmp = 0;
+    else accept_T2_tmp = 0;
     if (T1 == 1) T1_tmp = 1; else T1_tmp = 0;
     T0_init_tmp = 0;
     S1_tmp = 0;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_switch3.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_switch3.res.oracle
index 3b0822025db..5d44a348df9 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_switch3.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_switch3.res.oracle
@@ -58,7 +58,9 @@ enum aorai_OpStatusList {
     accept_S2_tmp = 0;
     accept_S1_tmp = 0;
     T0_init_tmp = 0;
-    if (T0_S2 == 1 || accept_S2 == 1) T0_S2_tmp = 1; else T0_S2_tmp = 0;
+    if (T0_S2 == 1) T0_S2_tmp = 1;
+    else 
+      if (accept_S2 == 1) T0_S2_tmp = 1; else T0_S2_tmp = 0;
     T0_S2 = T0_S2_tmp;
     T0_init = T0_init_tmp;
     accept_S1 = accept_S1_tmp;
@@ -250,10 +252,14 @@ int countOne(char *argv)
     T0_init_tmp = T0_init;
     accept_S1_tmp = accept_S1;
     accept_S2_tmp = accept_S2;
-    if (T0_S2 == 1 || accept_S2 == 1) accept_S2_tmp = 1;
-    else accept_S2_tmp = 0;
-    if ((T0_S2 == 1 || accept_S1 == 1) || accept_S2 == 1) accept_S1_tmp = 1;
-    else accept_S1_tmp = 0;
+    if (T0_S2 == 1) accept_S2_tmp = 1;
+    else 
+      if (accept_S2 == 1) accept_S2_tmp = 1; else accept_S2_tmp = 0;
+    if (T0_S2 == 1) accept_S1_tmp = 1;
+    else 
+      if (accept_S1 == 1) accept_S1_tmp = 1;
+      else 
+        if (accept_S2 == 1) accept_S1_tmp = 1; else accept_S1_tmp = 0;
     T0_init_tmp = 0;
     if (accept_S1 == 1) T0_S2_tmp = 1; else T0_S2_tmp = 0;
     T0_S2 = T0_S2_tmp;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_switch3_if.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_switch3_if.res.oracle
index 74f48874eb3..64fcb6cad31 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_switch3_if.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_switch3_if.res.oracle
@@ -58,7 +58,9 @@ enum aorai_OpStatusList {
     accept_S2_tmp = 0;
     accept_S1_tmp = 0;
     T0_init_tmp = 0;
-    if (T0_S2 == 1 || accept_S2 == 1) T0_S2_tmp = 1; else T0_S2_tmp = 0;
+    if (T0_S2 == 1) T0_S2_tmp = 1;
+    else 
+      if (accept_S2 == 1) T0_S2_tmp = 1; else T0_S2_tmp = 0;
     T0_S2 = T0_S2_tmp;
     T0_init = T0_init_tmp;
     accept_S1 = accept_S1_tmp;
@@ -248,10 +250,14 @@ int countOne(char *argv)
     T0_init_tmp = T0_init;
     accept_S1_tmp = accept_S1;
     accept_S2_tmp = accept_S2;
-    if (T0_S2 == 1 || accept_S2 == 1) accept_S2_tmp = 1;
-    else accept_S2_tmp = 0;
-    if ((T0_S2 == 1 || accept_S1 == 1) || accept_S2 == 1) accept_S1_tmp = 1;
-    else accept_S1_tmp = 0;
+    if (T0_S2 == 1) accept_S2_tmp = 1;
+    else 
+      if (accept_S2 == 1) accept_S2_tmp = 1; else accept_S2_tmp = 0;
+    if (T0_S2 == 1) accept_S1_tmp = 1;
+    else 
+      if (accept_S1 == 1) accept_S1_tmp = 1;
+      else 
+        if (accept_S2 == 1) accept_S1_tmp = 1; else accept_S1_tmp = 0;
     T0_init_tmp = 0;
     if (accept_S1 == 1) T0_S2_tmp = 1; else T0_S2_tmp = 0;
     T0_S2 = T0_S2_tmp;
diff --git a/src/plugins/aorai/tests/ltl/oracle/test_switch3_return.res.oracle b/src/plugins/aorai/tests/ltl/oracle/test_switch3_return.res.oracle
index e4f973d66d5..e3db4bca9bb 100644
--- a/src/plugins/aorai/tests/ltl/oracle/test_switch3_return.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle/test_switch3_return.res.oracle
@@ -58,7 +58,9 @@ enum aorai_OpStatusList {
     accept_S2_tmp = 0;
     accept_S1_tmp = 0;
     T0_init_tmp = 0;
-    if (T0_S2 == 1 || accept_S2 == 1) T0_S2_tmp = 1; else T0_S2_tmp = 0;
+    if (T0_S2 == 1) T0_S2_tmp = 1;
+    else 
+      if (accept_S2 == 1) T0_S2_tmp = 1; else T0_S2_tmp = 0;
     T0_S2 = T0_S2_tmp;
     T0_init = T0_init_tmp;
     accept_S1 = accept_S1_tmp;
@@ -255,10 +257,14 @@ int countOne(char *argv)
     T0_init_tmp = T0_init;
     accept_S1_tmp = accept_S1;
     accept_S2_tmp = accept_S2;
-    if (T0_S2 == 1 || accept_S2 == 1) accept_S2_tmp = 1;
-    else accept_S2_tmp = 0;
-    if ((T0_S2 == 1 || accept_S1 == 1) || accept_S2 == 1) accept_S1_tmp = 1;
-    else accept_S1_tmp = 0;
+    if (T0_S2 == 1) accept_S2_tmp = 1;
+    else 
+      if (accept_S2 == 1) accept_S2_tmp = 1; else accept_S2_tmp = 0;
+    if (T0_S2 == 1) accept_S1_tmp = 1;
+    else 
+      if (accept_S1 == 1) accept_S1_tmp = 1;
+      else 
+        if (accept_S2 == 1) accept_S1_tmp = 1; else accept_S1_tmp = 0;
     T0_init_tmp = 0;
     if (accept_S1 == 1) T0_S2_tmp = 1; else T0_S2_tmp = 0;
     T0_S2 = T0_S2_tmp;
diff --git a/src/plugins/aorai/tests/ya/logical_operators.i b/src/plugins/aorai/tests/ya/logical_operators.i
index 3a5beaefe1a..1dcbba59346 100644
--- a/src/plugins/aorai/tests/ya/logical_operators.i
+++ b/src/plugins/aorai/tests/ya/logical_operators.i
@@ -1,5 +1,5 @@
 /* run.config*
-   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -aorai-test 1 -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
+   OPT: -aorai-automata @PTEST_DIR@/@PTEST_NAME@.ya -load-module tests/Aorai_test.cmxs -aorai-test-number @PTEST_NUMBER@ @PROVE_OPTIONS@
 */
 
 void f(int x) {}
diff --git a/src/plugins/aorai/tests/ya/oracle/aorai_ptr_field.res.oracle b/src/plugins/aorai/tests/ya/oracle/aorai_ptr_field.res.oracle
index d8cb4fbaee5..1c1744e5f85 100644
--- a/src/plugins/aorai/tests/ya/oracle/aorai_ptr_field.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/aorai_ptr_field.res.oracle
@@ -42,8 +42,15 @@ enum aorai_OpStatusList {
     aorai_CurOperation = op_main;
     S0_tmp = S0;
     S1_tmp = S1;
-    if (S0 == 1 && s->x >= 0 || S0 == 1 && s->x < 0) S1_tmp = 1;
-    else S1_tmp = 0;
+    if (S0 == 1) {
+      if (s->x >= 0) S1_tmp = 1; else goto __aorai_label;
+    }
+    else {
+      __aorai_label: ;
+      if (S0 == 1) 
+        if (s->x < 0) S1_tmp = 1; else S1_tmp = 0;
+      else S1_tmp = 0;
+    }
     S0_tmp = 0;
     S0 = S0_tmp;
     S1 = S1_tmp;
diff --git a/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle b/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle
index 7982cfe7c16..a48b55abef9 100644
--- a/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/deterministic.res.oracle
@@ -112,10 +112,16 @@ check lemma S0_deterministic_trans{L}:
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_g;
-    if (3 == aorai_CurStates && x == 4) aorai_CurStates = S4;
-    else 
-      if (3 == aorai_CurStates && x == 5) aorai_CurStates = S5;
+    if (3 == aorai_CurStates) {
+      if (x == 4) aorai_CurStates = S4; else goto __aorai_label;
+    }
+    else {
+      __aorai_label: ;
+      if (3 == aorai_CurStates) 
+        if (x == 5) aorai_CurStates = S5;
+        else aorai_CurStates = aorai_reject;
       else aorai_CurStates = aorai_reject;
+    }
     return;
   }
 
@@ -241,7 +247,8 @@ void g(int x)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_f;
-    if (1 == aorai_CurStates && x == 4) aorai_CurStates = S3;
+    if (1 == aorai_CurStates) 
+      if (x == 4) aorai_CurStates = S3; else aorai_CurStates = aorai_reject;
     else aorai_CurStates = aorai_reject;
     return;
   }
@@ -292,7 +299,11 @@ void g(int x)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_f;
-    if (1 == aorai_CurStates && (res == 0 && X == 5)) aorai_CurStates = S2;
+    if (1 == aorai_CurStates) 
+      if (res == 0) 
+        if (X == 5) aorai_CurStates = S2;
+        else aorai_CurStates = aorai_reject;
+      else aorai_CurStates = aorai_reject;
     else aorai_CurStates = aorai_reject;
     return;
   }
@@ -368,10 +379,16 @@ int f(int x)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_real_main;
-    if (0 == aorai_CurStates && c != 0) aorai_CurStates = S1;
-    else 
-      if (0 == aorai_CurStates && c == 0) aorai_CurStates = S2;
+    if (0 == aorai_CurStates) {
+      if (c != 0) aorai_CurStates = S1; else goto __aorai_label_0;
+    }
+    else {
+      __aorai_label_0: ;
+      if (0 == aorai_CurStates) 
+        if (c == 0) aorai_CurStates = S2;
+        else aorai_CurStates = aorai_reject;
       else aorai_CurStates = aorai_reject;
+    }
     return;
   }
 
diff --git a/src/plugins/aorai/tests/ya/oracle/formals.res.oracle b/src/plugins/aorai/tests/ya/oracle/formals.res.oracle
index 2d0f4d7bd8a..7e1393cfc29 100644
--- a/src/plugins/aorai/tests/ya/oracle/formals.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/formals.res.oracle
@@ -131,16 +131,23 @@ check lemma aorai_intermediate_state_deterministic_trans{L}:
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_f;
-    if (7 == aorai_CurStates && x == 1) {
-      aorai_CurStates = aorai_intermediate_state;
-      aorai_x = x;
-    }
-    else 
-      if (7 == aorai_CurStates && x == 3) {
-        aorai_CurStates = aorai_intermediate_state_2;
-        aorai_x_0 = x;
+    if (7 == aorai_CurStates) {
+      if (x == 1) {
+        aorai_CurStates = aorai_intermediate_state;
+        aorai_x = x;
       }
+      else goto __aorai_label;
+    }
+    else {
+      __aorai_label: ;
+      if (7 == aorai_CurStates) 
+        if (x == 3) {
+          aorai_CurStates = aorai_intermediate_state_2;
+          aorai_x_0 = x;
+        }
+        else aorai_CurStates = aorai_reject;
       else aorai_CurStates = aorai_reject;
+    }
     return;
   }
 
@@ -214,14 +221,30 @@ check lemma aorai_intermediate_state_deterministic_trans{L}:
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_f;
-    if (4 == aorai_CurStates && aorai_x_0 == 3) aorai_CurStates = OK;
-    else 
-      if (1 == aorai_CurStates && aorai_x == 1) aorai_CurStates = aorai_intermediate_state_0;
-      else 
-        if (4 == aorai_CurStates && aorai_x_0 != 3) aorai_CurStates = aorai_reject;
-        else 
-          if (1 == aorai_CurStates && aorai_x != 1) aorai_CurStates = aorai_reject;
+    if (4 == aorai_CurStates) {
+      if (aorai_x_0 == 3) aorai_CurStates = OK; else goto __aorai_label_2;
+    }
+    else {
+      __aorai_label_2: ;
+      if (1 == aorai_CurStates) {
+        if (aorai_x == 1) aorai_CurStates = aorai_intermediate_state_0;
+        else goto __aorai_label_1;
+      }
+      else {
+        __aorai_label_1: ;
+        if (4 == aorai_CurStates) {
+          if (aorai_x_0 != 3) aorai_CurStates = aorai_reject;
+          else goto __aorai_label_0;
+        }
+        else {
+          __aorai_label_0: ;
+          if (1 == aorai_CurStates) 
+            if (aorai_x != 1) aorai_CurStates = aorai_reject;
+            else aorai_CurStates = aorai_reject;
           else aorai_CurStates = aorai_reject;
+        }
+      }
+    }
     return;
   }
 
@@ -422,14 +445,20 @@ int f(int x)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_g;
-    if (3 == aorai_CurStates && aorai_y == 2) aorai_CurStates = OK;
-    else 
+    if (3 == aorai_CurStates) {
+      if (aorai_y == 2) aorai_CurStates = OK; else goto __aorai_label_3;
+    }
+    else {
+      __aorai_label_3: ;
       if (0 == aorai_CurStates) aorai_CurStates = OK;
       else 
         if (5 == aorai_CurStates) aorai_CurStates = aorai_reject;
         else 
-          if (3 == aorai_CurStates && aorai_y != 2) aorai_CurStates = aorai_reject;
+          if (3 == aorai_CurStates) 
+            if (aorai_y != 2) aorai_CurStates = aorai_reject;
+            else aorai_CurStates = aorai_reject;
           else aorai_CurStates = aorai_reject;
+    }
     return;
   }
 
diff --git a/src/plugins/aorai/tests/ya/oracle/hoare_seq.res.oracle b/src/plugins/aorai/tests/ya/oracle/hoare_seq.res.oracle
index 29ffb1ff422..e12c9597528 100644
--- a/src/plugins/aorai/tests/ya/oracle/hoare_seq.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/hoare_seq.res.oracle
@@ -317,10 +317,14 @@ int main_bhv_bhv(int c); */
     aorai_reject_tmp = 0;
     aorai_intermediate_state_2_tmp = 0;
     aorai_intermediate_state_1_tmp = 0;
-    if (S0 == 1 && c <= 0) aorai_intermediate_state_0_tmp = 1;
+    if (S0 == 1) 
+      if (c <= 0) aorai_intermediate_state_0_tmp = 1;
+      else aorai_intermediate_state_0_tmp = 0;
     else aorai_intermediate_state_0_tmp = 0;
     bhv_aux = main_bhv_bhv(c);
-    if (S0 == 1 && bhv_aux) aorai_intermediate_state_tmp = 1;
+    if (S0 == 1) 
+      if (bhv_aux) aorai_intermediate_state_tmp = 1;
+      else aorai_intermediate_state_tmp = 0;
     else aorai_intermediate_state_tmp = 0;
     Sf_tmp = 0;
     S0_tmp = 0;
@@ -409,17 +413,25 @@ int main_bhv_bhv(int c); */
     aorai_intermediate_state_1_tmp = aorai_intermediate_state_1;
     aorai_intermediate_state_2_tmp = aorai_intermediate_state_2;
     aorai_reject_tmp = aorai_reject;
-    if ((aorai_intermediate_state_0 == 1 || aorai_intermediate_state_2 == 1 && 
-                                            res != 0) || aorai_reject == 1) 
-      aorai_reject_tmp = 1;
-    else aorai_reject_tmp = 0;
+    if (aorai_intermediate_state_0 == 1) aorai_reject_tmp = 1;
+    else 
+      if (aorai_intermediate_state_2 == 1) {
+        if (res != 0) aorai_reject_tmp = 1; else goto __aorai_label;
+      }
+      else {
+        __aorai_label: ;
+        if (aorai_reject == 1) aorai_reject_tmp = 1;
+        else aorai_reject_tmp = 0;
+      }
     aorai_intermediate_state_2_tmp = 0;
     aorai_intermediate_state_1_tmp = 0;
     aorai_intermediate_state_0_tmp = 0;
     aorai_intermediate_state_tmp = 0;
-    if (aorai_intermediate_state == 1 || aorai_intermediate_state_2 == 1 && 
-                                         res == 0) Sf_tmp = 1;
-    else Sf_tmp = 0;
+    if (aorai_intermediate_state == 1) Sf_tmp = 1;
+    else 
+      if (aorai_intermediate_state_2 == 1) 
+        if (res == 0) Sf_tmp = 1; else Sf_tmp = 0;
+      else Sf_tmp = 0;
     S0_tmp = 0;
     S0 = S0_tmp;
     Sf = Sf_tmp;
diff --git a/src/plugins/aorai/tests/ya/oracle/logical_operators.res.oracle b/src/plugins/aorai/tests/ya/oracle/logical_operators.res.oracle
index da665d11dd5..ceb4a227b1d 100644
--- a/src/plugins/aorai/tests/ya/oracle/logical_operators.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/logical_operators.res.oracle
@@ -1,5 +1,4 @@
 [kernel] Parsing tests/ya/logical_operators.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_logical_operators_0.i (no preprocessing)
 /* Generated by Frama-C */
 enum aorai_ListOper {
@@ -10,8 +9,8 @@ enum aorai_OpStatusList {
     aorai_Terminated = 1,
     aorai_Called = 0
 };
-/*@ ghost enum aorai_ListOper aorai_CurOperation = op_main; */
-/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus = aorai_Called; */
+/*@ ghost enum aorai_ListOper aorai_CurOperation; */
+/*@ ghost enum aorai_OpStatusList aorai_CurOpStatus; */
 /*@ ghost int I = 1; */
 /*@ ghost
   /@ requires 1 ≡ I;
@@ -31,6 +30,7 @@ enum aorai_OpStatusList {
   void f_pre_func(int x)
   {
     int I_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_f;
     I_tmp = I;
@@ -66,6 +66,7 @@ enum aorai_OpStatusList {
   void f_post_func(void)
   {
     int I_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_f;
     I_tmp = I;
@@ -107,6 +108,7 @@ void f(int x)
   void main_pre_func(int x)
   {
     int I_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_main;
     I_tmp = I;
@@ -134,6 +136,7 @@ void f(int x)
   void main_post_func(void)
   {
     int I_tmp;
+    /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_main;
     I_tmp = I;
diff --git a/src/plugins/aorai/tests/ya/oracle/loop_bts1050.res.oracle b/src/plugins/aorai/tests/ya/oracle/loop_bts1050.res.oracle
index 6569b67175a..a841b2ae6cb 100644
--- a/src/plugins/aorai/tests/ya/oracle/loop_bts1050.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/loop_bts1050.res.oracle
@@ -95,10 +95,14 @@ enum aorai_OpStatusList {
     aorai_intermediate_state_3_tmp = aorai_intermediate_state_3;
     aorai_intermediate_state_3_tmp = 0;
     aorai_intermediate_state_2_tmp = 0;
-    if (aorai_intermediate_state == 1 || aorai_intermediate_state_0 == 1 && 
-                                         aorai_counter < 5) aorai_intermediate_state_1_tmp = 1;
-    else aorai_intermediate_state_1_tmp = 0;
-    if (aorai_intermediate_state_0 == 1 && aorai_counter < 5) aorai_counter ++;
+    if (aorai_intermediate_state == 1) aorai_intermediate_state_1_tmp = 1;
+    else 
+      if (aorai_intermediate_state_0 == 1) 
+        if (aorai_counter < 5) aorai_intermediate_state_1_tmp = 1;
+        else aorai_intermediate_state_1_tmp = 0;
+      else aorai_intermediate_state_1_tmp = 0;
+    if (aorai_intermediate_state_0 == 1) 
+      if (aorai_counter < 5) aorai_counter ++;
     if (aorai_intermediate_state == 1) aorai_counter = 1;
     aorai_intermediate_state_0_tmp = 0;
     aorai_intermediate_state_tmp = 0;
@@ -544,9 +548,9 @@ void g(void)
     aorai_intermediate_state_1_tmp = 0;
     aorai_intermediate_state_0_tmp = 0;
     aorai_intermediate_state_tmp = 0;
-    if (aorai_intermediate_state == 1 || aorai_intermediate_state_0 == 1) 
-      Sf_tmp = 1;
-    else Sf_tmp = 0;
+    if (aorai_intermediate_state == 1) Sf_tmp = 1;
+    else 
+      if (aorai_intermediate_state_0 == 1) Sf_tmp = 1; else Sf_tmp = 0;
     S0_tmp = 0;
     S0 = S0_tmp;
     Sf = Sf_tmp;
diff --git a/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle b/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle
index 1ad02912fd1..e0f52649ef1 100644
--- a/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/metavariables-right.res.oracle
@@ -363,7 +363,9 @@ void g(void)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_h;
-    if (5 == aorai_CurStates && aorai_x > 0) aorai_CurStates = f_0;
+    if (5 == aorai_CurStates) 
+      if (aorai_x > 0) aorai_CurStates = f_0;
+      else aorai_CurStates = aorai_reject;
     else aorai_CurStates = aorai_reject;
     return;
   }
diff --git a/src/plugins/aorai/tests/ya/oracle/not_prm.res.oracle b/src/plugins/aorai/tests/ya/oracle/not_prm.res.oracle
index 79d8cc18058..e730bc38477 100644
--- a/src/plugins/aorai/tests/ya/oracle/not_prm.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/not_prm.res.oracle
@@ -39,7 +39,9 @@ enum aorai_OpStatusList {
     aorai_CurOperation = op_f;
     S0_tmp = S0;
     Sf_tmp = Sf;
-    if (S0 == 1 && x >= 4) Sf_tmp = 1; else Sf_tmp = 0;
+    if (S0 == 1) 
+      if (x >= 4) Sf_tmp = 1; else Sf_tmp = 0;
+    else Sf_tmp = 0;
     S0_tmp = 0;
     S0 = S0_tmp;
     Sf = Sf_tmp;
diff --git a/src/plugins/aorai/tests/ya/oracle/other.res.oracle b/src/plugins/aorai/tests/ya/oracle/other.res.oracle
index d7146144fdf..2e314748222 100644
--- a/src/plugins/aorai/tests/ya/oracle/other.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/other.res.oracle
@@ -65,13 +65,42 @@ int x = 0;
     init_tmp = init;
     last_tmp = last;
     step1_tmp = step1;
-    if ((init == 1 && x == 3 || last == 1 && x == 3) || step1 == 1 && x != 4) 
-      step1_tmp = 1;
-    else step1_tmp = 0;
-    if (last == 1 && (x != 4 && x != 3) || step1 == 1 && x == 4) last_tmp = 1;
-    else last_tmp = 0;
-    if (init == 1 && x != 3 || last == 1 && x == 4) init_tmp = 1;
-    else init_tmp = 0;
+    if (init == 1) {
+      if (x == 3) step1_tmp = 1; else goto __aorai_label_2;
+    }
+    else {
+      __aorai_label_2: ;
+      if (last == 1) {
+        if (x == 3) step1_tmp = 1; else goto __aorai_label_1;
+      }
+      else {
+        __aorai_label_1: ;
+        if (step1 == 1) 
+          if (x != 4) step1_tmp = 1; else step1_tmp = 0;
+        else step1_tmp = 0;
+      }
+    }
+    if (last == 1) {
+      if (x != 4) {
+        if (x != 3) last_tmp = 1; else goto __aorai_label_0;
+      }
+      else goto __aorai_label_0;
+    }
+    else {
+      __aorai_label_0: ;
+      if (step1 == 1) 
+        if (x == 4) last_tmp = 1; else last_tmp = 0;
+      else last_tmp = 0;
+    }
+    if (init == 1) {
+      if (x != 3) init_tmp = 1; else goto __aorai_label;
+    }
+    else {
+      __aorai_label: ;
+      if (last == 1) 
+        if (x == 4) init_tmp = 1; else init_tmp = 0;
+      else init_tmp = 0;
+    }
     init = init_tmp;
     last = last_tmp;
     step1 = step1_tmp;
@@ -129,13 +158,42 @@ int x = 0;
     init_tmp = init;
     last_tmp = last;
     step1_tmp = step1;
-    if ((init == 1 && x == 3 || last == 1 && x == 3) || step1 == 1 && x != 4) 
-      step1_tmp = 1;
-    else step1_tmp = 0;
-    if (last == 1 && (x != 4 && x != 3) || step1 == 1 && x == 4) last_tmp = 1;
-    else last_tmp = 0;
-    if (init == 1 && x != 3 || last == 1 && x == 4) init_tmp = 1;
-    else init_tmp = 0;
+    if (init == 1) {
+      if (x == 3) step1_tmp = 1; else goto __aorai_label_6;
+    }
+    else {
+      __aorai_label_6: ;
+      if (last == 1) {
+        if (x == 3) step1_tmp = 1; else goto __aorai_label_5;
+      }
+      else {
+        __aorai_label_5: ;
+        if (step1 == 1) 
+          if (x != 4) step1_tmp = 1; else step1_tmp = 0;
+        else step1_tmp = 0;
+      }
+    }
+    if (last == 1) {
+      if (x != 4) {
+        if (x != 3) last_tmp = 1; else goto __aorai_label_4;
+      }
+      else goto __aorai_label_4;
+    }
+    else {
+      __aorai_label_4: ;
+      if (step1 == 1) 
+        if (x == 4) last_tmp = 1; else last_tmp = 0;
+      else last_tmp = 0;
+    }
+    if (init == 1) {
+      if (x != 3) init_tmp = 1; else goto __aorai_label_3;
+    }
+    else {
+      __aorai_label_3: ;
+      if (last == 1) 
+        if (x == 4) init_tmp = 1; else init_tmp = 0;
+      else init_tmp = 0;
+    }
     init = init_tmp;
     last = last_tmp;
     step1 = step1_tmp;
@@ -257,13 +315,42 @@ void f(void)
     init_tmp = init;
     last_tmp = last;
     step1_tmp = step1;
-    if ((init == 1 && x == 3 || last == 1 && x == 3) || step1 == 1 && x != 4) 
-      step1_tmp = 1;
-    else step1_tmp = 0;
-    if (last == 1 && (x != 4 && x != 3) || step1 == 1 && x == 4) last_tmp = 1;
-    else last_tmp = 0;
-    if (init == 1 && x != 3 || last == 1 && x == 4) init_tmp = 1;
-    else init_tmp = 0;
+    if (init == 1) {
+      if (x == 3) step1_tmp = 1; else goto __aorai_label_10;
+    }
+    else {
+      __aorai_label_10: ;
+      if (last == 1) {
+        if (x == 3) step1_tmp = 1; else goto __aorai_label_9;
+      }
+      else {
+        __aorai_label_9: ;
+        if (step1 == 1) 
+          if (x != 4) step1_tmp = 1; else step1_tmp = 0;
+        else step1_tmp = 0;
+      }
+    }
+    if (last == 1) {
+      if (x != 4) {
+        if (x != 3) last_tmp = 1; else goto __aorai_label_8;
+      }
+      else goto __aorai_label_8;
+    }
+    else {
+      __aorai_label_8: ;
+      if (step1 == 1) 
+        if (x == 4) last_tmp = 1; else last_tmp = 0;
+      else last_tmp = 0;
+    }
+    if (init == 1) {
+      if (x != 3) init_tmp = 1; else goto __aorai_label_7;
+    }
+    else {
+      __aorai_label_7: ;
+      if (last == 1) 
+        if (x == 4) init_tmp = 1; else init_tmp = 0;
+      else init_tmp = 0;
+    }
     init = init_tmp;
     last = last_tmp;
     step1 = step1_tmp;
@@ -321,13 +408,42 @@ void f(void)
     init_tmp = init;
     last_tmp = last;
     step1_tmp = step1;
-    if ((init == 1 && x == 3 || last == 1 && x == 3) || step1 == 1 && x != 4) 
-      step1_tmp = 1;
-    else step1_tmp = 0;
-    if (last == 1 && (x != 4 && x != 3) || step1 == 1 && x == 4) last_tmp = 1;
-    else last_tmp = 0;
-    if (init == 1 && x != 3 || last == 1 && x == 4) init_tmp = 1;
-    else init_tmp = 0;
+    if (init == 1) {
+      if (x == 3) step1_tmp = 1; else goto __aorai_label_14;
+    }
+    else {
+      __aorai_label_14: ;
+      if (last == 1) {
+        if (x == 3) step1_tmp = 1; else goto __aorai_label_13;
+      }
+      else {
+        __aorai_label_13: ;
+        if (step1 == 1) 
+          if (x != 4) step1_tmp = 1; else step1_tmp = 0;
+        else step1_tmp = 0;
+      }
+    }
+    if (last == 1) {
+      if (x != 4) {
+        if (x != 3) last_tmp = 1; else goto __aorai_label_12;
+      }
+      else goto __aorai_label_12;
+    }
+    else {
+      __aorai_label_12: ;
+      if (step1 == 1) 
+        if (x == 4) last_tmp = 1; else last_tmp = 0;
+      else last_tmp = 0;
+    }
+    if (init == 1) {
+      if (x != 3) init_tmp = 1; else goto __aorai_label_11;
+    }
+    else {
+      __aorai_label_11: ;
+      if (last == 1) 
+        if (x == 4) init_tmp = 1; else init_tmp = 0;
+      else init_tmp = 0;
+    }
     init = init_tmp;
     last = last_tmp;
     step1 = step1_tmp;
@@ -436,9 +552,13 @@ void g(void)
     init_tmp = init;
     last_tmp = last;
     step1_tmp = step1;
-    if (init == 1 && x == 3) step1_tmp = 1; else step1_tmp = 0;
+    if (init == 1) 
+      if (x == 3) step1_tmp = 1; else step1_tmp = 0;
+    else step1_tmp = 0;
     last_tmp = 0;
-    if (init == 1 && x != 3) init_tmp = 1; else init_tmp = 0;
+    if (init == 1) 
+      if (x != 3) init_tmp = 1; else init_tmp = 0;
+    else init_tmp = 0;
     init = init_tmp;
     last = last_tmp;
     step1 = step1_tmp;
@@ -496,13 +616,42 @@ void g(void)
     init_tmp = init;
     last_tmp = last;
     step1_tmp = step1;
-    if ((init == 1 && x == 3 || last == 1 && x == 3) || step1 == 1 && x != 4) 
-      step1_tmp = 1;
-    else step1_tmp = 0;
-    if (last == 1 && (x != 4 && x != 3) || step1 == 1 && x == 4) last_tmp = 1;
-    else last_tmp = 0;
-    if (init == 1 && x != 3 || last == 1 && x == 4) init_tmp = 1;
-    else init_tmp = 0;
+    if (init == 1) {
+      if (x == 3) step1_tmp = 1; else goto __aorai_label_18;
+    }
+    else {
+      __aorai_label_18: ;
+      if (last == 1) {
+        if (x == 3) step1_tmp = 1; else goto __aorai_label_17;
+      }
+      else {
+        __aorai_label_17: ;
+        if (step1 == 1) 
+          if (x != 4) step1_tmp = 1; else step1_tmp = 0;
+        else step1_tmp = 0;
+      }
+    }
+    if (last == 1) {
+      if (x != 4) {
+        if (x != 3) last_tmp = 1; else goto __aorai_label_16;
+      }
+      else goto __aorai_label_16;
+    }
+    else {
+      __aorai_label_16: ;
+      if (step1 == 1) 
+        if (x == 4) last_tmp = 1; else last_tmp = 0;
+      else last_tmp = 0;
+    }
+    if (init == 1) {
+      if (x != 3) init_tmp = 1; else goto __aorai_label_15;
+    }
+    else {
+      __aorai_label_15: ;
+      if (last == 1) 
+        if (x == 4) init_tmp = 1; else init_tmp = 0;
+      else init_tmp = 0;
+    }
     init = init_tmp;
     last = last_tmp;
     step1 = step1_tmp;
diff --git a/src/plugins/aorai/tests/ya/oracle/seq.res.oracle b/src/plugins/aorai/tests/ya/oracle/seq.res.oracle
index 92b8136c6f9..f138130a170 100644
--- a/src/plugins/aorai/tests/ya/oracle/seq.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/seq.res.oracle
@@ -280,10 +280,16 @@ void f(void)
     aorai_intermediate_state_1_tmp = aorai_intermediate_state_1;
     aorai_intermediate_state_2_tmp = aorai_intermediate_state_2;
     aorai_intermediate_state_3_tmp = aorai_intermediate_state_3;
-    if ((aorai_intermediate_state == 1 || aorai_intermediate_state_0 == 1) || 
-        aorai_intermediate_state_2 == 1 && aorai_counter < 2) aorai_intermediate_state_3_tmp = 1;
-    else aorai_intermediate_state_3_tmp = 0;
-    if (aorai_intermediate_state_2 == 1 && aorai_counter < 2) aorai_counter ++;
+    if (aorai_intermediate_state == 1) aorai_intermediate_state_3_tmp = 1;
+    else 
+      if (aorai_intermediate_state_0 == 1) aorai_intermediate_state_3_tmp = 1;
+      else 
+        if (aorai_intermediate_state_2 == 1) 
+          if (aorai_counter < 2) aorai_intermediate_state_3_tmp = 1;
+          else aorai_intermediate_state_3_tmp = 0;
+        else aorai_intermediate_state_3_tmp = 0;
+    if (aorai_intermediate_state_2 == 1) 
+      if (aorai_counter < 2) aorai_counter ++;
     if (aorai_intermediate_state_0 == 1) aorai_counter = 1;
     if (aorai_intermediate_state == 1) aorai_counter = 1;
     aorai_intermediate_state_2_tmp = 0;
@@ -567,7 +573,8 @@ void g(void)
     aorai_intermediate_state_1_tmp = 0;
     aorai_intermediate_state_0_tmp = 0;
     aorai_intermediate_state_tmp = 0;
-    if (aorai_intermediate_state_2 == 1 && 1 <= aorai_counter) Sf_tmp = 1;
+    if (aorai_intermediate_state_2 == 1) 
+      if (1 <= aorai_counter) Sf_tmp = 1; else Sf_tmp = 0;
     else Sf_tmp = 0;
     S0_tmp = 0;
     S0 = S0_tmp;
diff --git a/src/plugins/aorai/tests/ya/oracle/seq_loop.res.oracle b/src/plugins/aorai/tests/ya/oracle/seq_loop.res.oracle
index ea66b1d2bf7..eca76ebee16 100644
--- a/src/plugins/aorai/tests/ya/oracle/seq_loop.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/seq_loop.res.oracle
@@ -95,10 +95,14 @@ enum aorai_OpStatusList {
     aorai_intermediate_state_3_tmp = aorai_intermediate_state_3;
     aorai_intermediate_state_3_tmp = 0;
     aorai_intermediate_state_2_tmp = 0;
-    if (aorai_intermediate_state == 1 || aorai_intermediate_state_0 == 1 && 
-                                         aorai_counter < 5) aorai_intermediate_state_1_tmp = 1;
-    else aorai_intermediate_state_1_tmp = 0;
-    if (aorai_intermediate_state_0 == 1 && aorai_counter < 5) aorai_counter ++;
+    if (aorai_intermediate_state == 1) aorai_intermediate_state_1_tmp = 1;
+    else 
+      if (aorai_intermediate_state_0 == 1) 
+        if (aorai_counter < 5) aorai_intermediate_state_1_tmp = 1;
+        else aorai_intermediate_state_1_tmp = 0;
+      else aorai_intermediate_state_1_tmp = 0;
+    if (aorai_intermediate_state_0 == 1) 
+      if (aorai_counter < 5) aorai_counter ++;
     if (aorai_intermediate_state == 1) aorai_counter = 1;
     aorai_intermediate_state_0_tmp = 0;
     aorai_intermediate_state_tmp = 0;
@@ -544,9 +548,9 @@ void g(void)
     aorai_intermediate_state_1_tmp = 0;
     aorai_intermediate_state_0_tmp = 0;
     aorai_intermediate_state_tmp = 0;
-    if (aorai_intermediate_state == 1 || aorai_intermediate_state_0 == 1) 
-      Sf_tmp = 1;
-    else Sf_tmp = 0;
+    if (aorai_intermediate_state == 1) Sf_tmp = 1;
+    else 
+      if (aorai_intermediate_state_0 == 1) Sf_tmp = 1; else Sf_tmp = 0;
     S0_tmp = 0;
     S0 = S0_tmp;
     Sf = Sf_tmp;
diff --git a/src/plugins/aorai/tests/ya/oracle/serial.res.oracle b/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
index dbf366abac3..8d2600bdb03 100644
--- a/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/serial.res.oracle
@@ -276,7 +276,7 @@
 [eva:summary] ====== ANALYSIS SUMMARY ======
   ----------------------------------------------------------------------------
   11 functions analyzed (out of 11): 100% coverage.
-  In these functions, 206 statements reached (out of 261): 78% coverage.
+  In these functions, 273 statements reached (out of 339): 80% coverage.
   ----------------------------------------------------------------------------
   Some errors and warnings have been raised during the analysis:
     by the Eva analyzer:      0 errors    0 warnings
@@ -576,46 +576,123 @@ int n = 0;
     aorai_CurOperation = op_input_status;
     aorai_StatesHistory_2 = aorai_StatesHistory_1;
     aorai_StatesHistory_1 = aorai_CurStates;
-    if (18 == aorai_CurStates && ((res & 15) != 1 && (res & 1) != 0)) 
-      aorai_CurStates = StatusError;
-    else 
-      if (17 == aorai_CurStates && ((res & 15) != 1 && (res & 1) != 0)) 
-        aorai_CurStates = StatusError;
-      else 
-        if (16 == aorai_CurStates && ((res & 15) != 1 && (res & 1) != 0)) 
-          aorai_CurStates = StatusError;
-        else 
-          if (15 == aorai_CurStates && ((res & 15) != 1 && (res & 1) != 0)) 
-            aorai_CurStates = StatusError;
-          else 
-            if (14 == aorai_CurStates && ((res & 15) != 1 && (res & 1) != 0)) 
-              aorai_CurStates = StatusError;
-            else 
-              if (14 == aorai_CurStates && (res & 15) == 1) aorai_CurStates = StatusOk1;
-              else 
-                if (15 == aorai_CurStates && (res & 15) == 1) aorai_CurStates = StatusOk2;
-                else 
-                  if (16 == aorai_CurStates && (res & 15) == 1) aorai_CurStates = StatusOk3;
-                  else 
-                    if (17 == aorai_CurStates && (res & 15) == 1) aorai_CurStates = StatusOk4;
-                    else 
-                      if (18 == aorai_CurStates && (res & 15) == 1) aorai_CurStates = StatusOk5;
-                      else 
-                        if (14 == aorai_CurStates && (res & 1) == 0) 
-                          aorai_CurStates = Wait1;
-                        else 
-                          if (15 == aorai_CurStates && (res & 1) == 0) 
-                            aorai_CurStates = Wait2;
-                          else 
-                            if (16 == aorai_CurStates && (res & 1) == 0) 
-                              aorai_CurStates = Wait3;
-                            else 
-                              if (17 == aorai_CurStates && (res & 1) == 0) 
-                                aorai_CurStates = Wait4;
-                              else 
-                                if (18 == aorai_CurStates && (res & 1) == 0) 
-                                  aorai_CurStates = Wait5;
+    if (18 == aorai_CurStates) {
+      if ((res & 15) != 1) {
+        if ((res & 1) != 0) aorai_CurStates = StatusError;
+        else goto __aorai_label_12;
+      }
+      else goto __aorai_label_12;
+    }
+    else {
+      __aorai_label_12: ;
+      if (17 == aorai_CurStates) {
+        if ((res & 15) != 1) {
+          if ((res & 1) != 0) aorai_CurStates = StatusError;
+          else goto __aorai_label_11;
+        }
+        else goto __aorai_label_11;
+      }
+      else {
+        __aorai_label_11: ;
+        if (16 == aorai_CurStates) {
+          if ((res & 15) != 1) {
+            if ((res & 1) != 0) aorai_CurStates = StatusError;
+            else goto __aorai_label_10;
+          }
+          else goto __aorai_label_10;
+        }
+        else {
+          __aorai_label_10: ;
+          if (15 == aorai_CurStates) {
+            if ((res & 15) != 1) {
+              if ((res & 1) != 0) aorai_CurStates = StatusError;
+              else goto __aorai_label_9;
+            }
+            else goto __aorai_label_9;
+          }
+          else {
+            __aorai_label_9: ;
+            if (14 == aorai_CurStates) {
+              if ((res & 15) != 1) {
+                if ((res & 1) != 0) aorai_CurStates = StatusError;
+                else goto __aorai_label_8;
+              }
+              else goto __aorai_label_8;
+            }
+            else {
+              __aorai_label_8: ;
+              if (14 == aorai_CurStates) {
+                if ((res & 15) == 1) aorai_CurStates = StatusOk1;
+                else goto __aorai_label_7;
+              }
+              else {
+                __aorai_label_7: ;
+                if (15 == aorai_CurStates) {
+                  if ((res & 15) == 1) aorai_CurStates = StatusOk2;
+                  else goto __aorai_label_6;
+                }
+                else {
+                  __aorai_label_6: ;
+                  if (16 == aorai_CurStates) {
+                    if ((res & 15) == 1) aorai_CurStates = StatusOk3;
+                    else goto __aorai_label_5;
+                  }
+                  else {
+                    __aorai_label_5: ;
+                    if (17 == aorai_CurStates) {
+                      if ((res & 15) == 1) aorai_CurStates = StatusOk4;
+                      else goto __aorai_label_4;
+                    }
+                    else {
+                      __aorai_label_4: ;
+                      if (18 == aorai_CurStates) {
+                        if ((res & 15) == 1) aorai_CurStates = StatusOk5;
+                        else goto __aorai_label_3;
+                      }
+                      else {
+                        __aorai_label_3: ;
+                        if (14 == aorai_CurStates) {
+                          if ((res & 1) == 0) aorai_CurStates = Wait1;
+                          else goto __aorai_label_2;
+                        }
+                        else {
+                          __aorai_label_2: ;
+                          if (15 == aorai_CurStates) {
+                            if ((res & 1) == 0) aorai_CurStates = Wait2;
+                            else goto __aorai_label_1;
+                          }
+                          else {
+                            __aorai_label_1: ;
+                            if (16 == aorai_CurStates) {
+                              if ((res & 1) == 0) aorai_CurStates = Wait3;
+                              else goto __aorai_label_0;
+                            }
+                            else {
+                              __aorai_label_0: ;
+                              if (17 == aorai_CurStates) {
+                                if ((res & 1) == 0) aorai_CurStates = Wait4;
+                                else goto __aorai_label;
+                              }
+                              else {
+                                __aorai_label: ;
+                                if (18 == aorai_CurStates) 
+                                  if ((res & 1) == 0) aorai_CurStates = Wait5;
+                                  else aorai_CurStates = aorai_reject;
                                 else aorai_CurStates = aorai_reject;
+                              }
+                            }
+                          }
+                        }
+                      }
+                    }
+                  }
+                }
+              }
+            }
+          }
+        }
+      }
+    }
     /@ assert Aorai: aorai_smoke_test: aorai_CurStates ≢ aorai_reject; @/
     ;
     return;
@@ -682,54 +759,121 @@ int input_status(void)
     aorai_CurOperation = op_input_data;
     aorai_StatesHistory_2 = aorai_StatesHistory_1;
     aorai_StatesHistory_1 = aorai_CurStates;
-    if (5 == aorai_CurStates && (res & 128) == 0) {
-      aorai_CurStates = Complete;
-      aorai_y2 = res;
+    if (5 == aorai_CurStates) {
+      if ((res & 128) == 0) {
+        aorai_CurStates = Complete;
+        aorai_y2 = res;
+      }
+      else goto __aorai_label_26;
     }
     else 
+      __aorai_label_26:
       if (6 == aorai_CurStates) aorai_CurStates = Wait1;
       else 
-        if (5 == aorai_CurStates && (res & 192) == 192) aorai_CurStates = Wait1;
-        else 
-          if (4 == aorai_CurStates && (res & 192) == 192) aorai_CurStates = Wait1;
-          else 
-            if (3 == aorai_CurStates && (res & 192) == 192) aorai_CurStates = Wait1;
-            else 
-              if (2 == aorai_CurStates && (res & 192) == 192) aorai_CurStates = Wait1;
-              else 
-                if (1 == aorai_CurStates && (res & 128) == 0) aorai_CurStates = Wait1;
-                else 
-                  if (1 == aorai_CurStates && (res & 192) == 192) aorai_CurStates = Wait1;
-                  else 
-                    if (5 == aorai_CurStates && (res & 192) == 128) aorai_CurStates = Wait2;
-                    else 
-                      if (4 == aorai_CurStates && (res & 192) == 128) 
-                        aorai_CurStates = Wait2;
-                      else 
-                        if (3 == aorai_CurStates && (res & 192) == 128) 
-                          aorai_CurStates = Wait2;
-                        else 
-                          if (2 == aorai_CurStates && (res & 192) == 128) 
-                            aorai_CurStates = Wait2;
-                          else 
-                            if (1 == aorai_CurStates && (res & 192) == 128) 
-                              aorai_CurStates = Wait2;
-                            else 
-                              if (2 == aorai_CurStates && (res & 128) == 0) {
-                                aorai_CurStates = Wait3;
-                                aorai_x1 = res;
-                              }
-                              else 
-                                if (3 == aorai_CurStates && (res & 128) == 0) {
-                                  aorai_CurStates = Wait4;
-                                  aorai_x2 = res;
+        if (5 == aorai_CurStates) {
+          if ((res & 192) == 192) aorai_CurStates = Wait1;
+          else goto __aorai_label_25;
+        }
+        else {
+          __aorai_label_25: ;
+          if (4 == aorai_CurStates) {
+            if ((res & 192) == 192) aorai_CurStates = Wait1;
+            else goto __aorai_label_24;
+          }
+          else {
+            __aorai_label_24: ;
+            if (3 == aorai_CurStates) {
+              if ((res & 192) == 192) aorai_CurStates = Wait1;
+              else goto __aorai_label_23;
+            }
+            else {
+              __aorai_label_23: ;
+              if (2 == aorai_CurStates) {
+                if ((res & 192) == 192) aorai_CurStates = Wait1;
+                else goto __aorai_label_22;
+              }
+              else {
+                __aorai_label_22: ;
+                if (1 == aorai_CurStates) {
+                  if ((res & 128) == 0) aorai_CurStates = Wait1;
+                  else goto __aorai_label_21;
+                }
+                else {
+                  __aorai_label_21: ;
+                  if (1 == aorai_CurStates) {
+                    if ((res & 192) == 192) aorai_CurStates = Wait1;
+                    else goto __aorai_label_20;
+                  }
+                  else {
+                    __aorai_label_20: ;
+                    if (5 == aorai_CurStates) {
+                      if ((res & 192) == 128) aorai_CurStates = Wait2;
+                      else goto __aorai_label_19;
+                    }
+                    else {
+                      __aorai_label_19: ;
+                      if (4 == aorai_CurStates) {
+                        if ((res & 192) == 128) aorai_CurStates = Wait2;
+                        else goto __aorai_label_18;
+                      }
+                      else {
+                        __aorai_label_18: ;
+                        if (3 == aorai_CurStates) {
+                          if ((res & 192) == 128) aorai_CurStates = Wait2;
+                          else goto __aorai_label_17;
+                        }
+                        else {
+                          __aorai_label_17: ;
+                          if (2 == aorai_CurStates) {
+                            if ((res & 192) == 128) aorai_CurStates = Wait2;
+                            else goto __aorai_label_16;
+                          }
+                          else {
+                            __aorai_label_16: ;
+                            if (1 == aorai_CurStates) {
+                              if ((res & 192) == 128) aorai_CurStates = Wait2;
+                              else goto __aorai_label_15;
+                            }
+                            else {
+                              __aorai_label_15: ;
+                              if (2 == aorai_CurStates) {
+                                if ((res & 128) == 0) {
+                                  aorai_CurStates = Wait3;
+                                  aorai_x1 = res;
                                 }
-                                else 
-                                  if (4 == aorai_CurStates && (res & 128) == 0) {
-                                    aorai_CurStates = Wait5;
-                                    aorai_y1 = res;
+                                else goto __aorai_label_14;
+                              }
+                              else {
+                                __aorai_label_14: ;
+                                if (3 == aorai_CurStates) {
+                                  if ((res & 128) == 0) {
+                                    aorai_CurStates = Wait4;
+                                    aorai_x2 = res;
                                   }
+                                  else goto __aorai_label_13;
+                                }
+                                else {
+                                  __aorai_label_13: ;
+                                  if (4 == aorai_CurStates) 
+                                    if ((res & 128) == 0) {
+                                      aorai_CurStates = Wait5;
+                                      aorai_y1 = res;
+                                    }
+                                    else aorai_CurStates = aorai_reject;
                                   else aorai_CurStates = aorai_reject;
+                                }
+                              }
+                            }
+                          }
+                        }
+                      }
+                    }
+                  }
+                }
+              }
+            }
+          }
+        }
     /@ assert Aorai: aorai_smoke_test: aorai_CurStates ≢ aorai_reject; @/
     ;
     return;
@@ -781,18 +925,21 @@ int input_data(void)
                       else 
                         if (8 == aorai_CurStates) aorai_CurStates = Error;
                         else 
-                          if (0 == aorai_CurStates && (y != aorai_y1 + 
-                                                            128 * aorai_y2 || 
-                                                       x != aorai_x1 + 
-                                                            128 * aorai_x2)) 
-                            aorai_CurStates = Error;
-                          else 
-                            if (0 == aorai_CurStates && (x == aorai_x1 + 
-                                                              128 * aorai_x2 && 
-                                                         y == aorai_y1 + 
-                                                              128 * aorai_y2)) 
-                              aorai_CurStates = Wait1;
+                          if (0 == aorai_CurStates) {
+                            if (y != aorai_y1 + 128 * aorai_y2) aorai_CurStates = Error;
+                            else 
+                              if (x != aorai_x1 + 128 * aorai_x2) aorai_CurStates = Error;
+                              else goto __aorai_label_27;
+                          }
+                          else {
+                            __aorai_label_27: ;
+                            if (0 == aorai_CurStates) 
+                              if (x == aorai_x1 + 128 * aorai_x2) 
+                                if (y == aorai_y1 + 128 * aorai_y2) aorai_CurStates = Wait1;
+                                else aorai_CurStates = aorai_reject;
+                              else aorai_CurStates = aorai_reject;
                             else aorai_CurStates = aorai_reject;
+                          }
     /@ assert Aorai: aorai_smoke_test: aorai_CurStates ≢ aorai_reject; @/
     ;
     return;
diff --git a/src/plugins/aorai/tests/ya/oracle/stack.res.oracle b/src/plugins/aorai/tests/ya/oracle/stack.res.oracle
index 1c87bd33576..07be92bb84c 100644
--- a/src/plugins/aorai/tests/ya/oracle/stack.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/stack.res.oracle
@@ -219,7 +219,9 @@ void push(void)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Called;
     aorai_CurOperation = op_pop;
-    if (4 == aorai_CurStates && aorai_n > 0) aorai_CurStates = emptying_stack;
+    if (4 == aorai_CurStates) 
+      if (aorai_n > 0) aorai_CurStates = emptying_stack;
+      else aorai_CurStates = aorai_reject;
     else aorai_CurStates = aorai_reject;
     return;
   }
@@ -277,16 +279,23 @@ void push(void)
     /@ slevel full; @/
     aorai_CurOpStatus = aorai_Terminated;
     aorai_CurOperation = op_pop;
-    if (3 == aorai_CurStates && aorai_n == 1) {
-      aorai_CurStates = empty_stack;
-      aorai_n --;
-    }
-    else 
-      if (3 == aorai_CurStates && aorai_n > 1) {
-        aorai_CurStates = filled_stack;
+    if (3 == aorai_CurStates) {
+      if (aorai_n == 1) {
+        aorai_CurStates = empty_stack;
         aorai_n --;
       }
+      else goto __aorai_label;
+    }
+    else {
+      __aorai_label: ;
+      if (3 == aorai_CurStates) 
+        if (aorai_n > 1) {
+          aorai_CurStates = filled_stack;
+          aorai_n --;
+        }
+        else aorai_CurStates = aorai_reject;
       else aorai_CurStates = aorai_reject;
+    }
     return;
   }
 
diff --git a/src/plugins/aorai/tests/ya/oracle/test_acces_params.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_acces_params.res.oracle
index 72d1dbd1b70..612b29ad3f4 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_acces_params.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_acces_params.res.oracle
@@ -76,7 +76,9 @@ int rr = 1;
     SF_tmp = 0;
     S4_tmp = 0;
     S3_tmp = 0;
-    if (S1 == 1 && i >= 0) S2_tmp = 1; else S2_tmp = 0;
+    if (S1 == 1) 
+      if (i >= 0) S2_tmp = 1; else S2_tmp = 0;
+    else S2_tmp = 0;
     S1_tmp = 0;
     S1 = S1_tmp;
     S2 = S2_tmp;
@@ -294,7 +296,9 @@ void opa(int i, int j)
     SF_tmp = SF;
     mainst_tmp = mainst;
     mainst_tmp = 0;
-    if (S4 == 1 && res > 0) SF_tmp = 1; else SF_tmp = 0;
+    if (S4 == 1) 
+      if (res > 0) SF_tmp = 1; else SF_tmp = 0;
+    else SF_tmp = 0;
     S4_tmp = 0;
     S3_tmp = 0;
     S2_tmp = 0;
diff --git a/src/plugins/aorai/tests/ya/oracle/test_acces_params2.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_acces_params2.res.oracle
index f20db94ee5b..af3a8336223 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_acces_params2.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_acces_params2.res.oracle
@@ -82,7 +82,9 @@ int rr = 1;
     S6_tmp = 0;
     S5_tmp = 0;
     S4_tmp = 0;
-    if (S2 == 1 && r >= 0) S3_tmp = 1; else S3_tmp = 0;
+    if (S2 == 1) 
+      if (r >= 0) S3_tmp = 1; else S3_tmp = 0;
+    else S3_tmp = 0;
     S2_tmp = 0;
     S1_tmp = 0;
     S1 = S1_tmp;
@@ -155,7 +157,9 @@ int rr = 1;
     S7_tmp = 0;
     S6_tmp = 0;
     S5_tmp = 0;
-    if (S3 == 1 && res <= 5000) S4_tmp = 1; else S4_tmp = 0;
+    if (S3 == 1) 
+      if (res <= 5000) S4_tmp = 1; else S4_tmp = 0;
+    else S4_tmp = 0;
     S3_tmp = 0;
     S2_tmp = 0;
     S1_tmp = 0;
diff --git a/src/plugins/aorai/tests/ya/oracle/test_boucle_rechercheTableau.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_boucle_rechercheTableau.res.oracle
index d9e7db7f803..028e8111075 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_boucle_rechercheTableau.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_boucle_rechercheTableau.res.oracle
@@ -98,9 +98,13 @@ enum aorai_OpStatusList {
     End_tmp = End;
     Idle_tmp = Idle;
     WillDoFoo_tmp = WillDoFoo;
-    if (Idle == 1 && res == -1) WillDoFoo_tmp = 1; else WillDoFoo_tmp = 0;
+    if (Idle == 1) 
+      if (res == -1) WillDoFoo_tmp = 1; else WillDoFoo_tmp = 0;
+    else WillDoFoo_tmp = 0;
     Idle_tmp = 0;
-    if (Idle == 1 && res != -1) End_tmp = 1; else End_tmp = 0;
+    if (Idle == 1) 
+      if (res != -1) End_tmp = 1; else End_tmp = 0;
+    else End_tmp = 0;
     End = End_tmp;
     Idle = Idle_tmp;
     WillDoFoo = WillDoFoo_tmp;
diff --git a/src/plugins/aorai/tests/ya/oracle/test_factorial.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_factorial.res.oracle
index ed5f20033ad..b174e49f3f3 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_factorial.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_factorial.res.oracle
@@ -216,7 +216,9 @@ int decode_int(char *s)
     S2_tmp = S2;
     main_0_tmp = main_0;
     main_0_tmp = 0;
-    if (S1 == 1 || S2 == 1) S2_tmp = 1; else S2_tmp = 0;
+    if (S1 == 1) S2_tmp = 1;
+    else 
+      if (S2 == 1) S2_tmp = 1; else S2_tmp = 0;
     S1_tmp = 0;
     S1 = S1_tmp;
     S2 = S2_tmp;
@@ -263,8 +265,12 @@ int decode_int(char *s)
     S2_tmp = S2;
     main_0_tmp = main_0;
     main_0_tmp = 0;
-    if (S1 == 1 || S2 == 1) S2_tmp = 1; else S2_tmp = 0;
-    if (S1 == 1 || S2 == 1) S1_tmp = 1; else S1_tmp = 0;
+    if (S1 == 1) S2_tmp = 1;
+    else 
+      if (S2 == 1) S2_tmp = 1; else S2_tmp = 0;
+    if (S1 == 1) S1_tmp = 1;
+    else 
+      if (S2 == 1) S1_tmp = 1; else S1_tmp = 0;
     S1 = S1_tmp;
     S2 = S2_tmp;
     main_0 = main_0_tmp;
diff --git a/src/plugins/aorai/tests/ya/oracle/test_recursion4.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_recursion4.res.oracle
index 3f9a007d776..650a1625271 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_recursion4.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_recursion4.res.oracle
@@ -101,11 +101,25 @@ enum aorai_OpStatusList {
     End_tmp = End;
     Idle_tmp = Idle;
     WillDoFoo_tmp = WillDoFoo;
-    if (Idle == 1 && res == -1 || WillDoFoo == 1 && res == -1) WillDoFoo_tmp = 1;
-    else WillDoFoo_tmp = 0;
+    if (Idle == 1) {
+      if (res == -1) WillDoFoo_tmp = 1; else goto __aorai_label_0;
+    }
+    else {
+      __aorai_label_0: ;
+      if (WillDoFoo == 1) 
+        if (res == -1) WillDoFoo_tmp = 1; else WillDoFoo_tmp = 0;
+      else WillDoFoo_tmp = 0;
+    }
     Idle_tmp = 0;
-    if (End == 1 && res != -1 || Idle == 1 && res != -1) End_tmp = 1;
-    else End_tmp = 0;
+    if (End == 1) {
+      if (res != -1) End_tmp = 1; else goto __aorai_label;
+    }
+    else {
+      __aorai_label: ;
+      if (Idle == 1) 
+        if (res != -1) End_tmp = 1; else End_tmp = 0;
+      else End_tmp = 0;
+    }
     End = End_tmp;
     Idle = Idle_tmp;
     WillDoFoo = WillDoFoo_tmp;
diff --git a/src/plugins/aorai/tests/ya/oracle/test_recursion5.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_recursion5.res.oracle
index b3d197570e7..c4af634f2de 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_recursion5.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_recursion5.res.oracle
@@ -124,10 +124,24 @@ enum aorai_OpStatusList {
     Idle_tmp = Idle;
     IgnoreFoo_tmp = IgnoreFoo;
     WillDoFoo_tmp = WillDoFoo;
-    if (Idle == 1 && res == -1 || WillDoFoo == 1 && res == -1) WillDoFoo_tmp = 1;
-    else WillDoFoo_tmp = 0;
-    if (Idle == 1 && res != -1 || IgnoreFoo == 1 && res != -1) IgnoreFoo_tmp = 1;
-    else IgnoreFoo_tmp = 0;
+    if (Idle == 1) {
+      if (res == -1) WillDoFoo_tmp = 1; else goto __aorai_label_0;
+    }
+    else {
+      __aorai_label_0: ;
+      if (WillDoFoo == 1) 
+        if (res == -1) WillDoFoo_tmp = 1; else WillDoFoo_tmp = 0;
+      else WillDoFoo_tmp = 0;
+    }
+    if (Idle == 1) {
+      if (res != -1) IgnoreFoo_tmp = 1; else goto __aorai_label;
+    }
+    else {
+      __aorai_label: ;
+      if (IgnoreFoo == 1) 
+        if (res != -1) IgnoreFoo_tmp = 1; else IgnoreFoo_tmp = 0;
+      else IgnoreFoo_tmp = 0;
+    }
     Idle_tmp = 0;
     End_tmp = 0;
     End = End_tmp;
@@ -281,11 +295,14 @@ int isPresentRec(int *t, int i, int max, int val)
     Idle_tmp = Idle;
     IgnoreFoo_tmp = IgnoreFoo;
     WillDoFoo_tmp = WillDoFoo;
-    if (WillDoFoo == 1 && res == -1) WillDoFoo_tmp = 1;
+    if (WillDoFoo == 1) 
+      if (res == -1) WillDoFoo_tmp = 1; else WillDoFoo_tmp = 0;
     else WillDoFoo_tmp = 0;
     IgnoreFoo_tmp = 0;
     Idle_tmp = 0;
-    if (IgnoreFoo == 1 && res != -1) End_tmp = 1; else End_tmp = 0;
+    if (IgnoreFoo == 1) 
+      if (res != -1) End_tmp = 1; else End_tmp = 0;
+    else End_tmp = 0;
     End = End_tmp;
     Idle = Idle_tmp;
     IgnoreFoo = IgnoreFoo_tmp;
diff --git a/src/plugins/aorai/tests/ya/oracle/test_struct.res.oracle b/src/plugins/aorai/tests/ya/oracle/test_struct.res.oracle
index fa0bb669fc7..3ba01477c27 100644
--- a/src/plugins/aorai/tests/ya/oracle/test_struct.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle/test_struct.res.oracle
@@ -47,7 +47,9 @@ int myAge = 0;
     S1_tmp = S1;
     main_0_tmp = main_0;
     main_0_tmp = 0;
-    if (S1 == 1 && nobody.Age == 1) S1_tmp = 1; else S1_tmp = 0;
+    if (S1 == 1) 
+      if (nobody.Age == 1) S1_tmp = 1; else S1_tmp = 0;
+    else S1_tmp = 0;
     S1 = S1_tmp;
     main_0 = main_0_tmp;
     return;
@@ -83,7 +85,9 @@ int myAge = 0;
     S1_tmp = S1;
     main_0_tmp = main_0;
     main_0_tmp = 0;
-    if (S1 == 1 && nobody.Age == 1) S1_tmp = 1; else S1_tmp = 0;
+    if (S1 == 1) 
+      if (nobody.Age == 1) S1_tmp = 1; else S1_tmp = 0;
+    else S1_tmp = 0;
     S1 = S1_tmp;
     main_0 = main_0_tmp;
     return;
@@ -136,7 +140,9 @@ void increment(void)
     S1_tmp = S1;
     main_0_tmp = main_0;
     main_0_tmp = 0;
-    if (main_0 == 1 && nobody.Age == 0) S1_tmp = 1; else S1_tmp = 0;
+    if (main_0 == 1) 
+      if (nobody.Age == 0) S1_tmp = 1; else S1_tmp = 0;
+    else S1_tmp = 0;
     S1 = S1_tmp;
     main_0 = main_0_tmp;
     return;
@@ -172,7 +178,9 @@ void increment(void)
     S1_tmp = S1;
     main_0_tmp = main_0;
     main_0_tmp = 0;
-    if (S1 == 1 && nobody.Age == 1) S1_tmp = 1; else S1_tmp = 0;
+    if (S1 == 1) 
+      if (nobody.Age == 1) S1_tmp = 1; else S1_tmp = 0;
+    else S1_tmp = 0;
     S1 = S1_tmp;
     main_0 = main_0_tmp;
     return;
-- 
GitLab


From 87aeae56c6866b980faa11188a86d0d1a04aa2fc Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Fri, 12 Feb 2021 15:55:38 +0100
Subject: [PATCH 091/141] [aorai] simplify logic operator normalization

---
 src/plugins/aorai/aorai_utils.ml | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/src/plugins/aorai/aorai_utils.ml b/src/plugins/aorai/aorai_utils.ml
index 2acc111a6f0..7f82b59785a 100644
--- a/src/plugins/aorai/aorai_utils.ml
+++ b/src/plugins/aorai/aorai_utils.ml
@@ -2004,20 +2004,16 @@ let normalize_condition loc cond block1 block2 =
     | UnOp(LNot,e,_) -> aux e b2 b1
     | BinOp(LAnd,e1,e2,_) ->
       let b2' = mk_goto loc b2 in
-      let b1'= aux e2 b1 b2' in
+      let b1'= Cil.mkBlock [aux e2 b1 b2'] in
       aux e1 b1' b2
     | BinOp(LOr,e1,e2,_) ->
       let b1' = mk_goto loc b1 in
-      let b2' = aux e2 b1' b2 in
+      let b2' = Cil.mkBlock [aux e2 b1' b2] in
       aux e1 b1 b2'
     | _ ->
-      Cil.mkBlock [ Cil.mkStmt ~ghost:true (If(cond,b1,b2,loc)) ]
+      Cil.mkStmt ~ghost:true (If(cond,b1,b2,loc))
   in
-  let b = aux cond block1 block2 in
-  match b.bstmts with
-  | [] -> Aorai_option.fatal "If normalization failed"
-  | [ s ] -> s
-  | _ -> Cil.mkStmt ~ghost:true (Block b)
+  aux cond block1 block2
 
 let mkIfStmt loc exp1 block1 block2 =
   if Kernel.LogicalOperators.get() then
-- 
GitLab


From 17548910184a91f24a5dd9e365af3dc2d50ccacf Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Fri, 12 Feb 2021 20:04:52 +0100
Subject: [PATCH 092/141] [aorai] update oracles for prove config

---
 src/plugins/aorai/tests/ltl/oracle_prove/test_boucle.res.oracle | 2 +-
 .../aorai/tests/ya/oracle_prove/logical_operators.res.oracle    | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle.res.oracle b/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle.res.oracle
index e3d5ec00773..db979fdb7c8 100644
--- a/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle.res.oracle
+++ b/src/plugins/aorai/tests/ltl/oracle_prove/test_boucle.res.oracle
@@ -3,5 +3,5 @@
   Calling undeclared function call_to_an_undefined_function. Old style K&R code?
 [kernel] Parsing TMPDIR/aorai_test_boucle_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
-[kernel:annot:missing-spec] TMPDIR/aorai_test_boucle_0.i:86: Warning: 
+[kernel:annot:missing-spec] TMPDIR/aorai_test_boucle_0.i:87: Warning: 
   Neither code nor specification for function call_to_an_undefined_function, generating default assigns from the prototype
diff --git a/src/plugins/aorai/tests/ya/oracle_prove/logical_operators.res.oracle b/src/plugins/aorai/tests/ya/oracle_prove/logical_operators.res.oracle
index 4f152c30c54..6168c618fe7 100644
--- a/src/plugins/aorai/tests/ya/oracle_prove/logical_operators.res.oracle
+++ b/src/plugins/aorai/tests/ya/oracle_prove/logical_operators.res.oracle
@@ -1,4 +1,3 @@
 [kernel] Parsing tests/ya/logical_operators.i (no preprocessing)
-[aorai] Welcome to the Aorai plugin
 [kernel] Parsing TMPDIR/aorai_logical_operators_0.i (no preprocessing)
 [wp] Warning: Missing RTE guards
-- 
GitLab


From 3bf181184ab5315f3f333615be0fd3883f4789ac Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Fri, 12 Feb 2021 20:08:08 +0100
Subject: [PATCH 093/141] [aorai] better config for WP proofs

---
 src/plugins/aorai/tests/Aorai_test.ml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/plugins/aorai/tests/Aorai_test.ml b/src/plugins/aorai/tests/Aorai_test.ml
index 2e55921a891..5a1e9fb9bc0 100644
--- a/src/plugins/aorai/tests/Aorai_test.ml
+++ b/src/plugins/aorai/tests/Aorai_test.ml
@@ -111,6 +111,8 @@ let extend () =
       if ProveAuxSpec.get () then begin
         if InternalWpShare.is_set() then
           Wp.Wp_parameters.Share.set (InternalWpShare.get());
+        Wp.Wp_parameters.Split.on();
+        Wp.Wp_parameters.SplitMax.set 32;
         Wp.Wp_parameters.Verbose.set 0;
         Globals.Functions.iter check_auto_func;
       end else begin
-- 
GitLab


From 9b68245c34fda545468121faa06878ab49c7caa1 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Mon, 15 Feb 2021 15:27:24 +0100
Subject: [PATCH 094/141] [configure] add missing dependencies towards Server
 plugin

---
 configure.in                    | 1 +
 src/plugins/dive/configure.ac   | 1 +
 src/plugins/studia/configure.ac | 1 +
 3 files changed, 3 insertions(+)

diff --git a/configure.in b/configure.in
index f9f82982205..1b8b1e46225 100644
--- a/configure.in
+++ b/configure.in
@@ -857,6 +857,7 @@ check_plugin(eva,src/plugins/value,
 plugin_use(eva,gui)
 plugin_use(eva,scope)
 plugin_use(eva,callgraph)
+plugin_require(eva,server)
 
 ####################
 # External plugins #
diff --git a/src/plugins/dive/configure.ac b/src/plugins/dive/configure.ac
index dddb5ed24e2..edb290cdabc 100644
--- a/src/plugins/dive/configure.ac
+++ b/src/plugins/dive/configure.ac
@@ -39,6 +39,7 @@ check_plugin(dive,PLUGIN_RELATIVE_PATH(plugin_file),
 
 plugin_require(dive,eva)
 plugin_require(dive,studia)
+plugin_require(dive,server)
 #plugin_use(dive,usable_plugin_but_not_mandatory)
 
 check_plugin_dependencies
diff --git a/src/plugins/studia/configure.ac b/src/plugins/studia/configure.ac
index b4d031aab1a..0d646f6e1bd 100644
--- a/src/plugins/studia/configure.ac
+++ b/src/plugins/studia/configure.ac
@@ -39,6 +39,7 @@ check_plugin(studia,PLUGIN_RELATIVE_PATH(plugin_file),
              [support for studia plug-in],yes)
 
 plugin_require(studia,eva)
+plugin_require(studia,server)
 
 #######################
 # Generating Makefile #
-- 
GitLab


From 866740621a4cda9cb4008bc5f5d17a739daeb4e2 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Mon, 15 Feb 2021 15:43:00 +0100
Subject: [PATCH 095/141] [configure] fix dependency: impact requires slicing

---
 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.in b/configure.in
index 1b8b1e46225..1e63553354a 100644
--- a/configure.in
+++ b/configure.in
@@ -766,7 +766,7 @@ plugin_use_external(gui,dot)
 check_plugin(impact,src/plugins/impact,[support for impact plugin],yes)
 
 plugin_use(impact,gui)
-plugin_use(impact,slicing)
+plugin_require(impact,slicing)
 plugin_require(impact,pdg)
 plugin_require(impact,eva)
 plugin_require(impact,inout)
-- 
GitLab


From 12c9352354b213d283eabb0f018f6e3e3b3190ea Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Mon, 15 Feb 2021 16:26:03 +0100
Subject: [PATCH 096/141] [configure] fix dependency: eva requires callgraph

---
 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.in b/configure.in
index 1e63553354a..0d6550cc285 100644
--- a/configure.in
+++ b/configure.in
@@ -856,7 +856,7 @@ check_plugin(eva,src/plugins/value,
              [support for value analysis],yes)
 plugin_use(eva,gui)
 plugin_use(eva,scope)
-plugin_use(eva,callgraph)
+plugin_require(eva,callgraph)
 plugin_require(eva,server)
 
 ####################
-- 
GitLab


From 36b754ced044f3a5d5f4b23aba4c49e5c2ed417d Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Mon, 15 Feb 2021 16:26:14 +0100
Subject: [PATCH 097/141] [configure] fix dependency: slicing requires
 sparecode

---
 configure.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configure.in b/configure.in
index 0d6550cc285..af127c049ee 100644
--- a/configure.in
+++ b/configure.in
@@ -832,6 +832,7 @@ plugin_require(slicing,from_analysis)
 plugin_require(slicing,pdg)
 plugin_require(slicing,eva)
 plugin_require(slicing,callgraph)
+plugin_require(slicing,sparecode)
 plugin_use(slicing,gui)
 
 # spare code
-- 
GitLab


From e9b490ae5e76fec3b6cfbdb435420dc3d89db96b Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Mon, 15 Feb 2021 16:29:13 +0100
Subject: [PATCH 098/141] [configure] fix dependency: sparecode requires users

---
 configure.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configure.in b/configure.in
index af127c049ee..b30e87b5c7f 100644
--- a/configure.in
+++ b/configure.in
@@ -842,6 +842,7 @@ check_plugin(sparecode,src/plugins/sparecode,
              [support for sparecode plugin],yes)
 plugin_require(sparecode,pdg)
 plugin_require(sparecode,eva)
+plugin_require(sparecode,users)
 
 # users
 #######
-- 
GitLab


From adcb06b933dc856aa3e278e6865e1fdac51d0242 Mon Sep 17 00:00:00 2001
From: Allan Blanchard <allan.blanchard@cea.fr>
Date: Mon, 15 Feb 2021 15:02:18 +0100
Subject: [PATCH 099/141] [kernel] Fixes attribute annotations for formals

---
 src/kernel_internals/parsing/cparser.mly     | 2 +-
 tests/spec/ghost_attribute.i                 | 3 +++
 tests/spec/oracle/ghost_attribute.res.oracle | 9 +++++++++
 3 files changed, 13 insertions(+), 1 deletion(-)
 create mode 100644 tests/spec/ghost_attribute.i
 create mode 100644 tests/spec/oracle/ghost_attribute.res.oracle

diff --git a/src/kernel_internals/parsing/cparser.mly b/src/kernel_internals/parsing/cparser.mly
index 26a08877642..11d9ae4dbcd 100644
--- a/src/kernel_internals/parsing/cparser.mly
+++ b/src/kernel_internals/parsing/cparser.mly
@@ -1528,7 +1528,7 @@ attribute:
 |   VOLATILE              { ("volatile",[]), $1 }
 |   GHOST                 { ("ghost",[]), $1 }
 |   ATTRIBUTE_ANNOT       { let annot, loc = $1 in
-			    ("$annot:" ^ annot, []), loc }
+			    (Cil.mkAttrAnnot annot, []), loc }
 ;
 
 /* (* sm: I need something that just includes __attribute__ and nothing more,
diff --git a/tests/spec/ghost_attribute.i b/tests/spec/ghost_attribute.i
new file mode 100644
index 00000000000..c37c677382b
--- /dev/null
+++ b/tests/spec/ghost_attribute.i
@@ -0,0 +1,3 @@
+void foo(int* p /*@ my_attribute */){
+  int /*@ my_attribute */ v ;
+}
diff --git a/tests/spec/oracle/ghost_attribute.res.oracle b/tests/spec/oracle/ghost_attribute.res.oracle
new file mode 100644
index 00000000000..4a38d813d25
--- /dev/null
+++ b/tests/spec/oracle/ghost_attribute.res.oracle
@@ -0,0 +1,9 @@
+[kernel] Parsing tests/spec/ghost_attribute.i (no preprocessing)
+/* Generated by Frama-C */
+void foo(int *p /*@ my_attribute */)
+{
+  int /*@ my_attribute */ v;
+  return;
+}
+
+
-- 
GitLab


From 5a58b23c6d7ff41d1f2ac2aeaa7a75249e9b262a Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Mon, 8 Feb 2021 18:45:21 +0100
Subject: [PATCH 100/141] [headers] 2021 headers

---
 Makefile                                      |  2 +-
 Makefile.generating                           |  2 +-
 bin/frama-c                                   |  2 +-
 bin/frama-c-config                            |  2 +-
 bin/frama-c-gui                               |  2 +-
 bin/frama-c-gui.byte                          |  2 +-
 bin/frama-c-script                            |  2 +-
 bin/frama-c.byte                              |  2 +-
 bin/frama-c.debug                             |  2 +-
 bin/frama-c.top                               |  2 +-
 bin/local_export.sh                           |  2 +-
 bin/migration_scripts/aluminium2silicon.sh    |  2 +-
 bin/migration_scripts/boron2carbon.sh         |  2 +-
 bin/migration_scripts/calcium2scandium.sh     |  2 +-
 bin/migration_scripts/carbon2nitrogen.sh      |  2 +-
 bin/migration_scripts/chlorine2argon.sh       |  2 +-
 bin/migration_scripts/fluorine2neon.sh        |  2 +-
 bin/migration_scripts/lithium2beryllium.sh    |  2 +-
 bin/migration_scripts/magnesium2aluminium.sh  |  2 +-
 bin/migration_scripts/neon2sodium.sh          |  2 +-
 bin/migration_scripts/nitrogen2oxygen.sh      |  2 +-
 bin/migration_scripts/oxygen2fluorine.sh      |  2 +-
 bin/migration_scripts/phosphorus2sulfur.sh    |  2 +-
 bin/migration_scripts/potassium2calcium.sh    |  2 +-
 bin/migration_scripts/silicon2phosphorus.sh   |  2 +-
 bin/migration_scripts/sodium2magnesium.sh     |  2 +-
 bin/migration_scripts/sulfur2chlorine.sh      |  2 +-
 bin/migration_scripts/titanium2vanadium.sh    |  2 +-
 config.h.in                                   |  2 +-
 configure.in                                  |  2 +-
 doc/Makefile                                  |  2 +-
 doc/code/docgen.ml                            |  2 +-
 doc/code/intro_kernel_plugin.txt              |  2 +-
 doc/code/intro_occurrence.txt                 |  2 +-
 doc/code/intro_pdg.txt                        |  2 +-
 doc/code/intro_plugin.txt                     |  2 +-
 doc/code/intro_plugin_D_and_S.txt             |  2 +-
 doc/code/intro_plugin_default.txt             |  2 +-
 doc/code/intro_scope.txt                      |  2 +-
 doc/code/intro_slicing.txt                    |  2 +-
 doc/code/intro_sparecode.txt                  |  2 +-
 doc/code/style.css                            |  2 +-
 doc/code/toc_head.htm                         |  2 +-
 doc/code/toc_tail.htm                         |  2 +-
 headers/check-headers.sh                      |  2 +-
 headers/close-source/ACSL_EL                  |  2 +-
 headers/close-source/AORAI_LGPL               |  2 +-
 headers/close-source/CEA_INRIA_LGPL           |  2 +-
 headers/close-source/CEA_LGPL                 |  2 +-
 headers/close-source/CEA_LGPL_OR_PROPRIETARY  |  2 +-
 headers/close-source/CEA_PROPRIETARY          |  2 +-
 headers/close-source/CEA_WP                   |  2 +-
 headers/headache.sh                           |  2 +-
 headers/open-source/ACSL_EL                   |  2 +-
 headers/open-source/AORAI_LGPL                |  2 +-
 headers/open-source/CEA_INRIA_LGPL            |  2 +-
 headers/open-source/CEA_LGPL                  |  2 +-
 headers/open-source/CEA_LGPL_OR_PROPRIETARY   |  2 +-
 headers/open-source/CEA_PROPRIETARY           |  2 +-
 headers/open-source/CEA_WP                    |  2 +-
 headers/updates-headers.sh                    |  2 +-
 man/frama-c.1                                 |  2 +-
 ptests/ptests.ml                              |  2 +-
 share/Makefile.clean                          |  2 +-
 share/Makefile.common                         |  2 +-
 share/Makefile.config.in                      |  2 +-
 share/Makefile.dynamic                        |  2 +-
 share/Makefile.dynamic_config.external        |  2 +-
 share/Makefile.dynamic_config.internal        |  2 +-
 share/Makefile.generic                        |  2 +-
 share/Makefile.plugin.template                |  2 +-
 share/_frama-c                                |  2 +-
 share/analysis-scripts/analysis.mk            |  2 +-
 share/analysis-scripts/creduce.sh             |  2 +-
 share/analysis-scripts/epilogue.mk            |  2 +-
 share/analysis-scripts/list_functions.ml      | 22 +++++++++++++++++++
 share/analysis-scripts/prologue.mk            |  2 +-
 share/autocomplete_frama-c                    |  2 +-
 share/configure.ac                            |  2 +-
 share/emacs/acsl.el                           |  2 +-
 share/emacs/frama-c-dev.el                    |  2 +-
 share/emacs/frama-c-init.el                   |  2 +-
 share/emacs/frama-c-recommended.el            |  2 +-
 share/frama-c.Unix.rc                         |  2 +-
 share/frama-c.WIN32.rc                        |  2 +-
 share/libc.c                                  |  2 +-
 share/libc/__fc_alloc_axiomatic.h             |  2 +-
 share/libc/__fc_builtin.c                     |  2 +-
 share/libc/__fc_builtin.h                     |  2 +-
 share/libc/__fc_define_blkcnt_t.h             |  2 +-
 share/libc/__fc_define_blksize_t.h            |  2 +-
 share/libc/__fc_define_clockid_t.h            |  2 +-
 share/libc/__fc_define_dev_t.h                |  2 +-
 share/libc/__fc_define_eof.h                  |  2 +-
 share/libc/__fc_define_fd_set_t.h             |  2 +-
 share/libc/__fc_define_file.h                 |  2 +-
 share/libc/__fc_define_fpos_t.h               |  2 +-
 share/libc/__fc_define_id_t.h                 |  2 +-
 share/libc/__fc_define_ino_t.h                |  2 +-
 share/libc/__fc_define_intptr_t.h             |  2 +-
 share/libc/__fc_define_iovec.h                |  2 +-
 share/libc/__fc_define_key_t.h                |  2 +-
 share/libc/__fc_define_mode_t.h               |  2 +-
 share/libc/__fc_define_nlink_t.h              |  2 +-
 share/libc/__fc_define_null.h                 |  2 +-
 share/libc/__fc_define_off_t.h                |  2 +-
 share/libc/__fc_define_pid_t.h                |  2 +-
 share/libc/__fc_define_pthread_types.h        |  2 +-
 share/libc/__fc_define_sa_family_t.h          |  2 +-
 share/libc/__fc_define_seek_macros.h          |  2 +-
 share/libc/__fc_define_sigset_t.h             |  2 +-
 share/libc/__fc_define_size_t.h               |  2 +-
 share/libc/__fc_define_sockaddr.h             |  2 +-
 share/libc/__fc_define_ssize_t.h              |  2 +-
 share/libc/__fc_define_stat.h                 |  2 +-
 share/libc/__fc_define_suseconds_t.h          |  2 +-
 share/libc/__fc_define_time_t.h               |  2 +-
 share/libc/__fc_define_timer_t.h              |  2 +-
 share/libc/__fc_define_timespec.h             |  2 +-
 share/libc/__fc_define_uid_and_gid.h          |  2 +-
 share/libc/__fc_define_useconds_t.h           |  2 +-
 share/libc/__fc_define_wchar_t.h              |  2 +-
 share/libc/__fc_define_wint_t.h               |  2 +-
 share/libc/__fc_gcc_builtins.h                |  2 +-
 share/libc/__fc_inet.h                        |  2 +-
 share/libc/__fc_integer.h                     |  2 +-
 share/libc/__fc_machdep.h                     |  2 +-
 share/libc/__fc_machdep_linux_shared.h        |  2 +-
 share/libc/__fc_runtime.c                     |  2 +-
 share/libc/__fc_select.h                      |  2 +-
 share/libc/__fc_string_axiomatic.h            |  2 +-
 share/libc/alloca.h                           |  2 +-
 share/libc/arpa/inet.h                        |  2 +-
 share/libc/assert.c                           |  2 +-
 share/libc/assert.h                           |  2 +-
 share/libc/byteswap.h                         |  2 +-
 share/libc/complex.h                          |  2 +-
 share/libc/ctype.c                            |  2 +-
 share/libc/ctype.h                            |  2 +-
 share/libc/dirent.h                           |  2 +-
 share/libc/dlfcn.h                            |  2 +-
 share/libc/endian.h                           |  2 +-
 share/libc/errno.c                            |  2 +-
 share/libc/errno.h                            |  2 +-
 share/libc/fcntl.h                            |  2 +-
 share/libc/features.h                         |  2 +-
 share/libc/fenv.c                             |  2 +-
 share/libc/fenv.h                             |  2 +-
 share/libc/float.h                            |  2 +-
 share/libc/fnmatch.h                          |  2 +-
 share/libc/ftw.h                              |  2 +-
 share/libc/getopt.c                           |  2 +-
 share/libc/getopt.h                           |  2 +-
 share/libc/glob.c                             |  2 +-
 share/libc/glob.h                             |  2 +-
 share/libc/grp.h                              |  2 +-
 share/libc/iconv.h                            |  2 +-
 share/libc/ifaddrs.h                          |  2 +-
 share/libc/inttypes.c                         |  2 +-
 share/libc/inttypes.h                         |  2 +-
 share/libc/iso646.h                           |  2 +-
 share/libc/libgen.h                           |  2 +-
 share/libc/limits.h                           |  2 +-
 share/libc/locale.c                           |  2 +-
 share/libc/locale.h                           |  2 +-
 share/libc/malloc.h                           |  2 +-
 share/libc/math.c                             |  2 +-
 share/libc/math.h                             |  2 +-
 share/libc/memory.h                           |  2 +-
 share/libc/net/if.h                           |  2 +-
 share/libc/netdb.c                            |  2 +-
 share/libc/netdb.h                            |  2 +-
 share/libc/netinet/in.h                       |  2 +-
 share/libc/netinet/ip.h                       |  2 +-
 share/libc/netinet/tcp.h                      |  2 +-
 share/libc/nl_types.h                         |  2 +-
 share/libc/poll.h                             |  2 +-
 share/libc/pthread.h                          |  2 +-
 share/libc/pwd.h                              |  2 +-
 share/libc/regex.h                            |  2 +-
 share/libc/resolv.h                           |  2 +-
 share/libc/sched.h                            |  2 +-
 share/libc/semaphore.h                        |  2 +-
 share/libc/setjmp.h                           |  2 +-
 share/libc/signal.c                           |  2 +-
 share/libc/signal.h                           |  2 +-
 share/libc/stdarg.h                           |  2 +-
 share/libc/stdbool.h                          |  2 +-
 share/libc/stddef.h                           |  2 +-
 share/libc/stdint.h                           |  2 +-
 share/libc/stdio.c                            |  2 +-
 share/libc/stdio.h                            |  2 +-
 share/libc/stdlib.c                           |  2 +-
 share/libc/stdlib.h                           |  2 +-
 share/libc/string.c                           |  2 +-
 share/libc/string.h                           |  2 +-
 share/libc/strings.h                          |  2 +-
 share/libc/stropts.h                          |  2 +-
 share/libc/sys/file.h                         |  2 +-
 share/libc/sys/ioctl.h                        |  2 +-
 share/libc/sys/ipc.h                          |  2 +-
 share/libc/sys/mman.h                         |  2 +-
 share/libc/sys/param.h                        |  2 +-
 share/libc/sys/random.h                       |  2 +-
 share/libc/sys/resource.h                     |  2 +-
 share/libc/sys/select.h                       |  2 +-
 share/libc/sys/shm.h                          |  2 +-
 share/libc/sys/signal.h                       |  2 +-
 share/libc/sys/socket.h                       |  2 +-
 share/libc/sys/stat.h                         |  2 +-
 share/libc/sys/time.h                         |  2 +-
 share/libc/sys/times.h                        |  2 +-
 share/libc/sys/timex.h                        |  2 +-
 share/libc/sys/types.h                        |  2 +-
 share/libc/sys/uio.h                          |  2 +-
 share/libc/sys/un.h                           |  2 +-
 share/libc/sys/utsname.h                      |  2 +-
 share/libc/sys/wait.h                         |  2 +-
 share/libc/syslog.h                           |  2 +-
 share/libc/termios.h                          |  2 +-
 share/libc/tgmath.h                           |  2 +-
 share/libc/time.c                             |  2 +-
 share/libc/time.h                             |  2 +-
 share/libc/unistd.c                           |  2 +-
 share/libc/unistd.h                           |  2 +-
 share/libc/utime.h                            |  2 +-
 share/libc/utmpx.h                            |  2 +-
 share/libc/wchar.c                            |  2 +-
 share/libc/wchar.h                            |  2 +-
 share/libc/wctype.h                           |  2 +-
 .../parsing/check_logic_parser.ml             |  2 +-
 src/kernel_internals/parsing/logic_lexer.mli  |  2 +-
 src/kernel_internals/parsing/logic_lexer.mll  |  2 +-
 src/kernel_internals/parsing/logic_parser.mly |  2 +-
 .../parsing/logic_preprocess.mli              |  2 +-
 .../parsing/logic_preprocess.mll              |  2 +-
 src/kernel_internals/runtime/boot.ml          |  2 +-
 src/kernel_internals/runtime/dump_config.ml   |  2 +-
 src/kernel_internals/runtime/dump_config.mli  |  2 +-
 src/kernel_internals/runtime/fc_config.ml.in  |  2 +-
 src/kernel_internals/runtime/fc_config.mli    |  2 +-
 src/kernel_internals/runtime/frama_c_init.ml  |  2 +-
 src/kernel_internals/runtime/frama_c_init.mli |  2 +-
 src/kernel_internals/runtime/gui_init.ml      |  2 +-
 src/kernel_internals/runtime/gui_init.mli     |  2 +-
 src/kernel_internals/runtime/messages.ml      |  2 +-
 src/kernel_internals/runtime/messages.mli     |  2 +-
 src/kernel_internals/runtime/special_hooks.ml |  2 +-
 .../runtime/special_hooks.mli                 |  2 +-
 .../runtime/toplevel_config.ml                |  2 +-
 src/kernel_internals/typing/allocates.ml      |  2 +-
 src/kernel_internals/typing/allocates.mli     |  2 +-
 src/kernel_internals/typing/asm_contracts.ml  |  2 +-
 src/kernel_internals/typing/asm_contracts.mli |  2 +-
 src/kernel_internals/typing/ghost_accesses.ml |  2 +-
 .../typing/ghost_accesses.mli                 |  2 +-
 src/kernel_internals/typing/ghost_cfg.ml      |  2 +-
 src/kernel_internals/typing/ghost_cfg.mli     |  2 +-
 .../typing/infer_annotations.ml               |  2 +-
 .../typing/infer_annotations.mli              |  2 +-
 src/kernel_internals/typing/logic_builtin.ml  |  2 +-
 src/kernel_internals/typing/logic_builtin.mli |  2 +-
 .../typing/substitute_const_globals.ml        |  2 +-
 .../typing/substitute_const_globals.mli       |  2 +-
 .../typing/translate_lightweight.ml           |  2 +-
 .../typing/translate_lightweight.mli          |  2 +-
 src/kernel_internals/typing/unroll_loops.ml   |  2 +-
 src/kernel_internals/typing/unroll_loops.mli  |  2 +-
 .../abstract_interp/abstract_interp.ml        |  2 +-
 .../abstract_interp/abstract_interp.mli       |  2 +-
 src/kernel_services/abstract_interp/base.ml   |  2 +-
 src/kernel_services/abstract_interp/base.mli  |  2 +-
 src/kernel_services/abstract_interp/bottom.ml |  2 +-
 .../abstract_interp/bottom.mli                |  2 +-
 .../abstract_interp/eva_lattice_type.mli      |  2 +-
 .../abstract_interp/fc_float.ml               |  2 +-
 .../abstract_interp/fc_float.mli              |  2 +-
 .../abstract_interp/float_interval.ml         |  2 +-
 .../abstract_interp/float_interval.mli        |  2 +-
 .../abstract_interp/float_interval_sig.mli    |  2 +-
 .../abstract_interp/float_sig.mli             |  2 +-
 src/kernel_services/abstract_interp/fval.ml   |  2 +-
 src/kernel_services/abstract_interp/fval.mli  |  2 +-
 .../abstract_interp/int_Base.ml               |  2 +-
 .../abstract_interp/int_Base.mli              |  2 +-
 .../abstract_interp/int_Intervals.ml          |  2 +-
 .../abstract_interp/int_Intervals.mli         |  2 +-
 .../abstract_interp/int_Intervals_sig.mli     |  2 +-
 .../abstract_interp/int_interval.ml           |  2 +-
 .../abstract_interp/int_interval.mli          |  2 +-
 .../abstract_interp/int_set.ml                |  2 +-
 .../abstract_interp/int_set.mli               |  2 +-
 .../abstract_interp/int_val.ml                |  2 +-
 .../abstract_interp/int_val.mli               |  2 +-
 src/kernel_services/abstract_interp/ival.ml   |  2 +-
 src/kernel_services/abstract_interp/ival.mli  |  2 +-
 .../abstract_interp/lattice_messages.ml       |  2 +-
 .../abstract_interp/lattice_messages.mli      |  2 +-
 .../abstract_interp/lattice_type.mli          |  2 +-
 src/kernel_services/abstract_interp/lmap.ml   |  2 +-
 src/kernel_services/abstract_interp/lmap.mli  |  2 +-
 .../abstract_interp/lmap_bitwise.ml           |  2 +-
 .../abstract_interp/lmap_bitwise.mli          |  2 +-
 .../abstract_interp/lmap_sig.mli              |  2 +-
 .../abstract_interp/locations.ml              |  2 +-
 .../abstract_interp/locations.mli             |  2 +-
 .../abstract_interp/map_lattice.ml            |  2 +-
 .../abstract_interp/map_lattice.mli           |  2 +-
 .../abstract_interp/offsetmap.ml              |  2 +-
 .../abstract_interp/offsetmap.mli             |  2 +-
 .../abstract_interp/offsetmap_bitwise_sig.mli |  2 +-
 .../offsetmap_lattice_with_isotropy.mli       |  2 +-
 .../abstract_interp/offsetmap_sig.mli         |  2 +-
 src/kernel_services/abstract_interp/origin.ml |  2 +-
 .../abstract_interp/origin.mli                |  2 +-
 .../abstract_interp/tr_offset.ml              |  2 +-
 .../abstract_interp/tr_offset.mli             |  2 +-
 src/kernel_services/analysis/bit_utils.ml     |  2 +-
 src/kernel_services/analysis/bit_utils.mli    |  2 +-
 src/kernel_services/analysis/dataflow2.ml     |  2 +-
 src/kernel_services/analysis/dataflow2.mli    |  2 +-
 src/kernel_services/analysis/destructors.ml   |  2 +-
 src/kernel_services/analysis/destructors.mli  |  2 +-
 src/kernel_services/analysis/dominators.ml    |  2 +-
 src/kernel_services/analysis/dominators.mli   |  2 +-
 src/kernel_services/analysis/exn_flow.ml      |  2 +-
 src/kernel_services/analysis/exn_flow.mli     |  2 +-
 .../analysis/interpreted_automata.ml          |  2 +-
 .../analysis/interpreted_automata.mli         |  2 +-
 src/kernel_services/analysis/logic_interp.ml  |  2 +-
 src/kernel_services/analysis/logic_interp.mli |  2 +-
 src/kernel_services/analysis/loop.ml          |  2 +-
 src/kernel_services/analysis/loop.mli         |  2 +-
 src/kernel_services/analysis/ordered_stmt.ml  |  2 +-
 src/kernel_services/analysis/ordered_stmt.mli |  2 +-
 src/kernel_services/analysis/service_graph.ml |  2 +-
 .../analysis/service_graph.mli                |  2 +-
 src/kernel_services/analysis/stmts_graph.ml   |  2 +-
 src/kernel_services/analysis/stmts_graph.mli  |  2 +-
 .../analysis/undefined_sequence.ml            |  2 +-
 .../analysis/undefined_sequence.mli           |  2 +-
 src/kernel_services/analysis/wto_statement.ml |  2 +-
 .../analysis/wto_statement.mli                |  2 +-
 src/kernel_services/ast_data/alarms.ml        |  2 +-
 src/kernel_services/ast_data/alarms.mli       |  2 +-
 src/kernel_services/ast_data/annotations.ml   |  2 +-
 src/kernel_services/ast_data/annotations.mli  |  2 +-
 src/kernel_services/ast_data/ast.ml           |  2 +-
 src/kernel_services/ast_data/ast.mli          |  2 +-
 src/kernel_services/ast_data/globals.ml       |  2 +-
 src/kernel_services/ast_data/globals.mli      |  2 +-
 .../ast_data/kernel_function.ml               |  2 +-
 .../ast_data/kernel_function.mli              |  2 +-
 src/kernel_services/ast_data/property.ml      |  2 +-
 src/kernel_services/ast_data/property.mli     |  2 +-
 .../ast_data/property_status.ml               |  2 +-
 .../ast_data/property_status.mli              |  2 +-
 .../ast_data/statuses_by_call.ml              |  2 +-
 .../ast_data/statuses_by_call.mli             |  2 +-
 .../ast_printing/cabs_debug.ml                |  2 +-
 .../ast_printing/cabs_debug.mli               |  2 +-
 .../ast_printing/cil_descriptive_printer.ml   |  2 +-
 .../ast_printing/cil_descriptive_printer.mli  |  2 +-
 .../ast_printing/cil_printer.ml               |  2 +-
 .../ast_printing/cil_printer.mli              |  2 +-
 .../ast_printing/cil_types_debug.ml           |  2 +-
 .../ast_printing/cil_types_debug.mli          |  2 +-
 .../ast_printing/description.ml               |  2 +-
 .../ast_printing/description.mli              |  2 +-
 .../ast_printing/logic_print.ml               |  2 +-
 .../ast_printing/logic_print.mli              |  2 +-
 src/kernel_services/ast_printing/printer.ml   |  2 +-
 src/kernel_services/ast_printing/printer.mli  |  2 +-
 .../ast_printing/printer_api.mli              |  2 +-
 .../ast_printing/printer_builder.ml           |  2 +-
 .../ast_printing/printer_builder.mli          |  2 +-
 .../ast_printing/printer_tag.ml               |  2 +-
 .../ast_printing/printer_tag.mli              |  2 +-
 .../ast_queries/acsl_extension.ml             |  2 +-
 .../ast_queries/acsl_extension.mli            |  2 +-
 src/kernel_services/ast_queries/ast_info.ml   |  2 +-
 src/kernel_services/ast_queries/ast_info.mli  |  2 +-
 .../ast_queries/cil_datatype.ml               |  2 +-
 .../ast_queries/cil_datatype.mli              |  2 +-
 .../ast_queries/cil_state_builder.ml          |  2 +-
 .../ast_queries/cil_state_builder.mli         |  2 +-
 src/kernel_services/ast_queries/file.ml       |  2 +-
 src/kernel_services/ast_queries/file.mli      |  2 +-
 src/kernel_services/ast_queries/filecheck.ml  |  2 +-
 src/kernel_services/ast_queries/filecheck.mli |  2 +-
 .../ast_queries/json_compilation_database.ml  |  2 +-
 .../ast_queries/json_compilation_database.mli |  2 +-
 .../ast_queries/logic_const.ml                |  2 +-
 .../ast_queries/logic_const.mli               |  2 +-
 src/kernel_services/ast_queries/logic_env.ml  |  2 +-
 src/kernel_services/ast_queries/logic_env.mli |  2 +-
 .../ast_queries/logic_typing.ml               |  2 +-
 .../ast_queries/logic_typing.mli              |  2 +-
 .../ast_queries/logic_utils.ml                |  2 +-
 .../ast_queries/logic_utils.mli               |  2 +-
 .../ast_transformations/clone.ml              |  2 +-
 .../ast_transformations/clone.mli             |  2 +-
 .../ast_transformations/filter.ml             |  2 +-
 .../ast_transformations/filter.mli            |  2 +-
 .../ast_transformations/inline.ml             |  2 +-
 .../ast_transformations/inline.mli            |  2 +-
 .../cmdline_parameters/cmdline.ml             |  2 +-
 .../cmdline_parameters/cmdline.mli            |  2 +-
 .../cmdline_parameters/parameter_builder.ml   |  2 +-
 .../cmdline_parameters/parameter_builder.mli  |  2 +-
 .../cmdline_parameters/parameter_category.ml  |  2 +-
 .../cmdline_parameters/parameter_category.mli |  2 +-
 .../cmdline_parameters/parameter_customize.ml |  2 +-
 .../parameter_customize.mli                   |  2 +-
 .../cmdline_parameters/parameter_sig.mli      |  2 +-
 .../cmdline_parameters/parameter_state.ml     |  2 +-
 .../cmdline_parameters/parameter_state.mli    |  2 +-
 .../cmdline_parameters/typed_parameter.ml     |  2 +-
 .../cmdline_parameters/typed_parameter.mli    |  2 +-
 src/kernel_services/parsetree/logic_ptree.mli |  2 +-
 src/kernel_services/plugin_entry_points/db.ml |  2 +-
 .../plugin_entry_points/db.mli                |  2 +-
 .../plugin_entry_points/dynamic.ml            |  2 +-
 .../plugin_entry_points/dynamic.mli           |  2 +-
 .../plugin_entry_points/emitter.ml            |  2 +-
 .../plugin_entry_points/emitter.mli           |  2 +-
 .../plugin_entry_points/journal.ml            |  2 +-
 .../plugin_entry_points/journal.mli           |  2 +-
 .../plugin_entry_points/kernel.ml             |  2 +-
 .../plugin_entry_points/kernel.mli            |  2 +-
 .../plugin_entry_points/log.ml                |  2 +-
 .../plugin_entry_points/log.mli               |  2 +-
 .../plugin_entry_points/plugin.ml             |  2 +-
 .../plugin_entry_points/plugin.mli            |  2 +-
 src/kernel_services/visitors/visitor.ml       |  2 +-
 src/kernel_services/visitors/visitor.mli      |  2 +-
 .../visitors/visitor_behavior.ml              |  2 +-
 .../visitors/visitor_behavior.mli             |  2 +-
 src/libraries/datatype/datatype.ml            |  2 +-
 src/libraries/datatype/datatype.mli           |  2 +-
 src/libraries/datatype/descr.ml               |  2 +-
 src/libraries/datatype/descr.mli              |  2 +-
 src/libraries/datatype/structural_descr.ml    |  2 +-
 src/libraries/datatype/structural_descr.mli   |  2 +-
 src/libraries/datatype/type.ml                |  2 +-
 src/libraries/datatype/type.mli               |  2 +-
 src/libraries/datatype/unmarshal_z.ml         |  2 +-
 src/libraries/datatype/unmarshal_z.mli        |  2 +-
 src/libraries/project/project.ml              |  2 +-
 src/libraries/project/project.mli             |  2 +-
 src/libraries/project/project_skeleton.ml     |  2 +-
 src/libraries/project/project_skeleton.mli    |  2 +-
 src/libraries/project/state.ml                |  2 +-
 src/libraries/project/state.mli               |  2 +-
 src/libraries/project/state_builder.ml        |  2 +-
 src/libraries/project/state_builder.mli       |  2 +-
 .../project/state_dependency_graph.ml         |  2 +-
 .../project/state_dependency_graph.mli        |  2 +-
 src/libraries/project/state_selection.ml      |  2 +-
 src/libraries/project/state_selection.mli     |  2 +-
 src/libraries/stdlib/FCHashtbl.ml             |  2 +-
 src/libraries/stdlib/FCHashtbl.mli            |  2 +-
 src/libraries/stdlib/extlib.ml                |  2 +-
 src/libraries/stdlib/extlib.mli               |  2 +-
 src/libraries/stdlib/integer.ml               |  2 +-
 src/libraries/stdlib/integer.mli              |  2 +-
 src/libraries/stdlib/transitioning.ml.in      |  3 ++-
 src/libraries/stdlib/transitioning.mli        |  2 +-
 src/libraries/utils/bag.ml                    |  2 +-
 src/libraries/utils/bag.mli                   |  2 +-
 src/libraries/utils/binary_cache.ml           |  2 +-
 src/libraries/utils/binary_cache.mli          |  2 +-
 src/libraries/utils/bitvector.ml              |  2 +-
 src/libraries/utils/bitvector.mli             |  2 +-
 src/libraries/utils/c_bindings.c              |  2 +-
 src/libraries/utils/command.ml                |  2 +-
 src/libraries/utils/command.mli               |  2 +-
 src/libraries/utils/dotgraph.ml               |  2 +-
 src/libraries/utils/dotgraph.mli              |  2 +-
 src/libraries/utils/filepath.ml               |  2 +-
 src/libraries/utils/filepath.mli              |  2 +-
 src/libraries/utils/floating_point.ml         |  2 +-
 src/libraries/utils/floating_point.mli        |  2 +-
 src/libraries/utils/hook.ml                   |  2 +-
 src/libraries/utils/hook.mli                  |  2 +-
 src/libraries/utils/hptset.ml                 |  2 +-
 src/libraries/utils/hptset.mli                |  2 +-
 src/libraries/utils/indexer.ml                |  2 +-
 src/libraries/utils/indexer.mli               |  2 +-
 src/libraries/utils/json.mli                  |  2 +-
 src/libraries/utils/json.mll                  |  2 +-
 src/libraries/utils/markdown.ml               |  2 +-
 src/libraries/utils/markdown.mli              |  2 +-
 src/libraries/utils/pretty_utils.ml           |  2 +-
 src/libraries/utils/pretty_utils.mli          |  2 +-
 src/libraries/utils/qstack.ml                 |  2 +-
 src/libraries/utils/qstack.mli                |  2 +-
 src/libraries/utils/rgmap.ml                  |  2 +-
 src/libraries/utils/rgmap.mli                 |  2 +-
 src/libraries/utils/rich_text.ml              |  2 +-
 src/libraries/utils/rich_text.mli             |  2 +-
 src/libraries/utils/sanitizer.ml              |  2 +-
 src/libraries/utils/sanitizer.mli             |  2 +-
 src/libraries/utils/task.ml                   |  2 +-
 src/libraries/utils/task.mli                  |  2 +-
 src/libraries/utils/unicode.ml                |  2 +-
 src/libraries/utils/unicode.mli               |  2 +-
 src/libraries/utils/utf8_logic.ml             |  2 +-
 src/libraries/utils/utf8_logic.mli            |  2 +-
 src/libraries/utils/vector.ml                 |  2 +-
 src/libraries/utils/vector.mli                |  2 +-
 src/libraries/utils/wto.ml                    |  2 +-
 src/libraries/utils/wto.mli                   |  2 +-
 src/plugins/aorai/Aorai.mli                   |  2 +-
 src/plugins/aorai/Makefile.in                 |  2 +-
 src/plugins/aorai/aorai_dataflow.ml           |  2 +-
 src/plugins/aorai/aorai_dataflow.mli          |  2 +-
 .../aorai/aorai_eva_analysis.disabled.ml      |  2 +-
 .../aorai/aorai_eva_analysis.enabled.ml       |  2 +-
 src/plugins/aorai/aorai_eva_analysis.mli      |  2 +-
 src/plugins/aorai/aorai_graph.ml              |  2 +-
 src/plugins/aorai/aorai_graph.mli             |  2 +-
 src/plugins/aorai/aorai_metavariables.ml      |  2 +-
 src/plugins/aorai/aorai_metavariables.mli     |  2 +-
 src/plugins/aorai/aorai_option.ml             |  2 +-
 src/plugins/aorai/aorai_option.mli            |  2 +-
 src/plugins/aorai/aorai_register.ml           |  2 +-
 src/plugins/aorai/aorai_utils.ml              |  2 +-
 src/plugins/aorai/aorai_utils.mli             |  2 +-
 src/plugins/aorai/aorai_visitors.ml           |  2 +-
 src/plugins/aorai/bool3.ml                    |  2 +-
 src/plugins/aorai/bool3.mli                   |  2 +-
 src/plugins/aorai/configure.ac                |  2 +-
 src/plugins/aorai/data_for_aorai.ml           |  2 +-
 src/plugins/aorai/data_for_aorai.mli          |  2 +-
 src/plugins/aorai/logic_simplification.ml     |  2 +-
 src/plugins/aorai/logic_simplification.mli    |  2 +-
 src/plugins/aorai/ltl_output.ml               |  2 +-
 src/plugins/aorai/ltl_output.mli              |  2 +-
 src/plugins/aorai/ltlast.mli                  |  2 +-
 src/plugins/aorai/ltllexer.mll                |  2 +-
 src/plugins/aorai/ltlparser.mly               |  2 +-
 src/plugins/aorai/path_analysis.ml            |  2 +-
 src/plugins/aorai/promelaast.mli              |  2 +-
 src/plugins/aorai/promelalexer.mll            |  2 +-
 src/plugins/aorai/promelalexer_withexps.mll   |  2 +-
 src/plugins/aorai/promelaoutput.ml            |  2 +-
 src/plugins/aorai/promelaoutput.mli           |  2 +-
 src/plugins/aorai/promelaparser.mly           |  2 +-
 src/plugins/aorai/promelaparser_withexps.mly  |  2 +-
 src/plugins/aorai/utils_parser.ml             |  2 +-
 src/plugins/aorai/yalexer.mll                 |  2 +-
 src/plugins/aorai/yaparser.mly                |  2 +-
 src/plugins/callgraph/Callgraph.mli           |  2 +-
 src/plugins/callgraph/callgraph_api.mli       |  2 +-
 src/plugins/callgraph/cg.ml                   |  2 +-
 src/plugins/callgraph/cg.mli                  |  2 +-
 src/plugins/callgraph/cg_viewer.yes.ml        |  2 +-
 src/plugins/callgraph/journalize.ml           |  2 +-
 src/plugins/callgraph/journalize.mli          |  2 +-
 src/plugins/callgraph/options.ml              |  2 +-
 src/plugins/callgraph/options.mli             |  2 +-
 src/plugins/callgraph/register.ml             |  2 +-
 src/plugins/callgraph/services.ml             |  2 +-
 src/plugins/callgraph/services.mli            |  2 +-
 src/plugins/callgraph/subgraph.ml             |  2 +-
 src/plugins/callgraph/subgraph.mli            |  2 +-
 src/plugins/callgraph/uses.ml                 |  2 +-
 src/plugins/callgraph/uses.mli                |  2 +-
 .../Constant_Propagation.mli                  |  2 +-
 src/plugins/constant_propagation/api.ml       |  2 +-
 src/plugins/constant_propagation/api.mli      |  2 +-
 .../propagationParameters.ml                  |  2 +-
 .../propagationParameters.mli                 |  2 +-
 src/plugins/dive/Dive.mli                     |  2 +-
 src/plugins/dive/Makefile.in                  |  2 +-
 src/plugins/dive/build.ml                     |  2 +-
 src/plugins/dive/build.mli                    |  2 +-
 src/plugins/dive/callstack.ml                 |  2 +-
 src/plugins/dive/callstack.mli                |  2 +-
 src/plugins/dive/configure.ac                 |  2 +-
 src/plugins/dive/context.ml                   |  2 +-
 src/plugins/dive/context.mli                  |  2 +-
 src/plugins/dive/dive_graph.ml                |  2 +-
 src/plugins/dive/dive_graph.mli               |  2 +-
 src/plugins/dive/dive_types.mli               |  2 +-
 src/plugins/dive/main.ml                      |  2 +-
 src/plugins/dive/node_kind.ml                 |  2 +-
 src/plugins/dive/node_kind.mli                |  2 +-
 src/plugins/dive/node_range.ml                |  2 +-
 src/plugins/dive/node_range.mli               |  2 +-
 src/plugins/dive/self.ml                      |  2 +-
 src/plugins/dive/self.mli                     |  2 +-
 src/plugins/dive/server_interface.ml          |  2 +-
 src/plugins/dive/server_interface.mli         |  2 +-
 src/plugins/from/From.mli                     |  2 +-
 src/plugins/from/callwise.ml                  |  2 +-
 src/plugins/from/callwise.mli                 |  2 +-
 src/plugins/from/from_compute.ml              |  2 +-
 src/plugins/from/from_compute.mli             |  2 +-
 src/plugins/from/from_parameters.ml           |  2 +-
 src/plugins/from/from_parameters.mli          |  2 +-
 src/plugins/from/from_register.ml             |  2 +-
 src/plugins/from/from_register.mli            |  2 +-
 src/plugins/from/from_register_gui.ml         |  2 +-
 src/plugins/from/from_register_gui.mli        |  2 +-
 src/plugins/from/functionwise.ml              |  2 +-
 src/plugins/from/functionwise.mli             |  2 +-
 src/plugins/gui/GSourceView2.ml.in            |  2 +-
 src/plugins/gui/GSourceView2.mli.in           |  2 +-
 src/plugins/gui/GSourceView3.ml.in            |  2 +-
 src/plugins/gui/GSourceView3.mli.in           |  2 +-
 src/plugins/gui/analyses_manager.ml           |  2 +-
 src/plugins/gui/analyses_manager.mli          |  2 +-
 src/plugins/gui/book_manager.ml               |  2 +-
 src/plugins/gui/book_manager.mli              |  2 +-
 src/plugins/gui/debug_manager.mli             |  2 +-
 src/plugins/gui/debug_manager.yes.ml          |  2 +-
 src/plugins/gui/design.ml                     |  2 +-
 src/plugins/gui/design.mli                    |  2 +-
 src/plugins/gui/dgraph_helper.mli             |  2 +-
 src/plugins/gui/dgraph_helper.no.ml           |  2 +-
 src/plugins/gui/dgraph_helper.yes.ml          |  2 +-
 src/plugins/gui/file_manager.ml               |  2 +-
 src/plugins/gui/file_manager.mli              |  2 +-
 src/plugins/gui/filetree.ml                   |  2 +-
 src/plugins/gui/filetree.mli                  |  2 +-
 src/plugins/gui/gtk_compat.2.ml               |  2 +-
 src/plugins/gui/gtk_compat.3.ml               |  2 +-
 src/plugins/gui/gtk_compat.mli                |  2 +-
 src/plugins/gui/gtk_form.ml                   |  2 +-
 src/plugins/gui/gtk_form.mli                  |  2 +-
 src/plugins/gui/gtk_helper.ml                 |  2 +-
 src/plugins/gui/gtk_helper.mli                |  2 +-
 src/plugins/gui/gui_parameters.ml             |  2 +-
 src/plugins/gui/gui_parameters.mli            |  2 +-
 src/plugins/gui/gui_printers.ml               |  2 +-
 src/plugins/gui/gui_printers.mli              |  2 +-
 src/plugins/gui/help_manager.ml               |  2 +-
 src/plugins/gui/help_manager.mli              |  2 +-
 src/plugins/gui/history.ml                    |  2 +-
 src/plugins/gui/history.mli                   |  2 +-
 src/plugins/gui/launcher.ml                   |  2 +-
 src/plugins/gui/launcher.mli                  |  2 +-
 src/plugins/gui/menu_manager.ml               |  2 +-
 src/plugins/gui/menu_manager.mli              |  2 +-
 src/plugins/gui/pretty_source.ml              |  2 +-
 src/plugins/gui/pretty_source.mli             |  2 +-
 src/plugins/gui/project_manager.ml            |  2 +-
 src/plugins/gui/project_manager.mli           |  2 +-
 src/plugins/gui/property_navigator.ml         |  2 +-
 src/plugins/gui/property_navigator.mli        |  2 +-
 src/plugins/gui/source_manager.ml             |  2 +-
 src/plugins/gui/source_manager.mli            |  2 +-
 src/plugins/gui/source_viewer.ml              |  2 +-
 src/plugins/gui/source_viewer.mli             |  2 +-
 src/plugins/gui/warning_manager.ml            |  2 +-
 src/plugins/gui/warning_manager.mli           |  2 +-
 src/plugins/gui/wbox.ml                       |  2 +-
 src/plugins/gui/wbox.mli                      |  2 +-
 src/plugins/gui/wfile.ml                      |  2 +-
 src/plugins/gui/wfile.mli                     |  2 +-
 src/plugins/gui/widget.ml                     |  2 +-
 src/plugins/gui/widget.mli                    |  2 +-
 src/plugins/gui/wpalette.ml                   |  2 +-
 src/plugins/gui/wpalette.mli                  |  2 +-
 src/plugins/gui/wpane.ml                      |  2 +-
 src/plugins/gui/wpane.mli                     |  2 +-
 src/plugins/gui/wtable.ml                     |  2 +-
 src/plugins/gui/wtable.mli                    |  2 +-
 src/plugins/gui/wtext.ml                      |  2 +-
 src/plugins/gui/wtext.mli                     |  2 +-
 src/plugins/gui/wutil.ml                      |  2 +-
 src/plugins/gui/wutil.mli                     |  2 +-
 src/plugins/gui/wutil_once.ml                 |  2 +-
 src/plugins/gui/wutil_once.mli                |  2 +-
 src/plugins/impact/Impact.mli                 |  2 +-
 src/plugins/impact/compute_impact.ml          |  2 +-
 src/plugins/impact/compute_impact.mli         |  2 +-
 src/plugins/impact/options.ml                 |  2 +-
 src/plugins/impact/options.mli                |  2 +-
 src/plugins/impact/pdg_aux.ml                 |  2 +-
 src/plugins/impact/pdg_aux.mli                |  2 +-
 src/plugins/impact/reason_graph.ml            |  2 +-
 src/plugins/impact/register.ml                |  2 +-
 src/plugins/impact/register_gui.ml            |  2 +-
 src/plugins/impact/register_gui.mli           |  2 +-
 src/plugins/inout/Inout.mli                   |  2 +-
 src/plugins/inout/context.mli                 |  2 +-
 src/plugins/inout/cumulative_analysis.ml      |  2 +-
 src/plugins/inout/cumulative_analysis.mli     |  2 +-
 src/plugins/inout/derefs.ml                   |  2 +-
 src/plugins/inout/derefs.mli                  |  2 +-
 src/plugins/inout/inout_parameters.ml         |  2 +-
 src/plugins/inout/inout_parameters.mli        |  2 +-
 src/plugins/inout/inputs.ml                   |  2 +-
 src/plugins/inout/inputs.mli                  |  2 +-
 src/plugins/inout/operational_inputs.ml       |  2 +-
 src/plugins/inout/outputs.ml                  |  2 +-
 src/plugins/inout/outputs.mli                 |  2 +-
 src/plugins/inout/register.ml                 |  2 +-
 src/plugins/instantiate/Instantiate.mli       |  2 +-
 src/plugins/instantiate/Makefile.in           |  2 +-
 src/plugins/instantiate/basic_blocks.ml       |  2 +-
 src/plugins/instantiate/basic_blocks.mli      |  2 +-
 src/plugins/instantiate/configure.ac          |  2 +-
 src/plugins/instantiate/global_context.ml     |  2 +-
 src/plugins/instantiate/global_context.mli    |  2 +-
 .../instantiate/instantiator_builder.ml       |  2 +-
 .../instantiate/instantiator_builder.mli      |  2 +-
 src/plugins/instantiate/options.ml            |  2 +-
 src/plugins/instantiate/options.mli           |  2 +-
 src/plugins/instantiate/register.ml           |  2 +-
 src/plugins/instantiate/stdlib/basic_alloc.ml |  2 +-
 .../instantiate/stdlib/basic_alloc.mli        |  2 +-
 src/plugins/instantiate/stdlib/calloc.ml      |  2 +-
 src/plugins/instantiate/stdlib/calloc.mli     |  2 +-
 src/plugins/instantiate/stdlib/free.ml        |  2 +-
 src/plugins/instantiate/stdlib/free.mli       |  2 +-
 src/plugins/instantiate/stdlib/malloc.ml      |  2 +-
 src/plugins/instantiate/stdlib/malloc.mli     |  2 +-
 src/plugins/instantiate/string/mem_utils.ml   |  2 +-
 src/plugins/instantiate/string/mem_utils.mli  |  2 +-
 src/plugins/instantiate/string/memcmp.ml      |  2 +-
 src/plugins/instantiate/string/memcmp.mli     |  2 +-
 src/plugins/instantiate/string/memcpy.ml      |  2 +-
 src/plugins/instantiate/string/memcpy.mli     |  2 +-
 src/plugins/instantiate/string/memmove.ml     |  2 +-
 src/plugins/instantiate/string/memmove.mli    |  2 +-
 src/plugins/instantiate/string/memset.ml      |  2 +-
 src/plugins/instantiate/string/memset.mli     |  2 +-
 src/plugins/instantiate/transform.ml          |  2 +-
 src/plugins/instantiate/transform.mli         |  2 +-
 src/plugins/loop_analysis/LoopAnalysis.mli    |  2 +-
 src/plugins/loop_analysis/Makefile.in         |  2 +-
 src/plugins/loop_analysis/configure.ac        |  2 +-
 src/plugins/loop_analysis/loop_analysis.ml    |  2 +-
 src/plugins/loop_analysis/loop_analysis.mli   |  2 +-
 src/plugins/loop_analysis/options.ml          |  2 +-
 src/plugins/loop_analysis/options.mli         |  2 +-
 src/plugins/loop_analysis/region_analysis.ml  |  2 +-
 src/plugins/loop_analysis/region_analysis.mli |  2 +-
 .../loop_analysis/region_analysis_sig.ml      |  2 +-
 .../loop_analysis/region_analysis_stmt.ml     |  2 +-
 .../loop_analysis/region_analysis_stmt.mli    |  2 +-
 src/plugins/loop_analysis/register.ml         |  2 +-
 src/plugins/loop_analysis/slevel_analysis.ml  |  2 +-
 src/plugins/markdown-report/Makefile.in       |  2 +-
 src/plugins/markdown-report/configure.ac      |  2 +-
 src/plugins/markdown-report/eva_info.ml       |  2 +-
 src/plugins/markdown-report/eva_info.mli      |  2 +-
 src/plugins/markdown-report/md_gen.ml         |  2 +-
 src/plugins/markdown-report/md_gen.mli        |  2 +-
 src/plugins/markdown-report/mdr_params.ml     |  2 +-
 src/plugins/markdown-report/mdr_params.mli    |  2 +-
 src/plugins/markdown-report/mdr_register.ml   |  2 +-
 src/plugins/markdown-report/mdr_register.mli  |  2 +-
 src/plugins/markdown-report/parse_remarks.ml  |  2 +-
 src/plugins/markdown-report/parse_remarks.mli |  2 +-
 src/plugins/markdown-report/sarif.ml          |  2 +-
 src/plugins/markdown-report/sarif_gen.ml      |  2 +-
 src/plugins/markdown-report/sarif_gen.mli     |  2 +-
 src/plugins/markdown-report/share/acsl.xml    |  2 +-
 src/plugins/metrics/Metrics.mli               |  2 +-
 src/plugins/metrics/css_html.ml               |  2 +-
 src/plugins/metrics/metrics_acsl.ml           |  2 +-
 src/plugins/metrics/metrics_acsl.mli          |  2 +-
 src/plugins/metrics/metrics_base.ml           |  2 +-
 src/plugins/metrics/metrics_base.mli          |  2 +-
 src/plugins/metrics/metrics_cabs.ml           |  2 +-
 src/plugins/metrics/metrics_cabs.mli          |  2 +-
 src/plugins/metrics/metrics_cilast.ml         |  2 +-
 src/plugins/metrics/metrics_cilast.mli        |  2 +-
 src/plugins/metrics/metrics_coverage.ml       |  2 +-
 src/plugins/metrics/metrics_coverage.mli      |  2 +-
 src/plugins/metrics/metrics_gui.ml            |  2 +-
 src/plugins/metrics/metrics_gui.mli           |  2 +-
 src/plugins/metrics/metrics_parameters.ml     |  2 +-
 src/plugins/metrics/metrics_parameters.mli    |  2 +-
 src/plugins/metrics/register.ml               |  2 +-
 src/plugins/metrics/register_gui.ml           |  2 +-
 src/plugins/nonterm/Makefile.in               |  2 +-
 src/plugins/nonterm/Nonterm.mli               |  2 +-
 src/plugins/nonterm/configure.ac              |  2 +-
 src/plugins/nonterm/nonterm_run.ml            |  2 +-
 src/plugins/obfuscator/Makefile.in            |  2 +-
 src/plugins/obfuscator/Obfuscator.mli         |  2 +-
 src/plugins/obfuscator/configure.ac           |  2 +-
 src/plugins/obfuscator/dictionary.ml          |  2 +-
 src/plugins/obfuscator/dictionary.mli         |  2 +-
 src/plugins/obfuscator/obfuscate.ml           |  2 +-
 src/plugins/obfuscator/obfuscate.mli          |  2 +-
 src/plugins/obfuscator/obfuscator_kind.ml     |  2 +-
 src/plugins/obfuscator/obfuscator_kind.mli    |  2 +-
 src/plugins/obfuscator/obfuscator_register.ml |  2 +-
 src/plugins/obfuscator/options.ml             |  2 +-
 src/plugins/obfuscator/options.mli            |  2 +-
 src/plugins/occurrence/Occurrence.mli         |  2 +-
 src/plugins/occurrence/options.ml             |  2 +-
 src/plugins/occurrence/options.mli            |  2 +-
 src/plugins/occurrence/register.ml            |  2 +-
 src/plugins/occurrence/register_gui.ml        |  2 +-
 src/plugins/occurrence/register_gui.mli       |  2 +-
 src/plugins/pdg/Pdg.mli                       |  2 +-
 src/plugins/pdg/annot.ml                      |  2 +-
 src/plugins/pdg/annot.mli                     |  2 +-
 src/plugins/pdg/build.ml                      |  2 +-
 src/plugins/pdg/build.mli                     |  2 +-
 src/plugins/pdg/ctrlDpds.ml                   |  2 +-
 src/plugins/pdg/ctrlDpds.mli                  |  2 +-
 src/plugins/pdg/marks.ml                      |  2 +-
 src/plugins/pdg/marks.mli                     |  2 +-
 src/plugins/pdg/pdg_parameters.ml             |  2 +-
 src/plugins/pdg/pdg_parameters.mli            |  2 +-
 src/plugins/pdg/pdg_state.ml                  |  2 +-
 src/plugins/pdg/pdg_state.mli                 |  2 +-
 src/plugins/pdg/register.ml                   |  2 +-
 src/plugins/pdg/sets.ml                       |  2 +-
 src/plugins/pdg/sets.mli                      |  2 +-
 src/plugins/pdg_types/pdgIndex.ml             |  2 +-
 src/plugins/pdg_types/pdgIndex.mli            |  2 +-
 src/plugins/pdg_types/pdgMarks.ml             |  2 +-
 src/plugins/pdg_types/pdgMarks.mli            |  2 +-
 src/plugins/pdg_types/pdgTypes.ml             |  2 +-
 src/plugins/pdg_types/pdgTypes.mli            |  2 +-
 src/plugins/postdominators/Postdominators.mli |  2 +-
 src/plugins/postdominators/compute.ml         |  2 +-
 .../postdominators_parameters.ml              |  2 +-
 .../postdominators_parameters.mli             |  2 +-
 src/plugins/postdominators/print.ml           |  2 +-
 src/plugins/print_api/Makefile                |  2 +-
 src/plugins/print_api/Print_api.mli           |  2 +-
 src/plugins/print_api/grammar.mly             |  2 +-
 src/plugins/print_api/lexer.mll               |  2 +-
 src/plugins/print_api/print_interface.ml      |  2 +-
 src/plugins/qed/Makefile                      |  2 +-
 src/plugins/qed/QedGui.ml                     |  2 +-
 src/plugins/qed/bvars.ml                      |  2 +-
 src/plugins/qed/bvars.mli                     |  2 +-
 src/plugins/qed/cache.ml                      |  2 +-
 src/plugins/qed/cache.mli                     |  2 +-
 src/plugins/qed/collection.ml                 |  2 +-
 src/plugins/qed/collection.mli                |  2 +-
 src/plugins/qed/engine.ml                     |  2 +-
 src/plugins/qed/export.ml                     |  2 +-
 src/plugins/qed/export.mli                    |  2 +-
 src/plugins/qed/export_altergo.ml             |  2 +-
 src/plugins/qed/export_altergo.mli            |  2 +-
 src/plugins/qed/export_coq.ml                 |  2 +-
 src/plugins/qed/export_coq.mli                |  2 +-
 src/plugins/qed/export_why3.ml                |  2 +-
 src/plugins/qed/export_why3.mli               |  2 +-
 src/plugins/qed/export_whycore.ml             |  2 +-
 src/plugins/qed/export_whycore.mli            |  2 +-
 src/plugins/qed/hcons.ml                      |  2 +-
 src/plugins/qed/hcons.mli                     |  2 +-
 src/plugins/qed/idxmap.ml                     |  2 +-
 src/plugins/qed/idxmap.mli                    |  2 +-
 src/plugins/qed/idxset.ml                     |  2 +-
 src/plugins/qed/idxset.mli                    |  2 +-
 src/plugins/qed/intmap.ml                     |  2 +-
 src/plugins/qed/intmap.mli                    |  2 +-
 src/plugins/qed/intset.ml                     |  2 +-
 src/plugins/qed/intset.mli                    |  2 +-
 src/plugins/qed/kind.ml                       |  2 +-
 src/plugins/qed/kind.mli                      |  2 +-
 src/plugins/qed/listmap.ml                    |  2 +-
 src/plugins/qed/listmap.mli                   |  2 +-
 src/plugins/qed/listset.ml                    |  2 +-
 src/plugins/qed/listset.mli                   |  2 +-
 src/plugins/qed/logic.ml                      |  2 +-
 src/plugins/qed/mergemap.ml                   |  2 +-
 src/plugins/qed/mergemap.mli                  |  2 +-
 src/plugins/qed/mergeset.ml                   |  2 +-
 src/plugins/qed/mergeset.mli                  |  2 +-
 src/plugins/qed/partition.ml                  |  2 +-
 src/plugins/qed/partition.mli                 |  2 +-
 src/plugins/qed/plib.ml                       |  2 +-
 src/plugins/qed/plib.mli                      |  2 +-
 src/plugins/qed/pool.ml                       |  2 +-
 src/plugins/qed/pool.mli                      |  2 +-
 src/plugins/qed/pretty.ml                     |  2 +-
 src/plugins/qed/pretty.mli                    |  2 +-
 src/plugins/qed/term.ml                       |  2 +-
 src/plugins/qed/term.mli                      |  2 +-
 src/plugins/report/Makefile.in                |  2 +-
 src/plugins/report/Report.mli                 |  2 +-
 src/plugins/report/classify.ml                |  2 +-
 src/plugins/report/classify.mli               |  2 +-
 src/plugins/report/configure.ac               |  2 +-
 src/plugins/report/csv.ml                     |  2 +-
 src/plugins/report/csv.mli                    |  2 +-
 src/plugins/report/dump.ml                    |  2 +-
 src/plugins/report/dump.mli                   |  2 +-
 src/plugins/report/register.ml                |  2 +-
 src/plugins/report/register.mli               |  2 +-
 src/plugins/report/report_parameters.ml       |  2 +-
 src/plugins/report/report_parameters.mli      |  2 +-
 src/plugins/report/scan.ml                    |  2 +-
 src/plugins/report/scan.mli                   |  2 +-
 src/plugins/rte/RteGen.mli                    |  2 +-
 src/plugins/rte/flags.ml                      |  2 +-
 src/plugins/rte/flags.mli                     |  2 +-
 src/plugins/rte/generator.ml                  |  2 +-
 src/plugins/rte/generator.mli                 |  2 +-
 src/plugins/rte/options.ml                    |  2 +-
 src/plugins/rte/options.mli                   |  2 +-
 src/plugins/rte/register.ml                   |  2 +-
 src/plugins/rte/rte.ml                        |  2 +-
 src/plugins/rte/rte.mli                       |  2 +-
 src/plugins/rte/visit.ml                      |  2 +-
 src/plugins/rte/visit.mli                     |  2 +-
 src/plugins/scope/Scope.mli                   |  2 +-
 src/plugins/scope/datascope.ml                |  2 +-
 src/plugins/scope/datascope.mli               |  2 +-
 src/plugins/scope/defs.ml                     |  2 +-
 src/plugins/scope/defs.mli                    |  2 +-
 src/plugins/scope/dpds_gui.ml                 |  2 +-
 src/plugins/scope/zones.ml                    |  2 +-
 src/plugins/scope/zones.mli                   |  2 +-
 src/plugins/security_slicing/Makefile.in      |  2 +-
 .../security_slicing/Security_slicing.mli     |  2 +-
 src/plugins/security_slicing/components.ml    |  2 +-
 src/plugins/security_slicing/components.mli   |  2 +-
 src/plugins/security_slicing/configure.ac     |  2 +-
 src/plugins/security_slicing/register_gui.ml  |  2 +-
 src/plugins/security_slicing/register_gui.mli |  2 +-
 .../security_slicing_parameters.ml            |  2 +-
 .../security_slicing_parameters.mli           |  2 +-
 src/plugins/server/Makefile.in                |  2 +-
 src/plugins/server/configure.ac               |  2 +-
 src/plugins/server/data.ml                    |  2 +-
 src/plugins/server/data.mli                   |  2 +-
 src/plugins/server/jbuffer.ml                 |  2 +-
 src/plugins/server/jbuffer.mli                |  2 +-
 src/plugins/server/kernel_ast.ml              |  2 +-
 src/plugins/server/kernel_ast.mli             |  2 +-
 src/plugins/server/kernel_main.ml             |  2 +-
 src/plugins/server/kernel_main.mli            |  2 +-
 src/plugins/server/kernel_project.ml          |  2 +-
 src/plugins/server/kernel_project.mli         |  2 +-
 src/plugins/server/kernel_properties.ml       |  2 +-
 src/plugins/server/kernel_properties.mli      |  2 +-
 src/plugins/server/main.ml                    |  2 +-
 src/plugins/server/main.mli                   |  2 +-
 src/plugins/server/package.ml                 |  2 +-
 src/plugins/server/package.mli                |  2 +-
 src/plugins/server/request.ml                 |  2 +-
 src/plugins/server/request.mli                |  2 +-
 src/plugins/server/server_batch.ml            |  2 +-
 src/plugins/server/server_doc.ml              |  2 +-
 src/plugins/server/server_doc.mli             |  2 +-
 src/plugins/server/server_parameters.ml       |  2 +-
 src/plugins/server/server_parameters.mli      |  2 +-
 src/plugins/server/server_zmq.ml              |  2 +-
 src/plugins/server/states.ml                  |  2 +-
 src/plugins/server/states.mli                 |  2 +-
 src/plugins/slicing/Slicing.mli               |  2 +-
 src/plugins/slicing/api.ml                    |  2 +-
 src/plugins/slicing/fct_slice.ml              |  2 +-
 src/plugins/slicing/fct_slice.mli             |  2 +-
 src/plugins/slicing/printSlice.ml             |  2 +-
 src/plugins/slicing/printSlice.mli            |  2 +-
 src/plugins/slicing/register.ml               |  2 +-
 src/plugins/slicing/register_gui.ml           |  2 +-
 src/plugins/slicing/register_gui.mli          |  2 +-
 src/plugins/slicing/slicingActions.ml         |  2 +-
 src/plugins/slicing/slicingActions.mli        |  2 +-
 src/plugins/slicing/slicingCmds.ml            |  2 +-
 src/plugins/slicing/slicingCmds.mli           |  2 +-
 src/plugins/slicing/slicingInternals.ml       |  2 +-
 src/plugins/slicing/slicingMacros.ml          |  2 +-
 src/plugins/slicing/slicingMacros.mli         |  2 +-
 src/plugins/slicing/slicingMarks.ml           |  2 +-
 src/plugins/slicing/slicingMarks.mli          |  2 +-
 src/plugins/slicing/slicingParameters.ml      |  2 +-
 src/plugins/slicing/slicingParameters.mli     |  2 +-
 src/plugins/slicing/slicingProject.ml         |  2 +-
 src/plugins/slicing/slicingProject.mli        |  2 +-
 src/plugins/slicing/slicingSelect.ml          |  2 +-
 src/plugins/slicing/slicingState.ml           |  2 +-
 src/plugins/slicing/slicingState.mli          |  2 +-
 src/plugins/slicing/slicingTransform.ml       |  2 +-
 src/plugins/slicing/slicingTransform.mli      |  2 +-
 src/plugins/slicing/slicingTypes.ml           |  2 +-
 src/plugins/sparecode/Sparecode.mli           |  2 +-
 src/plugins/sparecode/globs.ml                |  2 +-
 src/plugins/sparecode/register.ml             |  2 +-
 src/plugins/sparecode/spare_marks.ml          |  2 +-
 src/plugins/sparecode/spare_marks.mli         |  2 +-
 src/plugins/sparecode/sparecode_params.ml     |  2 +-
 src/plugins/sparecode/sparecode_params.mli    |  2 +-
 src/plugins/sparecode/transform.ml            |  2 +-
 src/plugins/studia/Makefile.in                |  2 +-
 src/plugins/studia/Studia.mli                 |  2 +-
 src/plugins/studia/configure.ac               |  2 +-
 src/plugins/studia/options.ml                 |  2 +-
 src/plugins/studia/options.mli                |  2 +-
 src/plugins/studia/reads.ml                   |  2 +-
 src/plugins/studia/reads.mli                  |  2 +-
 src/plugins/studia/studia_gui.ml              |  2 +-
 src/plugins/studia/studia_gui.mli             |  2 +-
 src/plugins/studia/studia_request.ml          |  2 +-
 src/plugins/studia/studia_request.mli         |  2 +-
 src/plugins/studia/writes.ml                  |  2 +-
 src/plugins/studia/writes.mli                 |  2 +-
 src/plugins/users/Users.mli                   |  2 +-
 src/plugins/users/users_register.ml           |  2 +-
 src/plugins/value/Eva.mli                     |  2 +-
 src/plugins/value/alarmset.ml                 |  2 +-
 src/plugins/value/alarmset.mli                |  2 +-
 src/plugins/value/api/general_requests.ml     |  2 +-
 src/plugins/value/api/general_requests.mli    |  2 +-
 src/plugins/value/api/values_request.ml       |  2 +-
 src/plugins/value/api/values_request.mli      |  2 +-
 src/plugins/value/domains/abstract_domain.mli |  2 +-
 .../value/domains/apron/apron_domain.ml       |  2 +-
 .../value/domains/apron/apron_domain.mli      |  2 +-
 src/plugins/value/domains/cvalue/builtins.ml  |  2 +-
 src/plugins/value/domains/cvalue/builtins.mli |  2 +-
 .../value/domains/cvalue/builtins_float.ml    |  2 +-
 .../value/domains/cvalue/builtins_float.mli   |  2 +-
 .../value/domains/cvalue/builtins_malloc.ml   |  2 +-
 .../value/domains/cvalue/builtins_malloc.mli  |  2 +-
 .../value/domains/cvalue/builtins_memory.ml   |  2 +-
 .../value/domains/cvalue/builtins_memory.mli  |  2 +-
 .../value/domains/cvalue/builtins_misc.ml     |  2 +-
 .../value/domains/cvalue/builtins_misc.mli    |  2 +-
 .../value/domains/cvalue/builtins_print_c.ml  |  2 +-
 .../value/domains/cvalue/builtins_print_c.mli |  2 +-
 .../value/domains/cvalue/builtins_split.ml    |  2 +-
 .../value/domains/cvalue/builtins_split.mli   |  2 +-
 .../value/domains/cvalue/builtins_string.ml   |  2 +-
 .../value/domains/cvalue/builtins_string.mli  |  2 +-
 .../domains/cvalue/builtins_watchpoint.ml     |  2 +-
 .../domains/cvalue/builtins_watchpoint.mli    |  2 +-
 .../value/domains/cvalue/cvalue_domain.ml     |  2 +-
 .../value/domains/cvalue/cvalue_domain.mli    |  2 +-
 .../value/domains/cvalue/cvalue_init.ml       |  2 +-
 .../value/domains/cvalue/cvalue_init.mli      |  2 +-
 .../value/domains/cvalue/cvalue_offsetmap.ml  |  2 +-
 .../value/domains/cvalue/cvalue_offsetmap.mli |  2 +-
 .../domains/cvalue/cvalue_specification.ml    |  2 +-
 .../domains/cvalue/cvalue_specification.mli   |  2 +-
 .../value/domains/cvalue/cvalue_transfer.ml   |  2 +-
 .../value/domains/cvalue/cvalue_transfer.mli  |  2 +-
 .../value/domains/cvalue/locals_scoping.ml    |  2 +-
 .../value/domains/cvalue/locals_scoping.mli   |  2 +-
 src/plugins/value/domains/cvalue/warn.ml      |  2 +-
 src/plugins/value/domains/cvalue/warn.mli     |  2 +-
 src/plugins/value/domains/domain_builder.ml   |  2 +-
 src/plugins/value/domains/domain_builder.mli  |  2 +-
 src/plugins/value/domains/domain_lift.ml      |  2 +-
 src/plugins/value/domains/domain_lift.mli     |  2 +-
 src/plugins/value/domains/domain_mode.ml      |  2 +-
 src/plugins/value/domains/domain_mode.mli     |  2 +-
 src/plugins/value/domains/domain_product.ml   |  2 +-
 src/plugins/value/domains/domain_product.mli  |  2 +-
 src/plugins/value/domains/domain_store.ml     |  2 +-
 src/plugins/value/domains/domain_store.mli    |  2 +-
 .../value/domains/equality/equality.ml        |  2 +-
 .../value/domains/equality/equality.mli       |  2 +-
 .../value/domains/equality/equality_domain.ml |  2 +-
 .../domains/equality/equality_domain.mli      |  2 +-
 .../value/domains/gauges/gauges_domain.ml     |  2 +-
 .../value/domains/gauges/gauges_domain.mli    |  2 +-
 src/plugins/value/domains/hcexprs.ml          |  2 +-
 src/plugins/value/domains/hcexprs.mli         |  2 +-
 src/plugins/value/domains/inout_domain.ml     |  2 +-
 src/plugins/value/domains/inout_domain.mli    |  2 +-
 .../value/domains/numerors/numerors_domain.ml |  2 +-
 .../domains/numerors/numerors_domain.mli      |  2 +-
 src/plugins/value/domains/octagons.ml         |  2 +-
 src/plugins/value/domains/octagons.mli        |  2 +-
 src/plugins/value/domains/offsm_domain.ml     |  2 +-
 src/plugins/value/domains/offsm_domain.mli    |  2 +-
 src/plugins/value/domains/powerset.ml         |  2 +-
 src/plugins/value/domains/powerset.mli        |  2 +-
 src/plugins/value/domains/printer_domain.ml   |  2 +-
 src/plugins/value/domains/printer_domain.mli  |  2 +-
 src/plugins/value/domains/sign_domain.ml      |  2 +-
 src/plugins/value/domains/sign_domain.mli     |  2 +-
 src/plugins/value/domains/simple_memory.ml    |  2 +-
 src/plugins/value/domains/simple_memory.mli   |  2 +-
 src/plugins/value/domains/simpler_domains.mli |  2 +-
 src/plugins/value/domains/symbolic_locs.ml    |  2 +-
 src/plugins/value/domains/symbolic_locs.mli   |  2 +-
 src/plugins/value/domains/traces_domain.ml    |  2 +-
 src/plugins/value/domains/traces_domain.mli   |  2 +-
 src/plugins/value/domains/unit_domain.ml      |  2 +-
 src/plugins/value/domains/unit_domain.mli     |  2 +-
 src/plugins/value/engine/abstractions.ml      |  2 +-
 src/plugins/value/engine/abstractions.mli     |  2 +-
 src/plugins/value/engine/analysis.ml          |  2 +-
 src/plugins/value/engine/analysis.mli         |  2 +-
 src/plugins/value/engine/compute_functions.ml |  2 +-
 .../value/engine/compute_functions.mli        |  2 +-
 src/plugins/value/engine/evaluation.ml        |  2 +-
 src/plugins/value/engine/evaluation.mli       |  2 +-
 src/plugins/value/engine/initialization.ml    |  2 +-
 src/plugins/value/engine/initialization.mli   |  2 +-
 src/plugins/value/engine/iterator.ml          |  2 +-
 src/plugins/value/engine/iterator.mli         |  2 +-
 src/plugins/value/engine/mem_exec.ml          |  2 +-
 src/plugins/value/engine/mem_exec.mli         |  2 +-
 src/plugins/value/engine/recursion.ml         |  2 +-
 src/plugins/value/engine/recursion.mli        |  2 +-
 .../value/engine/subdivided_evaluation.ml     |  2 +-
 .../value/engine/subdivided_evaluation.mli    |  2 +-
 src/plugins/value/engine/transfer_logic.ml    |  2 +-
 src/plugins/value/engine/transfer_logic.mli   |  2 +-
 .../value/engine/transfer_specification.ml    |  2 +-
 .../value/engine/transfer_specification.mli   |  2 +-
 src/plugins/value/engine/transfer_stmt.ml     |  2 +-
 src/plugins/value/engine/transfer_stmt.mli    |  2 +-
 src/plugins/value/eval.ml                     |  2 +-
 src/plugins/value/eval.mli                    |  2 +-
 .../value/gui_files/gui_callstacks_filters.ml |  2 +-
 .../gui_files/gui_callstacks_filters.mli      |  2 +-
 .../value/gui_files/gui_callstacks_manager.ml |  2 +-
 .../gui_files/gui_callstacks_manager.mli      |  2 +-
 src/plugins/value/gui_files/gui_eval.ml       |  2 +-
 src/plugins/value/gui_files/gui_eval.mli      |  2 +-
 src/plugins/value/gui_files/gui_red.ml        |  2 +-
 src/plugins/value/gui_files/gui_red.mli       |  2 +-
 src/plugins/value/gui_files/gui_types.ml      |  2 +-
 src/plugins/value/gui_files/gui_types.mli     |  2 +-
 src/plugins/value/gui_files/register_gui.ml   |  2 +-
 src/plugins/value/gui_files/register_gui.mli  |  2 +-
 src/plugins/value/legacy/eval_annots.ml       |  2 +-
 src/plugins/value/legacy/eval_annots.mli      |  2 +-
 src/plugins/value/legacy/eval_op.ml           |  2 +-
 src/plugins/value/legacy/eval_op.mli          |  2 +-
 src/plugins/value/legacy/eval_terms.ml        |  2 +-
 src/plugins/value/legacy/eval_terms.mli       |  2 +-
 src/plugins/value/legacy/function_args.ml     |  2 +-
 src/plugins/value/legacy/function_args.mli    |  2 +-
 .../value/partitioning/auto_loop_unroll.ml    |  2 +-
 .../value/partitioning/auto_loop_unroll.mli   |  2 +-
 src/plugins/value/partitioning/partition.ml   |  2 +-
 src/plugins/value/partitioning/partition.mli  |  2 +-
 .../value/partitioning/partitioning_index.ml  |  2 +-
 .../value/partitioning/partitioning_index.mli |  2 +-
 .../partitioning/partitioning_parameters.ml   |  2 +-
 .../partitioning/partitioning_parameters.mli  |  2 +-
 .../value/partitioning/per_stmt_slevel.ml     |  2 +-
 .../value/partitioning/per_stmt_slevel.mli    |  2 +-
 .../value/partitioning/split_return.ml        |  2 +-
 .../value/partitioning/split_return.mli       |  2 +-
 .../value/partitioning/split_strategy.ml      |  2 +-
 .../value/partitioning/split_strategy.mli     |  2 +-
 .../value/partitioning/trace_partitioning.ml  |  2 +-
 .../value/partitioning/trace_partitioning.mli |  2 +-
 src/plugins/value/register.ml                 |  2 +-
 src/plugins/value/register.mli                |  2 +-
 src/plugins/value/utils/abstract.ml           |  2 +-
 src/plugins/value/utils/abstract.mli          |  2 +-
 src/plugins/value/utils/backward_formals.ml   |  2 +-
 src/plugins/value/utils/backward_formals.mli  |  2 +-
 src/plugins/value/utils/eva_annotations.ml    |  2 +-
 src/plugins/value/utils/eva_annotations.mli   |  2 +-
 src/plugins/value/utils/eval_typ.ml           |  2 +-
 src/plugins/value/utils/eval_typ.mli          |  2 +-
 src/plugins/value/utils/library_functions.ml  |  2 +-
 src/plugins/value/utils/library_functions.mli |  2 +-
 src/plugins/value/utils/mark_noresults.ml     |  2 +-
 src/plugins/value/utils/red_statuses.ml       |  2 +-
 src/plugins/value/utils/red_statuses.mli      |  2 +-
 src/plugins/value/utils/structure.ml          |  2 +-
 src/plugins/value/utils/structure.mli         |  2 +-
 src/plugins/value/utils/unit_tests.ml         |  2 +-
 src/plugins/value/utils/unit_tests.mli        |  2 +-
 src/plugins/value/utils/value_perf.ml         |  2 +-
 src/plugins/value/utils/value_perf.mli        |  2 +-
 src/plugins/value/utils/value_results.ml      |  2 +-
 src/plugins/value/utils/value_results.mli     |  2 +-
 src/plugins/value/utils/value_util.ml         |  2 +-
 src/plugins/value/utils/value_util.mli        |  2 +-
 src/plugins/value/utils/widen.ml              |  2 +-
 src/plugins/value/utils/widen.mli             |  2 +-
 src/plugins/value/utils/widen_hints_ext.ml    |  2 +-
 src/plugins/value/utils/widen_hints_ext.mli   |  2 +-
 src/plugins/value/value_parameters.ml         |  2 +-
 src/plugins/value/value_parameters.mli        |  2 +-
 .../value/values/abstract_location.mli        |  2 +-
 src/plugins/value/values/abstract_value.mli   |  2 +-
 src/plugins/value/values/cvalue_backward.ml   |  2 +-
 src/plugins/value/values/cvalue_backward.mli  |  2 +-
 src/plugins/value/values/cvalue_forward.ml    |  2 +-
 src/plugins/value/values/cvalue_forward.mli   |  2 +-
 src/plugins/value/values/location_lift.ml     |  2 +-
 src/plugins/value/values/location_lift.mli    |  2 +-
 src/plugins/value/values/main_locations.ml    |  2 +-
 src/plugins/value/values/main_locations.mli   |  2 +-
 src/plugins/value/values/main_values.ml       |  2 +-
 src/plugins/value/values/main_values.mli      |  2 +-
 .../values/numerors/numerors_arithmetics.ml   |  2 +-
 .../values/numerors/numerors_arithmetics.mli  |  2 +-
 .../value/values/numerors/numerors_float.ml   |  2 +-
 .../value/values/numerors/numerors_float.mli  |  2 +-
 .../values/numerors/numerors_interval.ml      |  2 +-
 .../values/numerors/numerors_interval.mli     |  2 +-
 .../value/values/numerors/numerors_utils.ml   |  2 +-
 .../value/values/numerors/numerors_utils.mli  |  2 +-
 .../value/values/numerors/numerors_value.ml   |  2 +-
 .../value/values/numerors/numerors_value.mli  |  2 +-
 src/plugins/value/values/offsm_value.ml       |  2 +-
 src/plugins/value/values/offsm_value.mli      |  2 +-
 src/plugins/value/values/sign_value.ml        |  2 +-
 src/plugins/value/values/sign_value.mli       |  2 +-
 src/plugins/value/values/value_product.ml     |  2 +-
 src/plugins/value/values/value_product.mli    |  2 +-
 src/plugins/value_types/cilE.ml               |  2 +-
 src/plugins/value_types/cilE.mli              |  2 +-
 src/plugins/value_types/cvalue.ml             |  2 +-
 src/plugins/value_types/cvalue.mli            |  2 +-
 src/plugins/value_types/function_Froms.ml     |  2 +-
 src/plugins/value_types/function_Froms.mli    |  2 +-
 src/plugins/value_types/inout_type.ml         |  2 +-
 src/plugins/value_types/inout_type.mli        |  2 +-
 src/plugins/value_types/precise_locs.ml       |  2 +-
 src/plugins/value_types/precise_locs.mli      |  2 +-
 src/plugins/value_types/value_types.ml        |  2 +-
 src/plugins/value_types/value_types.mli       |  2 +-
 src/plugins/value_types/widen_type.ml         |  2 +-
 src/plugins/value_types/widen_type.mli        |  2 +-
 src/plugins/variadic/Makefile.in              |  2 +-
 src/plugins/variadic/Variadic.mli             |  2 +-
 src/plugins/variadic/classify.ml              |  2 +-
 src/plugins/variadic/configure.ac             |  2 +-
 src/plugins/variadic/environment.ml           |  2 +-
 src/plugins/variadic/extends.ml               |  2 +-
 src/plugins/variadic/extends.mli              |  2 +-
 src/plugins/variadic/format_parser.ml         |  2 +-
 src/plugins/variadic/format_parser.mli        |  2 +-
 src/plugins/variadic/format_pprint.ml         |  2 +-
 src/plugins/variadic/format_pprint.mli        |  2 +-
 src/plugins/variadic/format_string.ml         |  2 +-
 src/plugins/variadic/format_typer.ml          |  2 +-
 src/plugins/variadic/format_typer.mli         |  2 +-
 src/plugins/variadic/format_types.mli         |  2 +-
 src/plugins/variadic/generic.ml               |  2 +-
 src/plugins/variadic/options.ml               |  2 +-
 src/plugins/variadic/options.mli              |  2 +-
 src/plugins/variadic/register.ml              |  2 +-
 src/plugins/variadic/replacements.ml          |  2 +-
 src/plugins/variadic/replacements.mli         |  2 +-
 src/plugins/variadic/standard.ml              |  2 +-
 src/plugins/variadic/translate.ml             |  2 +-
 src/plugins/variadic/va_build.ml              |  2 +-
 src/plugins/variadic/va_types.mli             |  2 +-
 src/plugins/wp/AssignsCompleteness.ml         |  2 +-
 src/plugins/wp/AssignsCompleteness.mli        |  2 +-
 src/plugins/wp/Auto.ml                        |  2 +-
 src/plugins/wp/Auto.mli                       |  2 +-
 src/plugins/wp/Cache.ml                       |  2 +-
 src/plugins/wp/Cache.mli                      |  2 +-
 src/plugins/wp/CfgCompiler.ml                 |  2 +-
 src/plugins/wp/CfgCompiler.mli                |  2 +-
 src/plugins/wp/Cfloat.ml                      |  2 +-
 src/plugins/wp/Cfloat.mli                     |  2 +-
 src/plugins/wp/Cint.ml                        |  2 +-
 src/plugins/wp/Cint.mli                       |  2 +-
 src/plugins/wp/Cleaning.ml                    |  2 +-
 src/plugins/wp/Cleaning.mli                   |  2 +-
 src/plugins/wp/Cmath.ml                       |  2 +-
 src/plugins/wp/Cmath.mli                      |  2 +-
 src/plugins/wp/CodeSemantics.ml               |  2 +-
 src/plugins/wp/CodeSemantics.mli              |  2 +-
 src/plugins/wp/Conditions.ml                  |  2 +-
 src/plugins/wp/Conditions.mli                 |  2 +-
 src/plugins/wp/Context.ml                     |  2 +-
 src/plugins/wp/Context.mli                    |  2 +-
 src/plugins/wp/Cstring.ml                     |  2 +-
 src/plugins/wp/Cstring.mli                    |  2 +-
 src/plugins/wp/Cvalues.ml                     |  2 +-
 src/plugins/wp/Cvalues.mli                    |  2 +-
 src/plugins/wp/Definitions.ml                 |  2 +-
 src/plugins/wp/Definitions.mli                |  2 +-
 src/plugins/wp/Factory.ml                     |  2 +-
 src/plugins/wp/Factory.mli                    |  2 +-
 src/plugins/wp/Filtering.ml                   |  2 +-
 src/plugins/wp/Filtering.mli                  |  2 +-
 src/plugins/wp/Footprint.ml                   |  2 +-
 src/plugins/wp/Footprint.mli                  |  2 +-
 src/plugins/wp/Generator.ml                   |  2 +-
 src/plugins/wp/Generator.mli                  |  2 +-
 src/plugins/wp/GuiComposer.ml                 |  2 +-
 src/plugins/wp/GuiComposer.mli                |  2 +-
 src/plugins/wp/GuiConfig.ml                   |  2 +-
 src/plugins/wp/GuiConfig.mli                  |  2 +-
 src/plugins/wp/GuiGoal.ml                     |  2 +-
 src/plugins/wp/GuiGoal.mli                    |  2 +-
 src/plugins/wp/GuiList.ml                     |  2 +-
 src/plugins/wp/GuiList.mli                    |  2 +-
 src/plugins/wp/GuiNavigator.ml                |  2 +-
 src/plugins/wp/GuiNavigator.mli               |  2 +-
 src/plugins/wp/GuiPanel.ml                    |  2 +-
 src/plugins/wp/GuiPanel.mli                   |  2 +-
 src/plugins/wp/GuiProof.ml                    |  2 +-
 src/plugins/wp/GuiProof.mli                   |  2 +-
 src/plugins/wp/GuiProver.ml                   |  2 +-
 src/plugins/wp/GuiProver.mli                  |  2 +-
 src/plugins/wp/GuiSequent.ml                  |  2 +-
 src/plugins/wp/GuiSequent.mli                 |  2 +-
 src/plugins/wp/GuiSource.ml                   |  2 +-
 src/plugins/wp/GuiSource.mli                  |  2 +-
 src/plugins/wp/GuiTactic.ml                   |  2 +-
 src/plugins/wp/GuiTactic.mli                  |  2 +-
 src/plugins/wp/Lang.ml                        |  2 +-
 src/plugins/wp/Lang.mli                       |  2 +-
 src/plugins/wp/Layout.ml                      |  2 +-
 src/plugins/wp/Layout.mli                     |  2 +-
 src/plugins/wp/Letify.ml                      |  2 +-
 src/plugins/wp/Letify.mli                     |  2 +-
 src/plugins/wp/LogicAssigns.ml                |  2 +-
 src/plugins/wp/LogicAssigns.mli               |  2 +-
 src/plugins/wp/LogicBuiltins.ml               |  2 +-
 src/plugins/wp/LogicBuiltins.mli              |  2 +-
 src/plugins/wp/LogicCompiler.ml               |  2 +-
 src/plugins/wp/LogicCompiler.mli              |  2 +-
 src/plugins/wp/LogicSemantics.ml              |  2 +-
 src/plugins/wp/LogicSemantics.mli             |  2 +-
 src/plugins/wp/LogicUsage.ml                  |  2 +-
 src/plugins/wp/LogicUsage.mli                 |  2 +-
 src/plugins/wp/Makefile.in                    |  2 +-
 src/plugins/wp/Matrix.ml                      |  2 +-
 src/plugins/wp/Matrix.mli                     |  2 +-
 src/plugins/wp/MemEmpty.ml                    |  2 +-
 src/plugins/wp/MemEmpty.mli                   |  2 +-
 src/plugins/wp/MemLoader.ml                   |  2 +-
 src/plugins/wp/MemLoader.mli                  |  2 +-
 src/plugins/wp/MemMemory.ml                   |  2 +-
 src/plugins/wp/MemMemory.mli                  |  2 +-
 src/plugins/wp/MemRegion.ml                   |  2 +-
 src/plugins/wp/MemRegion.mli                  |  2 +-
 src/plugins/wp/MemTyped.ml                    |  2 +-
 src/plugins/wp/MemTyped.mli                   |  2 +-
 src/plugins/wp/MemVar.ml                      |  2 +-
 src/plugins/wp/MemVar.mli                     |  2 +-
 src/plugins/wp/MemZeroAlias.ml                |  2 +-
 src/plugins/wp/MemZeroAlias.mli               |  2 +-
 src/plugins/wp/MemoryContext.ml               |  2 +-
 src/plugins/wp/MemoryContext.mli              |  2 +-
 src/plugins/wp/Mstate.ml                      |  2 +-
 src/plugins/wp/Mstate.mli                     |  2 +-
 src/plugins/wp/Passive.ml                     |  2 +-
 src/plugins/wp/Passive.mli                    |  2 +-
 src/plugins/wp/Pcfg.ml                        |  2 +-
 src/plugins/wp/Pcfg.mli                       |  2 +-
 src/plugins/wp/Pcond.ml                       |  2 +-
 src/plugins/wp/Pcond.mli                      |  2 +-
 src/plugins/wp/Plang.ml                       |  2 +-
 src/plugins/wp/Plang.mli                      |  2 +-
 src/plugins/wp/ProofEngine.ml                 |  2 +-
 src/plugins/wp/ProofEngine.mli                |  2 +-
 src/plugins/wp/ProofScript.ml                 |  2 +-
 src/plugins/wp/ProofScript.mli                |  2 +-
 src/plugins/wp/ProofSession.ml                |  2 +-
 src/plugins/wp/ProofSession.mli               |  2 +-
 src/plugins/wp/ProverCoq.ml                   |  2 +-
 src/plugins/wp/ProverCoq.mli                  |  2 +-
 src/plugins/wp/ProverErgo.ml                  |  2 +-
 src/plugins/wp/ProverErgo.mli                 |  2 +-
 src/plugins/wp/ProverScript.ml                |  2 +-
 src/plugins/wp/ProverScript.mli               |  2 +-
 src/plugins/wp/ProverSearch.ml                |  2 +-
 src/plugins/wp/ProverSearch.mli               |  2 +-
 src/plugins/wp/ProverTask.ml                  |  2 +-
 src/plugins/wp/ProverTask.mli                 |  2 +-
 src/plugins/wp/ProverWhy3.ml                  |  2 +-
 src/plugins/wp/ProverWhy3.mli                 |  2 +-
 src/plugins/wp/RefUsage.ml                    |  2 +-
 src/plugins/wp/RefUsage.mli                   |  2 +-
 src/plugins/wp/Region.ml                      |  2 +-
 src/plugins/wp/Region.mli                     |  2 +-
 src/plugins/wp/RegionAccess.ml                |  2 +-
 src/plugins/wp/RegionAccess.mli               |  2 +-
 src/plugins/wp/RegionAnalysis.ml              |  2 +-
 src/plugins/wp/RegionAnalysis.mli             |  2 +-
 src/plugins/wp/RegionAnnot.ml                 |  2 +-
 src/plugins/wp/RegionAnnot.mli                |  2 +-
 src/plugins/wp/RegionDump.ml                  |  2 +-
 src/plugins/wp/RegionDump.mli                 |  2 +-
 src/plugins/wp/Repr.ml                        |  2 +-
 src/plugins/wp/Repr.mli                       |  2 +-
 src/plugins/wp/Sigma.ml                       |  2 +-
 src/plugins/wp/Sigma.mli                      |  2 +-
 src/plugins/wp/Sigs.ml                        |  2 +-
 src/plugins/wp/Splitter.ml                    |  2 +-
 src/plugins/wp/Splitter.mli                   |  2 +-
 src/plugins/wp/StmtSemantics.ml               |  2 +-
 src/plugins/wp/StmtSemantics.mli              |  2 +-
 src/plugins/wp/Strategy.ml                    |  2 +-
 src/plugins/wp/Strategy.mli                   |  2 +-
 src/plugins/wp/TacArray.ml                    |  2 +-
 src/plugins/wp/TacArray.mli                   |  2 +-
 src/plugins/wp/TacBitrange.ml                 |  2 +-
 src/plugins/wp/TacBitrange.mli                |  2 +-
 src/plugins/wp/TacBittest.ml                  |  2 +-
 src/plugins/wp/TacBittest.mli                 |  2 +-
 src/plugins/wp/TacBitwised.ml                 |  2 +-
 src/plugins/wp/TacBitwised.mli                |  2 +-
 src/plugins/wp/TacChoice.ml                   |  2 +-
 src/plugins/wp/TacChoice.mli                  |  2 +-
 src/plugins/wp/TacCompound.ml                 |  2 +-
 src/plugins/wp/TacCompound.mli                |  2 +-
 src/plugins/wp/TacCongruence.ml               |  2 +-
 src/plugins/wp/TacCongruence.mli              |  2 +-
 src/plugins/wp/TacCut.ml                      |  2 +-
 src/plugins/wp/TacCut.mli                     |  2 +-
 src/plugins/wp/TacFilter.ml                   |  2 +-
 src/plugins/wp/TacFilter.mli                  |  2 +-
 src/plugins/wp/TacHavoc.ml                    |  2 +-
 src/plugins/wp/TacHavoc.mli                   |  2 +-
 src/plugins/wp/TacInduction.ml                |  2 +-
 src/plugins/wp/TacInduction.mli               |  2 +-
 src/plugins/wp/TacInstance.ml                 |  2 +-
 src/plugins/wp/TacInstance.mli                |  2 +-
 src/plugins/wp/TacLemma.ml                    |  2 +-
 src/plugins/wp/TacLemma.mli                   |  2 +-
 src/plugins/wp/TacNormalForm.ml               |  2 +-
 src/plugins/wp/TacNormalForm.mli              |  2 +-
 src/plugins/wp/TacOverflow.ml                 |  2 +-
 src/plugins/wp/TacOverflow.mli                |  2 +-
 src/plugins/wp/TacRange.ml                    |  2 +-
 src/plugins/wp/TacRange.mli                   |  2 +-
 src/plugins/wp/TacRewrite.ml                  |  2 +-
 src/plugins/wp/TacRewrite.mli                 |  2 +-
 src/plugins/wp/TacSequence.ml                 |  2 +-
 src/plugins/wp/TacSequence.mli                |  2 +-
 src/plugins/wp/TacShift.ml                    |  2 +-
 src/plugins/wp/TacShift.mli                   |  2 +-
 src/plugins/wp/TacSplit.ml                    |  2 +-
 src/plugins/wp/TacSplit.mli                   |  2 +-
 src/plugins/wp/TacUnfold.ml                   |  2 +-
 src/plugins/wp/TacUnfold.mli                  |  2 +-
 src/plugins/wp/Tactical.ml                    |  2 +-
 src/plugins/wp/Tactical.mli                   |  2 +-
 src/plugins/wp/VC.ml                          |  2 +-
 src/plugins/wp/VC.mli                         |  2 +-
 src/plugins/wp/VCS.ml                         |  2 +-
 src/plugins/wp/VCS.mli                        |  2 +-
 src/plugins/wp/Vlist.ml                       |  2 +-
 src/plugins/wp/Vlist.mli                      |  2 +-
 src/plugins/wp/Vset.ml                        |  2 +-
 src/plugins/wp/Vset.mli                       |  2 +-
 src/plugins/wp/Warning.ml                     |  2 +-
 src/plugins/wp/Warning.mli                    |  2 +-
 src/plugins/wp/Why3Provers.ml                 |  2 +-
 src/plugins/wp/Why3Provers.mli                |  2 +-
 src/plugins/wp/WpTac.ml                       |  2 +-
 src/plugins/wp/WpTac.mli                      |  2 +-
 src/plugins/wp/calculus.ml                    |  2 +-
 src/plugins/wp/calculus.mli                   |  2 +-
 src/plugins/wp/cfgDump.ml                     |  2 +-
 src/plugins/wp/cfgDump.mli                    |  2 +-
 src/plugins/wp/cfgWP.ml                       |  2 +-
 src/plugins/wp/cfgWP.mli                      |  2 +-
 src/plugins/wp/cil2cfg.ml                     |  2 +-
 src/plugins/wp/cil2cfg.mli                    |  2 +-
 src/plugins/wp/clabels.ml                     |  2 +-
 src/plugins/wp/clabels.mli                    |  2 +-
 src/plugins/wp/configure.ac                   |  2 +-
 src/plugins/wp/ctypes.ml                      |  2 +-
 src/plugins/wp/ctypes.mli                     |  2 +-
 src/plugins/wp/driver.mli                     |  2 +-
 src/plugins/wp/driver.mll                     |  2 +-
 src/plugins/wp/dyncall.ml                     |  2 +-
 src/plugins/wp/dyncall.mli                    |  2 +-
 src/plugins/wp/filter_axioms.ml               |  2 +-
 src/plugins/wp/filter_axioms.mli              |  2 +-
 src/plugins/wp/intro_wp.txt                   |  2 +-
 src/plugins/wp/mcfg.ml                        |  2 +-
 src/plugins/wp/normAtLabels.ml                |  2 +-
 src/plugins/wp/normAtLabels.mli               |  2 +-
 src/plugins/wp/proof.ml                       |  2 +-
 src/plugins/wp/proof.mli                      |  2 +-
 src/plugins/wp/prover.ml                      |  2 +-
 src/plugins/wp/prover.mli                     |  2 +-
 src/plugins/wp/register.ml                    |  2 +-
 src/plugins/wp/rformat.mli                    |  2 +-
 src/plugins/wp/rformat.mll                    |  2 +-
 src/plugins/wp/script.mli                     |  2 +-
 src/plugins/wp/script.mll                     |  2 +-
 src/plugins/wp/share/Makefile.coqwp           |  2 +-
 src/plugins/wp/share/Makefile.resources       |  2 +-
 src/plugins/wp/share/coqwp/ArcTrigo.v         |  2 +-
 src/plugins/wp/share/coqwp/Bits.v             |  2 +-
 src/plugins/wp/share/coqwp/Cbits.v            |  2 +-
 src/plugins/wp/share/coqwp/Cfloat.v           |  2 +-
 src/plugins/wp/share/coqwp/Cint.v             |  2 +-
 src/plugins/wp/share/coqwp/Cmath.v            |  2 +-
 src/plugins/wp/share/coqwp/ExpLog.v           |  2 +-
 src/plugins/wp/share/coqwp/Memory.v           |  2 +-
 src/plugins/wp/share/coqwp/Qed.v              |  2 +-
 src/plugins/wp/share/coqwp/Qedlib.v           |  2 +-
 src/plugins/wp/share/coqwp/Square.v           |  2 +-
 src/plugins/wp/share/coqwp/Vlist.v            |  2 +-
 src/plugins/wp/share/coqwp/Vset.v             |  2 +-
 src/plugins/wp/share/coqwp/Zbits.v            |  2 +-
 src/plugins/wp/share/ergo/ArcTrigo.mlw        |  2 +-
 src/plugins/wp/share/ergo/Cbits.mlw           |  2 +-
 src/plugins/wp/share/ergo/Cfloat.mlw          |  2 +-
 src/plugins/wp/share/ergo/Cint.mlw            |  2 +-
 src/plugins/wp/share/ergo/Cmath.mlw           |  2 +-
 src/plugins/wp/share/ergo/ExpLog.mlw          |  2 +-
 src/plugins/wp/share/ergo/Memory.mlw          |  2 +-
 src/plugins/wp/share/ergo/Qed.mlw             |  2 +-
 src/plugins/wp/share/ergo/Square.mlw          |  2 +-
 src/plugins/wp/share/ergo/Vlist.mlw           |  2 +-
 src/plugins/wp/share/ergo/Vset.mlw            |  2 +-
 src/plugins/wp/share/install.ml               |  2 +-
 .../wp/share/why3/frama_c_wp/cbits.mlw        |  2 +-
 .../wp/share/why3/frama_c_wp/cfloat.mlw       |  2 +-
 src/plugins/wp/share/why3/frama_c_wp/cint.mlw |  2 +-
 .../wp/share/why3/frama_c_wp/cmath.mlw        |  2 +-
 .../wp/share/why3/frama_c_wp/memory.mlw       |  2 +-
 src/plugins/wp/share/why3/frama_c_wp/qed.mlw  |  2 +-
 .../wp/share/why3/frama_c_wp/vlist.mlw        |  2 +-
 src/plugins/wp/share/why3/frama_c_wp/vset.mlw |  2 +-
 src/plugins/wp/share/wp.driver                |  2 +-
 src/plugins/wp/wpAnnot.ml                     |  2 +-
 src/plugins/wp/wpAnnot.mli                    |  2 +-
 src/plugins/wp/wpContext.ml                   |  2 +-
 src/plugins/wp/wpContext.mli                  |  2 +-
 src/plugins/wp/wpPropId.ml                    |  2 +-
 src/plugins/wp/wpPropId.mli                   |  2 +-
 src/plugins/wp/wpRTE.ml                       |  2 +-
 src/plugins/wp/wpRTE.mli                      |  2 +-
 src/plugins/wp/wpReached.ml                   |  2 +-
 src/plugins/wp/wpReached.mli                  |  2 +-
 src/plugins/wp/wpReport.ml                    |  2 +-
 src/plugins/wp/wpReport.mli                   |  2 +-
 src/plugins/wp/wpStrategy.ml                  |  2 +-
 src/plugins/wp/wpStrategy.mli                 |  2 +-
 src/plugins/wp/wpTarget.ml                    |  2 +-
 src/plugins/wp/wpTarget.mli                   |  2 +-
 src/plugins/wp/wp_error.ml                    |  2 +-
 src/plugins/wp/wp_error.mli                   |  2 +-
 src/plugins/wp/wp_parameters.ml               |  2 +-
 src/plugins/wp/wp_parameters.mli              |  2 +-
 src/plugins/wp/wpo.ml                         |  2 +-
 src/plugins/wp/wpo.mli                        |  2 +-
 src/plugins/wp/wprop.ml                       |  2 +-
 src/plugins/wp/wprop.mli                      |  2 +-
 1546 files changed, 1568 insertions(+), 1545 deletions(-)

diff --git a/Makefile b/Makefile
index 73227de03b3..43d9049ae82 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/Makefile.generating b/Makefile.generating
index 256316a60eb..b98dc5e96eb 100644
--- a/Makefile.generating
+++ b/Makefile.generating
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/frama-c b/bin/frama-c
index 4591141e085..67b40aeeebf 100755
--- a/bin/frama-c
+++ b/bin/frama-c
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/frama-c-config b/bin/frama-c-config
index fb19e40f476..179b9c6cb87 100755
--- a/bin/frama-c-config
+++ b/bin/frama-c-config
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/frama-c-gui b/bin/frama-c-gui
index 340da619cf3..7f457cdf63b 100755
--- a/bin/frama-c-gui
+++ b/bin/frama-c-gui
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/frama-c-gui.byte b/bin/frama-c-gui.byte
index 4dbe8b681ef..c2374aaadc3 100755
--- a/bin/frama-c-gui.byte
+++ b/bin/frama-c-gui.byte
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/frama-c-script b/bin/frama-c-script
index aef3ebe68fb..7b63bf7f459 100755
--- a/bin/frama-c-script
+++ b/bin/frama-c-script
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/frama-c.byte b/bin/frama-c.byte
index 8004185ca62..320daa529c9 100755
--- a/bin/frama-c.byte
+++ b/bin/frama-c.byte
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/frama-c.debug b/bin/frama-c.debug
index 2e110a0af4c..d4313e98971 100755
--- a/bin/frama-c.debug
+++ b/bin/frama-c.debug
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/frama-c.top b/bin/frama-c.top
index 1d719ec35a7..912999576be 100755
--- a/bin/frama-c.top
+++ b/bin/frama-c.top
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/local_export.sh b/bin/local_export.sh
index f15839acbf8..af1d44a02ab 100644
--- a/bin/local_export.sh
+++ b/bin/local_export.sh
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/migration_scripts/aluminium2silicon.sh b/bin/migration_scripts/aluminium2silicon.sh
index 6f82d630bbd..a6b1cf3c2e5 100755
--- a/bin/migration_scripts/aluminium2silicon.sh
+++ b/bin/migration_scripts/aluminium2silicon.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/migration_scripts/boron2carbon.sh b/bin/migration_scripts/boron2carbon.sh
index cdbfcb12a4a..b2326e3208e 100755
--- a/bin/migration_scripts/boron2carbon.sh
+++ b/bin/migration_scripts/boron2carbon.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/migration_scripts/calcium2scandium.sh b/bin/migration_scripts/calcium2scandium.sh
index f1c05c3634d..57aab1950a1 100755
--- a/bin/migration_scripts/calcium2scandium.sh
+++ b/bin/migration_scripts/calcium2scandium.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/migration_scripts/carbon2nitrogen.sh b/bin/migration_scripts/carbon2nitrogen.sh
index 582abb9e9a6..6a51e495c0f 100755
--- a/bin/migration_scripts/carbon2nitrogen.sh
+++ b/bin/migration_scripts/carbon2nitrogen.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/migration_scripts/chlorine2argon.sh b/bin/migration_scripts/chlorine2argon.sh
index d692a9a6aa7..248bb8d00db 100755
--- a/bin/migration_scripts/chlorine2argon.sh
+++ b/bin/migration_scripts/chlorine2argon.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/migration_scripts/fluorine2neon.sh b/bin/migration_scripts/fluorine2neon.sh
index af36c89cccb..bbc63755461 100755
--- a/bin/migration_scripts/fluorine2neon.sh
+++ b/bin/migration_scripts/fluorine2neon.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/migration_scripts/lithium2beryllium.sh b/bin/migration_scripts/lithium2beryllium.sh
index d7f6112c9ff..5cbc18ed188 100755
--- a/bin/migration_scripts/lithium2beryllium.sh
+++ b/bin/migration_scripts/lithium2beryllium.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/migration_scripts/magnesium2aluminium.sh b/bin/migration_scripts/magnesium2aluminium.sh
index 0ab552b0378..e115813143d 100755
--- a/bin/migration_scripts/magnesium2aluminium.sh
+++ b/bin/migration_scripts/magnesium2aluminium.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/migration_scripts/neon2sodium.sh b/bin/migration_scripts/neon2sodium.sh
index 56dc8480ea3..4104e5a2432 100755
--- a/bin/migration_scripts/neon2sodium.sh
+++ b/bin/migration_scripts/neon2sodium.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/migration_scripts/nitrogen2oxygen.sh b/bin/migration_scripts/nitrogen2oxygen.sh
index dd78f56b415..ec6c6a10f5e 100755
--- a/bin/migration_scripts/nitrogen2oxygen.sh
+++ b/bin/migration_scripts/nitrogen2oxygen.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/migration_scripts/oxygen2fluorine.sh b/bin/migration_scripts/oxygen2fluorine.sh
index 276cb79ea49..ed9006f6705 100755
--- a/bin/migration_scripts/oxygen2fluorine.sh
+++ b/bin/migration_scripts/oxygen2fluorine.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/migration_scripts/phosphorus2sulfur.sh b/bin/migration_scripts/phosphorus2sulfur.sh
index a0686e06e19..8161719d13c 100755
--- a/bin/migration_scripts/phosphorus2sulfur.sh
+++ b/bin/migration_scripts/phosphorus2sulfur.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/migration_scripts/potassium2calcium.sh b/bin/migration_scripts/potassium2calcium.sh
index 4dca5da59ed..a1c4e97f149 100755
--- a/bin/migration_scripts/potassium2calcium.sh
+++ b/bin/migration_scripts/potassium2calcium.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/migration_scripts/silicon2phosphorus.sh b/bin/migration_scripts/silicon2phosphorus.sh
index d30271db891..b258851c9d1 100755
--- a/bin/migration_scripts/silicon2phosphorus.sh
+++ b/bin/migration_scripts/silicon2phosphorus.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/migration_scripts/sodium2magnesium.sh b/bin/migration_scripts/sodium2magnesium.sh
index 51923b5b68c..5389a11af45 100755
--- a/bin/migration_scripts/sodium2magnesium.sh
+++ b/bin/migration_scripts/sodium2magnesium.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/migration_scripts/sulfur2chlorine.sh b/bin/migration_scripts/sulfur2chlorine.sh
index 5f1b519671f..1e74de307cf 100755
--- a/bin/migration_scripts/sulfur2chlorine.sh
+++ b/bin/migration_scripts/sulfur2chlorine.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/bin/migration_scripts/titanium2vanadium.sh b/bin/migration_scripts/titanium2vanadium.sh
index 1a6483bd3df..7c1b304029c 100755
--- a/bin/migration_scripts/titanium2vanadium.sh
+++ b/bin/migration_scripts/titanium2vanadium.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/config.h.in b/config.h.in
index 73665676f86..058412293e3 100644
--- a/config.h.in
+++ b/config.h.in
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/configure.in b/configure.in
index f9f82982205..6b5b5f346f9 100644
--- a/configure.in
+++ b/configure.in
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA   (Commissariat à l'énergie atomique et aux énergies            #
 #           alternatives)                                                #
 #    INRIA (Institut National de Recherche en Informatique et en         #
diff --git a/doc/Makefile b/doc/Makefile
index 027093e6b70..ff99da48980 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/doc/code/docgen.ml b/doc/code/docgen.ml
index 6b2ea3937c0..3e91c13dd95 100644
--- a/doc/code/docgen.ml
+++ b/doc/code/docgen.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/doc/code/intro_kernel_plugin.txt b/doc/code/intro_kernel_plugin.txt
index e05c67872b8..015f039f82c 100644
--- a/doc/code/intro_kernel_plugin.txt
+++ b/doc/code/intro_kernel_plugin.txt
@@ -2,7 +2,7 @@
 #*                                                                        #
 #*  This file is part of Frama-C.                                         #
 #*                                                                        #
-#*  Copyright (C) 2007-2020                                               #
+#*  Copyright (C) 2007-2021                                               #
 #*    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #*         alternatives)                                                  #
 #*                                                                        #
diff --git a/doc/code/intro_occurrence.txt b/doc/code/intro_occurrence.txt
index 7fe94150ecc..cd731bb7ad2 100644
--- a/doc/code/intro_occurrence.txt
+++ b/doc/code/intro_occurrence.txt
@@ -2,7 +2,7 @@
 #*                                                                        #
 #*  This file is part of Frama-C.                                         #
 #*                                                                        #
-#*  Copyright (C) 2007-2020                                               #
+#*  Copyright (C) 2007-2021                                               #
 #*    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #*         alternatives)                                                  #
 #*                                                                        #
diff --git a/doc/code/intro_pdg.txt b/doc/code/intro_pdg.txt
index 18e834e068b..0f8f3c18bfd 100644
--- a/doc/code/intro_pdg.txt
+++ b/doc/code/intro_pdg.txt
@@ -2,7 +2,7 @@
 #*                                                                        #
 #*  This file is part of Frama-C.                                         #
 #*                                                                        #
-#*  Copyright (C) 2007-2020                                               #
+#*  Copyright (C) 2007-2021                                               #
 #*    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #*         alternatives)                                                  #
 #*                                                                        #
diff --git a/doc/code/intro_plugin.txt b/doc/code/intro_plugin.txt
index 488596f6966..882db0cbd93 100644
--- a/doc/code/intro_plugin.txt
+++ b/doc/code/intro_plugin.txt
@@ -2,7 +2,7 @@
 #*                                                                        #
 #*  This file is part of Frama-C.                                         #
 #*                                                                        #
-#*  Copyright (C) 2007-2020                                               #
+#*  Copyright (C) 2007-2021                                               #
 #*    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #*         alternatives)                                                  #
 #*                                                                        #
diff --git a/doc/code/intro_plugin_D_and_S.txt b/doc/code/intro_plugin_D_and_S.txt
index 2c5e5d03de0..4f9120aa73f 100644
--- a/doc/code/intro_plugin_D_and_S.txt
+++ b/doc/code/intro_plugin_D_and_S.txt
@@ -2,7 +2,7 @@
 #*                                                                        #
 #*  This file is part of Frama-C.                                         #
 #*                                                                        #
-#*  Copyright (C) 2007-2020                                               #
+#*  Copyright (C) 2007-2021                                               #
 #*    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #*         alternatives)                                                  #
 #*                                                                        #
diff --git a/doc/code/intro_plugin_default.txt b/doc/code/intro_plugin_default.txt
index 6f9ec31a5d4..97fe7b570b4 100644
--- a/doc/code/intro_plugin_default.txt
+++ b/doc/code/intro_plugin_default.txt
@@ -2,7 +2,7 @@
 #*                                                                        #
 #*  This file is part of Frama-C.                                         #
 #*                                                                        #
-#*  Copyright (C) 2007-2020                                               #
+#*  Copyright (C) 2007-2021                                               #
 #*    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #*         alternatives)                                                  #
 #*                                                                        #
diff --git a/doc/code/intro_scope.txt b/doc/code/intro_scope.txt
index 2e04e6bdd87..f8b96076a5b 100644
--- a/doc/code/intro_scope.txt
+++ b/doc/code/intro_scope.txt
@@ -2,7 +2,7 @@
 #*                                                                        #
 #*  This file is part of Frama-C.                                         #
 #*                                                                        #
-#*  Copyright (C) 2007-2020                                               #
+#*  Copyright (C) 2007-2021                                               #
 #*    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #*         alternatives)                                                  #
 #*                                                                        #
diff --git a/doc/code/intro_slicing.txt b/doc/code/intro_slicing.txt
index c5c535c2e7f..c2597efdb06 100644
--- a/doc/code/intro_slicing.txt
+++ b/doc/code/intro_slicing.txt
@@ -2,7 +2,7 @@
 #*                                                                        #
 #*  This file is part of Frama-C.                                         #
 #*                                                                        #
-#*  Copyright (C) 2007-2020                                               #
+#*  Copyright (C) 2007-2021                                               #
 #*    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #*         alternatives)                                                  #
 #*                                                                        #
diff --git a/doc/code/intro_sparecode.txt b/doc/code/intro_sparecode.txt
index 739ff894924..0885e997ca5 100644
--- a/doc/code/intro_sparecode.txt
+++ b/doc/code/intro_sparecode.txt
@@ -2,7 +2,7 @@
 #*                                                                        #
 #*  This file is part of Frama-C.                                         #
 #*                                                                        #
-#*  Copyright (C) 2007-2020                                               #
+#*  Copyright (C) 2007-2021                                               #
 #*    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #*         alternatives)                                                  #
 #*                                                                        #
diff --git a/doc/code/style.css b/doc/code/style.css
index ad650ef54ef..62cb2215871 100644
--- a/doc/code/style.css
+++ b/doc/code/style.css
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/doc/code/toc_head.htm b/doc/code/toc_head.htm
index e5a21cd3dce..5d759327e86 100644
--- a/doc/code/toc_head.htm
+++ b/doc/code/toc_head.htm
@@ -2,7 +2,7 @@
 <!--                                                                        -->
 <!--  This file is part of Frama-C.                                         -->
 <!--                                                                        -->
-<!--  Copyright (C) 2007-2020                                               -->
+<!--  Copyright (C) 2007-2021                                               -->
 <!--    CEA (Commissariat à l'énergie atomique et aux énergies              -->
 <!--         alternatives)                                                  -->
 <!--                                                                        -->
diff --git a/doc/code/toc_tail.htm b/doc/code/toc_tail.htm
index 5deac195ef9..4576a325f5e 100644
--- a/doc/code/toc_tail.htm
+++ b/doc/code/toc_tail.htm
@@ -2,7 +2,7 @@
 <!--                                                                        -->
 <!--  This file is part of Frama-C.                                         -->
 <!--                                                                        -->
-<!--  Copyright (C) 2007-2020                                               -->
+<!--  Copyright (C) 2007-2021                                               -->
 <!--    CEA (Commissariat à l'énergie atomique et aux énergies              -->
 <!--         alternatives)                                                  -->
 <!--                                                                        -->
diff --git a/headers/check-headers.sh b/headers/check-headers.sh
index 7371d40cbf0..f0c9427e6dc 100755
--- a/headers/check-headers.sh
+++ b/headers/check-headers.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/headers/close-source/ACSL_EL b/headers/close-source/ACSL_EL
index 1b3fc5f2e92..e216489705b 100644
--- a/headers/close-source/ACSL_EL
+++ b/headers/close-source/ACSL_EL
@@ -4,7 +4,7 @@ This file is part of Frama-C.
 Copyright (C) 2008-2011
   Pierre Roux
 
-Copyright (C) 2009-2020
+Copyright (C) 2009-2021
   CEA LIST
 
 you can redistribute it and/or modify it under the terms of the GNU
diff --git a/headers/close-source/AORAI_LGPL b/headers/close-source/AORAI_LGPL
index 0697a17833e..48f6e27d846 100644
--- a/headers/close-source/AORAI_LGPL
+++ b/headers/close-source/AORAI_LGPL
@@ -1,7 +1,7 @@
 
 This file is part of Aorai plug-in of Frama-C.
 
-Copyright (C) 2007-2020
+Copyright (C) 2007-2021
   CEA (Commissariat à l'énergie atomique et aux énergies
        alternatives)
   INRIA (Institut National de Recherche en Informatique et en
diff --git a/headers/close-source/CEA_INRIA_LGPL b/headers/close-source/CEA_INRIA_LGPL
index 8152373f479..5bce9faa9b9 100644
--- a/headers/close-source/CEA_INRIA_LGPL
+++ b/headers/close-source/CEA_INRIA_LGPL
@@ -1,7 +1,7 @@
 
 This file is part of Frama-C.
 
-Copyright (C) 2007-2020
+Copyright (C) 2007-2021
   CEA   (Commissariat à l'énergie atomique et aux énergies
          alternatives)
   INRIA (Institut National de Recherche en Informatique et en
diff --git a/headers/close-source/CEA_LGPL b/headers/close-source/CEA_LGPL
index 70f42f896ed..ef45e8ab176 100644
--- a/headers/close-source/CEA_LGPL
+++ b/headers/close-source/CEA_LGPL
@@ -1,7 +1,7 @@
 
 This file is part of Frama-C.
 
-Copyright (C) 2007-2020
+Copyright (C) 2007-2021
   CEA (Commissariat à l'énergie atomique et aux énergies
        alternatives)
 
diff --git a/headers/close-source/CEA_LGPL_OR_PROPRIETARY b/headers/close-source/CEA_LGPL_OR_PROPRIETARY
index bf247f1b11a..02ef46f3046 100644
--- a/headers/close-source/CEA_LGPL_OR_PROPRIETARY
+++ b/headers/close-source/CEA_LGPL_OR_PROPRIETARY
@@ -1,7 +1,7 @@
 
 This file is part of Frama-C.
 
-Copyright (C) 2007-2020
+Copyright (C) 2007-2021
   CEA (Commissariat à l'énergie atomique et aux énergies
        alternatives)
 
diff --git a/headers/close-source/CEA_PROPRIETARY b/headers/close-source/CEA_PROPRIETARY
index bf247f1b11a..02ef46f3046 100644
--- a/headers/close-source/CEA_PROPRIETARY
+++ b/headers/close-source/CEA_PROPRIETARY
@@ -1,7 +1,7 @@
 
 This file is part of Frama-C.
 
-Copyright (C) 2007-2020
+Copyright (C) 2007-2021
   CEA (Commissariat à l'énergie atomique et aux énergies
        alternatives)
 
diff --git a/headers/close-source/CEA_WP b/headers/close-source/CEA_WP
index 37804da0391..d44424694f0 100644
--- a/headers/close-source/CEA_WP
+++ b/headers/close-source/CEA_WP
@@ -1,7 +1,7 @@
 
 This file is part of WP plug-in of Frama-C.
 
-Copyright (C) 2007-2020
+Copyright (C) 2007-2021
   CEA (Commissariat a l'energie atomique et aux energies
        alternatives)
 
diff --git a/headers/headache.sh b/headers/headache.sh
index c01ed4d139c..3fcd9d37928 100755
--- a/headers/headache.sh
+++ b/headers/headache.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/headers/open-source/ACSL_EL b/headers/open-source/ACSL_EL
index 1b3fc5f2e92..e216489705b 100644
--- a/headers/open-source/ACSL_EL
+++ b/headers/open-source/ACSL_EL
@@ -4,7 +4,7 @@ This file is part of Frama-C.
 Copyright (C) 2008-2011
   Pierre Roux
 
-Copyright (C) 2009-2020
+Copyright (C) 2009-2021
   CEA LIST
 
 you can redistribute it and/or modify it under the terms of the GNU
diff --git a/headers/open-source/AORAI_LGPL b/headers/open-source/AORAI_LGPL
index 0697a17833e..48f6e27d846 100644
--- a/headers/open-source/AORAI_LGPL
+++ b/headers/open-source/AORAI_LGPL
@@ -1,7 +1,7 @@
 
 This file is part of Aorai plug-in of Frama-C.
 
-Copyright (C) 2007-2020
+Copyright (C) 2007-2021
   CEA (Commissariat à l'énergie atomique et aux énergies
        alternatives)
   INRIA (Institut National de Recherche en Informatique et en
diff --git a/headers/open-source/CEA_INRIA_LGPL b/headers/open-source/CEA_INRIA_LGPL
index 8152373f479..5bce9faa9b9 100644
--- a/headers/open-source/CEA_INRIA_LGPL
+++ b/headers/open-source/CEA_INRIA_LGPL
@@ -1,7 +1,7 @@
 
 This file is part of Frama-C.
 
-Copyright (C) 2007-2020
+Copyright (C) 2007-2021
   CEA   (Commissariat à l'énergie atomique et aux énergies
          alternatives)
   INRIA (Institut National de Recherche en Informatique et en
diff --git a/headers/open-source/CEA_LGPL b/headers/open-source/CEA_LGPL
index 70f42f896ed..ef45e8ab176 100644
--- a/headers/open-source/CEA_LGPL
+++ b/headers/open-source/CEA_LGPL
@@ -1,7 +1,7 @@
 
 This file is part of Frama-C.
 
-Copyright (C) 2007-2020
+Copyright (C) 2007-2021
   CEA (Commissariat à l'énergie atomique et aux énergies
        alternatives)
 
diff --git a/headers/open-source/CEA_LGPL_OR_PROPRIETARY b/headers/open-source/CEA_LGPL_OR_PROPRIETARY
index 70f42f896ed..ef45e8ab176 100644
--- a/headers/open-source/CEA_LGPL_OR_PROPRIETARY
+++ b/headers/open-source/CEA_LGPL_OR_PROPRIETARY
@@ -1,7 +1,7 @@
 
 This file is part of Frama-C.
 
-Copyright (C) 2007-2020
+Copyright (C) 2007-2021
   CEA (Commissariat à l'énergie atomique et aux énergies
        alternatives)
 
diff --git a/headers/open-source/CEA_PROPRIETARY b/headers/open-source/CEA_PROPRIETARY
index bf247f1b11a..02ef46f3046 100644
--- a/headers/open-source/CEA_PROPRIETARY
+++ b/headers/open-source/CEA_PROPRIETARY
@@ -1,7 +1,7 @@
 
 This file is part of Frama-C.
 
-Copyright (C) 2007-2020
+Copyright (C) 2007-2021
   CEA (Commissariat à l'énergie atomique et aux énergies
        alternatives)
 
diff --git a/headers/open-source/CEA_WP b/headers/open-source/CEA_WP
index e122d92105b..fddf373e15a 100644
--- a/headers/open-source/CEA_WP
+++ b/headers/open-source/CEA_WP
@@ -1,7 +1,7 @@
 
 This file is part of WP plug-in of Frama-C.
 
-Copyright (C) 2007-2020
+Copyright (C) 2007-2021
   CEA (Commissariat a l'energie atomique et aux energies
        alternatives)
 
diff --git a/headers/updates-headers.sh b/headers/updates-headers.sh
index 9c3786aef0e..c34f4775cf2 100755
--- a/headers/updates-headers.sh
+++ b/headers/updates-headers.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/man/frama-c.1 b/man/frama-c.1
index b2b5cfc6871..5fd39c4a751 100644
--- a/man/frama-c.1
+++ b/man/frama-c.1
@@ -2,7 +2,7 @@
 .\"                                                                        
 .\"  This file is part of Frama-C.                                         
 .\"                                                                        
-.\"  Copyright (C) 2007-2020                                               
+.\"  Copyright (C) 2007-2021                                               
 .\"    CEA (Commissariat à l'énergie atomique et aux énergies              
 .\"         alternatives)                                                  
 .\"                                                                        
diff --git a/ptests/ptests.ml b/ptests/ptests.ml
index e307c4a3ff5..829178387d7 100644
--- a/ptests/ptests.ml
+++ b/ptests/ptests.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/share/Makefile.clean b/share/Makefile.clean
index 2fc3624d681..17d241efb50 100644
--- a/share/Makefile.clean
+++ b/share/Makefile.clean
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/Makefile.common b/share/Makefile.common
index affc7756361..fb4f37394e1 100644
--- a/share/Makefile.common
+++ b/share/Makefile.common
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/Makefile.config.in b/share/Makefile.config.in
index 40a619d925c..06e6dd9f025 100644
--- a/share/Makefile.config.in
+++ b/share/Makefile.config.in
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/Makefile.dynamic b/share/Makefile.dynamic
index 5b5340c79d1..080526de2a7 100644
--- a/share/Makefile.dynamic
+++ b/share/Makefile.dynamic
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/Makefile.dynamic_config.external b/share/Makefile.dynamic_config.external
index 84e72164a48..182c1ddc4d1 100644
--- a/share/Makefile.dynamic_config.external
+++ b/share/Makefile.dynamic_config.external
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/Makefile.dynamic_config.internal b/share/Makefile.dynamic_config.internal
index 3a2c6364104..74e22f3d918 100644
--- a/share/Makefile.dynamic_config.internal
+++ b/share/Makefile.dynamic_config.internal
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/Makefile.generic b/share/Makefile.generic
index 92235920129..6e8e94c8185 100644
--- a/share/Makefile.generic
+++ b/share/Makefile.generic
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/Makefile.plugin.template b/share/Makefile.plugin.template
index b3c44fc7601..d60bdd67cbd 100644
--- a/share/Makefile.plugin.template
+++ b/share/Makefile.plugin.template
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/_frama-c b/share/_frama-c
index 7166a0a39da..be5236b3430 100644
--- a/share/_frama-c
+++ b/share/_frama-c
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/analysis-scripts/analysis.mk b/share/analysis-scripts/analysis.mk
index 07bcf42f649..4984908d62f 100644
--- a/share/analysis-scripts/analysis.mk
+++ b/share/analysis-scripts/analysis.mk
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/analysis-scripts/creduce.sh b/share/analysis-scripts/creduce.sh
index 009cebf8a7c..94ddd8ef10f 100755
--- a/share/analysis-scripts/creduce.sh
+++ b/share/analysis-scripts/creduce.sh
@@ -3,7 +3,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/analysis-scripts/epilogue.mk b/share/analysis-scripts/epilogue.mk
index ca49ed6bc7b..d4a64f1ee43 100644
--- a/share/analysis-scripts/epilogue.mk
+++ b/share/analysis-scripts/epilogue.mk
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/analysis-scripts/list_functions.ml b/share/analysis-scripts/list_functions.ml
index 4393ee3f414..96511af9c71 100644
--- a/share/analysis-scripts/list_functions.ml
+++ b/share/analysis-scripts/list_functions.ml
@@ -1,3 +1,25 @@
+(**************************************************************************)
+(*                                                                        *)
+(*  This file is part of Frama-C.                                         *)
+(*                                                                        *)
+(*  Copyright (C) 2007-2021                                               *)
+(*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
+(*         alternatives)                                                  *)
+(*                                                                        *)
+(*  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).            *)
+(*                                                                        *)
+(**************************************************************************)
+
 (* To avoid listing declarations several times, we use their locations
    as proxies. However, we cannot directly compare locations, since static
    (re-)definitions, as well as prototypes included several times,
diff --git a/share/analysis-scripts/prologue.mk b/share/analysis-scripts/prologue.mk
index f1cca3d3888..b5bfb92ea63 100644
--- a/share/analysis-scripts/prologue.mk
+++ b/share/analysis-scripts/prologue.mk
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/autocomplete_frama-c b/share/autocomplete_frama-c
index af9de4aaf1e..0637900a8bc 100644
--- a/share/autocomplete_frama-c
+++ b/share/autocomplete_frama-c
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/configure.ac b/share/configure.ac
index 10ba7e45c75..5e18de02aa2 100644
--- a/share/configure.ac
+++ b/share/configure.ac
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/emacs/acsl.el b/share/emacs/acsl.el
index 88157ff09ce..b5ec8b002e8 100644
--- a/share/emacs/acsl.el
+++ b/share/emacs/acsl.el
@@ -5,7 +5,7 @@
 ;  Copyright (C) 2008-2011                                               ;
 ;    Pierre Roux                                                         ;
 ;                                                                        ;
-;  Copyright (C) 2009-2020                                               ;
+;  Copyright (C) 2009-2021                                               ;
 ;    CEA LIST                                                            ;
 ;                                                                        ;
 ;  you can redistribute it and/or modify it under the terms of the GNU   ;
diff --git a/share/emacs/frama-c-dev.el b/share/emacs/frama-c-dev.el
index b68b565a9a3..bcb05603ec2 100644
--- a/share/emacs/frama-c-dev.el
+++ b/share/emacs/frama-c-dev.el
@@ -2,7 +2,7 @@
 ;                                                                        ;
 ;  This file is part of Frama-C.                                         ;
 ;                                                                        ;
-;  Copyright (C) 2007-2020                                               ;
+;  Copyright (C) 2007-2021                                               ;
 ;    CEA (Commissariat à l'énergie atomique et aux énergies              ;
 ;         alternatives)                                                  ;
 ;                                                                        ;
diff --git a/share/emacs/frama-c-init.el b/share/emacs/frama-c-init.el
index cab5b6de740..7171affeb45 100644
--- a/share/emacs/frama-c-init.el
+++ b/share/emacs/frama-c-init.el
@@ -2,7 +2,7 @@
 ;                                                                        ;
 ;  This file is part of Frama-C.                                         ;
 ;                                                                        ;
-;  Copyright (C) 2007-2020                                               ;
+;  Copyright (C) 2007-2021                                               ;
 ;    CEA (Commissariat à l'énergie atomique et aux énergies              ;
 ;         alternatives)                                                  ;
 ;                                                                        ;
diff --git a/share/emacs/frama-c-recommended.el b/share/emacs/frama-c-recommended.el
index f5857665105..75fa93d9f2a 100644
--- a/share/emacs/frama-c-recommended.el
+++ b/share/emacs/frama-c-recommended.el
@@ -2,7 +2,7 @@
 ;                                                                        ;
 ;  This file is part of Frama-C.                                         ;
 ;                                                                        ;
-;  Copyright (C) 2007-2020                                               ;
+;  Copyright (C) 2007-2021                                               ;
 ;    CEA (Commissariat à l'énergie atomique et aux énergies              ;
 ;         alternatives)                                                  ;
 ;                                                                        ;
diff --git a/share/frama-c.Unix.rc b/share/frama-c.Unix.rc
index 484101c70e9..2fda949c508 100644
--- a/share/frama-c.Unix.rc
+++ b/share/frama-c.Unix.rc
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/frama-c.WIN32.rc b/share/frama-c.WIN32.rc
index 16d3c52a673..febdfd24e2e 100644
--- a/share/frama-c.WIN32.rc
+++ b/share/frama-c.WIN32.rc
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/libc.c b/share/libc.c
index 770c29beb58..901d891ba04 100644
--- a/share/libc.c
+++ b/share/libc.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_alloc_axiomatic.h b/share/libc/__fc_alloc_axiomatic.h
index a5cae2a5c45..28811bef492 100644
--- a/share/libc/__fc_alloc_axiomatic.h
+++ b/share/libc/__fc_alloc_axiomatic.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_builtin.c b/share/libc/__fc_builtin.c
index bb20a9e503a..b0b2d8d7a3f 100644
--- a/share/libc/__fc_builtin.c
+++ b/share/libc/__fc_builtin.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_builtin.h b/share/libc/__fc_builtin.h
index 48babc72906..f3734a892ae 100644
--- a/share/libc/__fc_builtin.h
+++ b/share/libc/__fc_builtin.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_blkcnt_t.h b/share/libc/__fc_define_blkcnt_t.h
index eb82206155e..0eda3251c8a 100644
--- a/share/libc/__fc_define_blkcnt_t.h
+++ b/share/libc/__fc_define_blkcnt_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_blksize_t.h b/share/libc/__fc_define_blksize_t.h
index 298f9266c33..0303032836f 100644
--- a/share/libc/__fc_define_blksize_t.h
+++ b/share/libc/__fc_define_blksize_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_clockid_t.h b/share/libc/__fc_define_clockid_t.h
index 71deda04907..df95568e167 100644
--- a/share/libc/__fc_define_clockid_t.h
+++ b/share/libc/__fc_define_clockid_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_dev_t.h b/share/libc/__fc_define_dev_t.h
index 5972cb8f1cf..ccaf6a17a84 100644
--- a/share/libc/__fc_define_dev_t.h
+++ b/share/libc/__fc_define_dev_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_eof.h b/share/libc/__fc_define_eof.h
index 28b12a3f757..4a430160ba4 100644
--- a/share/libc/__fc_define_eof.h
+++ b/share/libc/__fc_define_eof.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_fd_set_t.h b/share/libc/__fc_define_fd_set_t.h
index eed177a1db8..5f9b7c721b2 100644
--- a/share/libc/__fc_define_fd_set_t.h
+++ b/share/libc/__fc_define_fd_set_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_file.h b/share/libc/__fc_define_file.h
index 0cc9c88aa08..474fbd30a65 100644
--- a/share/libc/__fc_define_file.h
+++ b/share/libc/__fc_define_file.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_fpos_t.h b/share/libc/__fc_define_fpos_t.h
index 0562f7a515d..42be555cb50 100644
--- a/share/libc/__fc_define_fpos_t.h
+++ b/share/libc/__fc_define_fpos_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_id_t.h b/share/libc/__fc_define_id_t.h
index 43174d12ee6..d50b495bba8 100644
--- a/share/libc/__fc_define_id_t.h
+++ b/share/libc/__fc_define_id_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_ino_t.h b/share/libc/__fc_define_ino_t.h
index 91d5e955833..e073bb67add 100644
--- a/share/libc/__fc_define_ino_t.h
+++ b/share/libc/__fc_define_ino_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_intptr_t.h b/share/libc/__fc_define_intptr_t.h
index 5806aea0c08..50799846b4b 100644
--- a/share/libc/__fc_define_intptr_t.h
+++ b/share/libc/__fc_define_intptr_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_iovec.h b/share/libc/__fc_define_iovec.h
index 105e55cfc0c..4e1d70e3ce0 100644
--- a/share/libc/__fc_define_iovec.h
+++ b/share/libc/__fc_define_iovec.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_key_t.h b/share/libc/__fc_define_key_t.h
index 7caa52bf852..adcc2b5164b 100644
--- a/share/libc/__fc_define_key_t.h
+++ b/share/libc/__fc_define_key_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_mode_t.h b/share/libc/__fc_define_mode_t.h
index c5dcfab9e70..42bfec2531d 100644
--- a/share/libc/__fc_define_mode_t.h
+++ b/share/libc/__fc_define_mode_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_nlink_t.h b/share/libc/__fc_define_nlink_t.h
index 29d053f0091..e1d72f1bad6 100644
--- a/share/libc/__fc_define_nlink_t.h
+++ b/share/libc/__fc_define_nlink_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_null.h b/share/libc/__fc_define_null.h
index 1e182333b44..d83407a60b2 100644
--- a/share/libc/__fc_define_null.h
+++ b/share/libc/__fc_define_null.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_off_t.h b/share/libc/__fc_define_off_t.h
index 39341324a1f..14e07237e2b 100644
--- a/share/libc/__fc_define_off_t.h
+++ b/share/libc/__fc_define_off_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_pid_t.h b/share/libc/__fc_define_pid_t.h
index 0b5a692a43c..7202a70ee2e 100644
--- a/share/libc/__fc_define_pid_t.h
+++ b/share/libc/__fc_define_pid_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_pthread_types.h b/share/libc/__fc_define_pthread_types.h
index 2ace5531ce2..bb7d01a808b 100644
--- a/share/libc/__fc_define_pthread_types.h
+++ b/share/libc/__fc_define_pthread_types.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_sa_family_t.h b/share/libc/__fc_define_sa_family_t.h
index 0b891c23224..e070cc7a031 100644
--- a/share/libc/__fc_define_sa_family_t.h
+++ b/share/libc/__fc_define_sa_family_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_seek_macros.h b/share/libc/__fc_define_seek_macros.h
index 698a2d93f9b..3a45a4478e3 100644
--- a/share/libc/__fc_define_seek_macros.h
+++ b/share/libc/__fc_define_seek_macros.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_sigset_t.h b/share/libc/__fc_define_sigset_t.h
index 76d0a63e928..b7613a072ea 100644
--- a/share/libc/__fc_define_sigset_t.h
+++ b/share/libc/__fc_define_sigset_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_size_t.h b/share/libc/__fc_define_size_t.h
index a5ad019cda7..55f0af01987 100644
--- a/share/libc/__fc_define_size_t.h
+++ b/share/libc/__fc_define_size_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_sockaddr.h b/share/libc/__fc_define_sockaddr.h
index 4fdb19510b2..04ecc9c8ac5 100644
--- a/share/libc/__fc_define_sockaddr.h
+++ b/share/libc/__fc_define_sockaddr.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_ssize_t.h b/share/libc/__fc_define_ssize_t.h
index cfe87a0aadb..ed8cbae3870 100644
--- a/share/libc/__fc_define_ssize_t.h
+++ b/share/libc/__fc_define_ssize_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_stat.h b/share/libc/__fc_define_stat.h
index 265094f0eaf..faa3cbe93b6 100644
--- a/share/libc/__fc_define_stat.h
+++ b/share/libc/__fc_define_stat.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_suseconds_t.h b/share/libc/__fc_define_suseconds_t.h
index 7dd02c5a171..c8914c361f4 100644
--- a/share/libc/__fc_define_suseconds_t.h
+++ b/share/libc/__fc_define_suseconds_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_time_t.h b/share/libc/__fc_define_time_t.h
index aac1acafad5..0cc5f533767 100644
--- a/share/libc/__fc_define_time_t.h
+++ b/share/libc/__fc_define_time_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_timer_t.h b/share/libc/__fc_define_timer_t.h
index 4aa82952cd8..31c548e6b77 100644
--- a/share/libc/__fc_define_timer_t.h
+++ b/share/libc/__fc_define_timer_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_timespec.h b/share/libc/__fc_define_timespec.h
index c078fb0c42a..93af71842ea 100644
--- a/share/libc/__fc_define_timespec.h
+++ b/share/libc/__fc_define_timespec.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_uid_and_gid.h b/share/libc/__fc_define_uid_and_gid.h
index dc3669dc9c0..2daf07ca925 100644
--- a/share/libc/__fc_define_uid_and_gid.h
+++ b/share/libc/__fc_define_uid_and_gid.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_useconds_t.h b/share/libc/__fc_define_useconds_t.h
index a33ac7648b6..96fceef5c4b 100644
--- a/share/libc/__fc_define_useconds_t.h
+++ b/share/libc/__fc_define_useconds_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_wchar_t.h b/share/libc/__fc_define_wchar_t.h
index 6db95669725..a983554e5ab 100644
--- a/share/libc/__fc_define_wchar_t.h
+++ b/share/libc/__fc_define_wchar_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_define_wint_t.h b/share/libc/__fc_define_wint_t.h
index 546d0b046a7..f57438ff168 100644
--- a/share/libc/__fc_define_wint_t.h
+++ b/share/libc/__fc_define_wint_t.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_gcc_builtins.h b/share/libc/__fc_gcc_builtins.h
index aef4f536c80..875f746cc4d 100644
--- a/share/libc/__fc_gcc_builtins.h
+++ b/share/libc/__fc_gcc_builtins.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_inet.h b/share/libc/__fc_inet.h
index cdb6eab9bdc..5904cd5fff1 100644
--- a/share/libc/__fc_inet.h
+++ b/share/libc/__fc_inet.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_integer.h b/share/libc/__fc_integer.h
index ec135334492..cb844c52014 100644
--- a/share/libc/__fc_integer.h
+++ b/share/libc/__fc_integer.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_machdep.h b/share/libc/__fc_machdep.h
index 39a8c7b78a4..0f896073b29 100644
--- a/share/libc/__fc_machdep.h
+++ b/share/libc/__fc_machdep.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_machdep_linux_shared.h b/share/libc/__fc_machdep_linux_shared.h
index 96687a8db94..03639befe95 100644
--- a/share/libc/__fc_machdep_linux_shared.h
+++ b/share/libc/__fc_machdep_linux_shared.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_runtime.c b/share/libc/__fc_runtime.c
index 661e71a4e50..6c9dff3a432 100644
--- a/share/libc/__fc_runtime.c
+++ b/share/libc/__fc_runtime.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_select.h b/share/libc/__fc_select.h
index 33c4c1cbd78..4fc0f3b0aa6 100644
--- a/share/libc/__fc_select.h
+++ b/share/libc/__fc_select.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/__fc_string_axiomatic.h b/share/libc/__fc_string_axiomatic.h
index 929bf2c6238..579d7f06097 100644
--- a/share/libc/__fc_string_axiomatic.h
+++ b/share/libc/__fc_string_axiomatic.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/alloca.h b/share/libc/alloca.h
index 0745815cd98..021df05b3c3 100644
--- a/share/libc/alloca.h
+++ b/share/libc/alloca.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/arpa/inet.h b/share/libc/arpa/inet.h
index 07e7d70a191..1621214a69f 100644
--- a/share/libc/arpa/inet.h
+++ b/share/libc/arpa/inet.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/assert.c b/share/libc/assert.c
index 2b3d0dd7267..201fabc19d2 100644
--- a/share/libc/assert.c
+++ b/share/libc/assert.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/assert.h b/share/libc/assert.h
index c36cb54a52f..0886eac92d5 100644
--- a/share/libc/assert.h
+++ b/share/libc/assert.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/byteswap.h b/share/libc/byteswap.h
index 18bea6617e3..482159d8c35 100644
--- a/share/libc/byteswap.h
+++ b/share/libc/byteswap.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/complex.h b/share/libc/complex.h
index 8d1db048a26..5ddf6cc2c25 100644
--- a/share/libc/complex.h
+++ b/share/libc/complex.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/ctype.c b/share/libc/ctype.c
index 24751fd2069..b959a946041 100644
--- a/share/libc/ctype.c
+++ b/share/libc/ctype.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/ctype.h b/share/libc/ctype.h
index 1a83c8394df..268c9c88be1 100644
--- a/share/libc/ctype.h
+++ b/share/libc/ctype.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/dirent.h b/share/libc/dirent.h
index 008b4008cf8..d34f93c7edd 100644
--- a/share/libc/dirent.h
+++ b/share/libc/dirent.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/dlfcn.h b/share/libc/dlfcn.h
index 96184d2e013..20324d7bf79 100644
--- a/share/libc/dlfcn.h
+++ b/share/libc/dlfcn.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/endian.h b/share/libc/endian.h
index 00beca84df8..5e868d0dea7 100644
--- a/share/libc/endian.h
+++ b/share/libc/endian.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/errno.c b/share/libc/errno.c
index 785e3a42d91..90183cb9085 100644
--- a/share/libc/errno.c
+++ b/share/libc/errno.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/errno.h b/share/libc/errno.h
index b166d602f2d..392f8226d8d 100644
--- a/share/libc/errno.h
+++ b/share/libc/errno.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/fcntl.h b/share/libc/fcntl.h
index 954ca1a6522..a8ea0805a83 100644
--- a/share/libc/fcntl.h
+++ b/share/libc/fcntl.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/features.h b/share/libc/features.h
index 4d1fa6cae92..33ba5c44519 100644
--- a/share/libc/features.h
+++ b/share/libc/features.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/fenv.c b/share/libc/fenv.c
index 53644e303f7..1f59657d94c 100644
--- a/share/libc/fenv.c
+++ b/share/libc/fenv.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/fenv.h b/share/libc/fenv.h
index 5428602c7ca..cde617b2073 100644
--- a/share/libc/fenv.h
+++ b/share/libc/fenv.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/float.h b/share/libc/float.h
index 7f15d24fe97..ac3dae66656 100644
--- a/share/libc/float.h
+++ b/share/libc/float.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/fnmatch.h b/share/libc/fnmatch.h
index 92cb1fd6a8f..a5d21561afb 100644
--- a/share/libc/fnmatch.h
+++ b/share/libc/fnmatch.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/ftw.h b/share/libc/ftw.h
index 99b70339c85..b702c27ad2d 100644
--- a/share/libc/ftw.h
+++ b/share/libc/ftw.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/getopt.c b/share/libc/getopt.c
index cc32174f8ee..dcd6e7976c7 100644
--- a/share/libc/getopt.c
+++ b/share/libc/getopt.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/getopt.h b/share/libc/getopt.h
index d3f0ae915d9..ed3f45384b7 100644
--- a/share/libc/getopt.h
+++ b/share/libc/getopt.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/glob.c b/share/libc/glob.c
index 4f29323537c..b4b55cda11a 100644
--- a/share/libc/glob.c
+++ b/share/libc/glob.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/glob.h b/share/libc/glob.h
index ba30b24faf6..cd6987ef49d 100644
--- a/share/libc/glob.h
+++ b/share/libc/glob.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/grp.h b/share/libc/grp.h
index 0c2ecaf6fa9..82c5fb76865 100644
--- a/share/libc/grp.h
+++ b/share/libc/grp.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/iconv.h b/share/libc/iconv.h
index cb6875b8f08..a4aa0f48a3a 100644
--- a/share/libc/iconv.h
+++ b/share/libc/iconv.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/ifaddrs.h b/share/libc/ifaddrs.h
index adc7b011ff2..bb85c967160 100644
--- a/share/libc/ifaddrs.h
+++ b/share/libc/ifaddrs.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/inttypes.c b/share/libc/inttypes.c
index 5a5e71762cc..56c613844f5 100644
--- a/share/libc/inttypes.c
+++ b/share/libc/inttypes.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/inttypes.h b/share/libc/inttypes.h
index 49becc11ad8..5aebb0cfe66 100644
--- a/share/libc/inttypes.h
+++ b/share/libc/inttypes.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/iso646.h b/share/libc/iso646.h
index 0021b7d7e23..a24b936810f 100644
--- a/share/libc/iso646.h
+++ b/share/libc/iso646.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/libgen.h b/share/libc/libgen.h
index a1836e5ea90..84a397167bb 100644
--- a/share/libc/libgen.h
+++ b/share/libc/libgen.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/limits.h b/share/libc/limits.h
index aac40203a83..be32d497acd 100644
--- a/share/libc/limits.h
+++ b/share/libc/limits.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/locale.c b/share/libc/locale.c
index 9d23c852e20..0b3dc103fce 100644
--- a/share/libc/locale.c
+++ b/share/libc/locale.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/locale.h b/share/libc/locale.h
index cbe7fec2c6d..ca23603228d 100644
--- a/share/libc/locale.h
+++ b/share/libc/locale.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/malloc.h b/share/libc/malloc.h
index f1b5e0f26be..13fa0a0d0ae 100644
--- a/share/libc/malloc.h
+++ b/share/libc/malloc.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/math.c b/share/libc/math.c
index e2416c5c8b6..97d057860d8 100644
--- a/share/libc/math.c
+++ b/share/libc/math.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/math.h b/share/libc/math.h
index 10229ad2ec8..f8b370fae2e 100644
--- a/share/libc/math.h
+++ b/share/libc/math.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/memory.h b/share/libc/memory.h
index 2d613109dc9..a93ab7a0638 100644
--- a/share/libc/memory.h
+++ b/share/libc/memory.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/net/if.h b/share/libc/net/if.h
index 1cbc9f278f1..c853f1ba3a3 100644
--- a/share/libc/net/if.h
+++ b/share/libc/net/if.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/netdb.c b/share/libc/netdb.c
index 53c4b472ade..887b73f5bc8 100644
--- a/share/libc/netdb.c
+++ b/share/libc/netdb.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/netdb.h b/share/libc/netdb.h
index d93c6be3d74..68f12a1ccf8 100644
--- a/share/libc/netdb.h
+++ b/share/libc/netdb.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/netinet/in.h b/share/libc/netinet/in.h
index 6eb54f02eb0..329b795e69e 100644
--- a/share/libc/netinet/in.h
+++ b/share/libc/netinet/in.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/netinet/ip.h b/share/libc/netinet/ip.h
index e4e709f3470..9c15990c9f7 100644
--- a/share/libc/netinet/ip.h
+++ b/share/libc/netinet/ip.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/netinet/tcp.h b/share/libc/netinet/tcp.h
index a87954a655a..d52d17fee14 100644
--- a/share/libc/netinet/tcp.h
+++ b/share/libc/netinet/tcp.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/nl_types.h b/share/libc/nl_types.h
index 1fbc06f19bb..ce639314204 100644
--- a/share/libc/nl_types.h
+++ b/share/libc/nl_types.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/poll.h b/share/libc/poll.h
index 1ed68dc4b0f..6e16e68e50c 100644
--- a/share/libc/poll.h
+++ b/share/libc/poll.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/pthread.h b/share/libc/pthread.h
index 08c08ca6449..88b97b4de46 100644
--- a/share/libc/pthread.h
+++ b/share/libc/pthread.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/pwd.h b/share/libc/pwd.h
index 4a8def98158..f0e37fef4d6 100644
--- a/share/libc/pwd.h
+++ b/share/libc/pwd.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/regex.h b/share/libc/regex.h
index 58ece2b8fe6..c2bdf2b4251 100644
--- a/share/libc/regex.h
+++ b/share/libc/regex.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/resolv.h b/share/libc/resolv.h
index 808aa1528ff..cd39508dc18 100644
--- a/share/libc/resolv.h
+++ b/share/libc/resolv.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sched.h b/share/libc/sched.h
index e47f9a462fb..bf609d91c05 100644
--- a/share/libc/sched.h
+++ b/share/libc/sched.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/semaphore.h b/share/libc/semaphore.h
index fd29b4b9fcb..d36408f4b1a 100644
--- a/share/libc/semaphore.h
+++ b/share/libc/semaphore.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/setjmp.h b/share/libc/setjmp.h
index b5cfe41784d..56b0ddf5491 100644
--- a/share/libc/setjmp.h
+++ b/share/libc/setjmp.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/signal.c b/share/libc/signal.c
index 7238ff1db2b..e74237207d6 100644
--- a/share/libc/signal.c
+++ b/share/libc/signal.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/signal.h b/share/libc/signal.h
index 063ba74ba58..37749792bb6 100644
--- a/share/libc/signal.h
+++ b/share/libc/signal.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/stdarg.h b/share/libc/stdarg.h
index d02591b6def..0d17b34cb85 100644
--- a/share/libc/stdarg.h
+++ b/share/libc/stdarg.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/stdbool.h b/share/libc/stdbool.h
index f1ae8e86273..c7eee3eeab2 100644
--- a/share/libc/stdbool.h
+++ b/share/libc/stdbool.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/stddef.h b/share/libc/stddef.h
index a3ec58168cf..664b507ac37 100644
--- a/share/libc/stddef.h
+++ b/share/libc/stddef.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/stdint.h b/share/libc/stdint.h
index 812cf9b6613..809e3ccd7b0 100644
--- a/share/libc/stdint.h
+++ b/share/libc/stdint.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/stdio.c b/share/libc/stdio.c
index dcef7291f9d..0da68a57ac7 100644
--- a/share/libc/stdio.c
+++ b/share/libc/stdio.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/stdio.h b/share/libc/stdio.h
index fe7f34f40a9..69e8f869721 100644
--- a/share/libc/stdio.h
+++ b/share/libc/stdio.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/stdlib.c b/share/libc/stdlib.c
index 7437c80fd77..9874c18211f 100644
--- a/share/libc/stdlib.c
+++ b/share/libc/stdlib.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/stdlib.h b/share/libc/stdlib.h
index 541fc9664bb..98735a9afba 100644
--- a/share/libc/stdlib.h
+++ b/share/libc/stdlib.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/string.c b/share/libc/string.c
index 26a04b26ab4..998ca167775 100644
--- a/share/libc/string.c
+++ b/share/libc/string.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/string.h b/share/libc/string.h
index a2b62c15e8d..2fd6f72d249 100644
--- a/share/libc/string.h
+++ b/share/libc/string.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/strings.h b/share/libc/strings.h
index 1b83bbd2215..b1810666145 100644
--- a/share/libc/strings.h
+++ b/share/libc/strings.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/stropts.h b/share/libc/stropts.h
index f3965901f03..822cbc6aa23 100644
--- a/share/libc/stropts.h
+++ b/share/libc/stropts.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/file.h b/share/libc/sys/file.h
index b627e24badd..63364dcd469 100644
--- a/share/libc/sys/file.h
+++ b/share/libc/sys/file.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/ioctl.h b/share/libc/sys/ioctl.h
index 82372ab3037..6976a667496 100644
--- a/share/libc/sys/ioctl.h
+++ b/share/libc/sys/ioctl.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/ipc.h b/share/libc/sys/ipc.h
index 7a32d0b69a8..12adba49e62 100644
--- a/share/libc/sys/ipc.h
+++ b/share/libc/sys/ipc.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/mman.h b/share/libc/sys/mman.h
index ed2baf1ff2c..552cb9a6c57 100644
--- a/share/libc/sys/mman.h
+++ b/share/libc/sys/mman.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/param.h b/share/libc/sys/param.h
index a8206b81cd6..45c9501ad65 100644
--- a/share/libc/sys/param.h
+++ b/share/libc/sys/param.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/random.h b/share/libc/sys/random.h
index 2278beb926f..dcd16b6e56c 100644
--- a/share/libc/sys/random.h
+++ b/share/libc/sys/random.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/resource.h b/share/libc/sys/resource.h
index b6c35f32b89..4ea734ce7e9 100644
--- a/share/libc/sys/resource.h
+++ b/share/libc/sys/resource.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/select.h b/share/libc/sys/select.h
index c4003438ced..c680c04d2e2 100644
--- a/share/libc/sys/select.h
+++ b/share/libc/sys/select.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/shm.h b/share/libc/sys/shm.h
index 3e068753f51..25b080f81fb 100644
--- a/share/libc/sys/shm.h
+++ b/share/libc/sys/shm.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/signal.h b/share/libc/sys/signal.h
index 8768ac1c925..ae83b87a8c0 100644
--- a/share/libc/sys/signal.h
+++ b/share/libc/sys/signal.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/socket.h b/share/libc/sys/socket.h
index faad4d167cb..558129b5165 100644
--- a/share/libc/sys/socket.h
+++ b/share/libc/sys/socket.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/stat.h b/share/libc/sys/stat.h
index 8dc437102d8..84cb1832637 100644
--- a/share/libc/sys/stat.h
+++ b/share/libc/sys/stat.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/time.h b/share/libc/sys/time.h
index e7f0f0ba66f..ce3c8be4b50 100644
--- a/share/libc/sys/time.h
+++ b/share/libc/sys/time.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/times.h b/share/libc/sys/times.h
index 8d54e4e2eda..49cf6b91402 100644
--- a/share/libc/sys/times.h
+++ b/share/libc/sys/times.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/timex.h b/share/libc/sys/timex.h
index f3f8369653e..3446c7d4b46 100644
--- a/share/libc/sys/timex.h
+++ b/share/libc/sys/timex.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/types.h b/share/libc/sys/types.h
index 41ba9673a06..d540a3b9df7 100644
--- a/share/libc/sys/types.h
+++ b/share/libc/sys/types.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/uio.h b/share/libc/sys/uio.h
index c4870f1c7e5..7ef6ce26a73 100644
--- a/share/libc/sys/uio.h
+++ b/share/libc/sys/uio.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/un.h b/share/libc/sys/un.h
index c8d2594d94d..80e7b569378 100644
--- a/share/libc/sys/un.h
+++ b/share/libc/sys/un.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/utsname.h b/share/libc/sys/utsname.h
index b2645346293..0220d6b457a 100644
--- a/share/libc/sys/utsname.h
+++ b/share/libc/sys/utsname.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/sys/wait.h b/share/libc/sys/wait.h
index 9509d1daa5e..df14c934bc7 100644
--- a/share/libc/sys/wait.h
+++ b/share/libc/sys/wait.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/syslog.h b/share/libc/syslog.h
index 6c227214d86..a4819eed986 100644
--- a/share/libc/syslog.h
+++ b/share/libc/syslog.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/termios.h b/share/libc/termios.h
index ccaba4b7898..f90381daceb 100644
--- a/share/libc/termios.h
+++ b/share/libc/termios.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/tgmath.h b/share/libc/tgmath.h
index bdc10ed9329..87a1c95a92f 100644
--- a/share/libc/tgmath.h
+++ b/share/libc/tgmath.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/time.c b/share/libc/time.c
index c12a478c9d9..777dac4ef18 100644
--- a/share/libc/time.c
+++ b/share/libc/time.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/time.h b/share/libc/time.h
index 9b11b250358..d156b59c620 100644
--- a/share/libc/time.h
+++ b/share/libc/time.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/unistd.c b/share/libc/unistd.c
index 968fbdf0fa3..c3050e3c51e 100644
--- a/share/libc/unistd.c
+++ b/share/libc/unistd.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/unistd.h b/share/libc/unistd.h
index 48f00bd6611..301ce7d5e4b 100644
--- a/share/libc/unistd.h
+++ b/share/libc/unistd.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/utime.h b/share/libc/utime.h
index 71a109cf89d..846de75ba52 100644
--- a/share/libc/utime.h
+++ b/share/libc/utime.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/utmpx.h b/share/libc/utmpx.h
index 9fa37699215..17aefa94f03 100644
--- a/share/libc/utmpx.h
+++ b/share/libc/utmpx.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/wchar.c b/share/libc/wchar.c
index 565670186d0..ef1b38d4de9 100644
--- a/share/libc/wchar.c
+++ b/share/libc/wchar.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/wchar.h b/share/libc/wchar.h
index 5ea6aa80e83..5653addca5d 100644
--- a/share/libc/wchar.h
+++ b/share/libc/wchar.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/share/libc/wctype.h b/share/libc/wctype.h
index a65baafe48a..b0b0b130f4f 100644
--- a/share/libc/wctype.h
+++ b/share/libc/wctype.h
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/src/kernel_internals/parsing/check_logic_parser.ml b/src/kernel_internals/parsing/check_logic_parser.ml
index 83d2a8b902e..639b8a991cc 100644
--- a/src/kernel_internals/parsing/check_logic_parser.ml
+++ b/src/kernel_internals/parsing/check_logic_parser.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/parsing/logic_lexer.mli b/src/kernel_internals/parsing/logic_lexer.mli
index e0302bff9be..579e2b0a47b 100644
--- a/src/kernel_internals/parsing/logic_lexer.mli
+++ b/src/kernel_internals/parsing/logic_lexer.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_internals/parsing/logic_lexer.mll b/src/kernel_internals/parsing/logic_lexer.mll
index ad2a6c5f1ce..4029bbd19f1 100644
--- a/src/kernel_internals/parsing/logic_lexer.mll
+++ b/src/kernel_internals/parsing/logic_lexer.mll
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_internals/parsing/logic_parser.mly b/src/kernel_internals/parsing/logic_parser.mly
index 5cdd093c879..fa18c2c8744 100644
--- a/src/kernel_internals/parsing/logic_parser.mly
+++ b/src/kernel_internals/parsing/logic_parser.mly
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA   (Commissariat à l'énergie atomique et aux énergies            */
 /*           alternatives)                                                */
 /*    INRIA (Institut National de Recherche en Informatique et en         */
diff --git a/src/kernel_internals/parsing/logic_preprocess.mli b/src/kernel_internals/parsing/logic_preprocess.mli
index 24110e8bdd4..6fbac6da481 100644
--- a/src/kernel_internals/parsing/logic_preprocess.mli
+++ b/src/kernel_internals/parsing/logic_preprocess.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_internals/parsing/logic_preprocess.mll b/src/kernel_internals/parsing/logic_preprocess.mll
index 1db7292b1f2..67bc6b0fe7b 100644
--- a/src/kernel_internals/parsing/logic_preprocess.mll
+++ b/src/kernel_internals/parsing/logic_preprocess.mll
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_internals/runtime/boot.ml b/src/kernel_internals/runtime/boot.ml
index 71c2c5c00ec..51cde96cb17 100644
--- a/src/kernel_internals/runtime/boot.ml
+++ b/src/kernel_internals/runtime/boot.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/runtime/dump_config.ml b/src/kernel_internals/runtime/dump_config.ml
index 15ffcdaad28..f2e6e803a24 100644
--- a/src/kernel_internals/runtime/dump_config.ml
+++ b/src/kernel_internals/runtime/dump_config.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/runtime/dump_config.mli b/src/kernel_internals/runtime/dump_config.mli
index 018f6f72255..006bbb7ae5d 100644
--- a/src/kernel_internals/runtime/dump_config.mli
+++ b/src/kernel_internals/runtime/dump_config.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/runtime/fc_config.ml.in b/src/kernel_internals/runtime/fc_config.ml.in
index 8fda151a90d..f312b009a01 100644
--- a/src/kernel_internals/runtime/fc_config.ml.in
+++ b/src/kernel_internals/runtime/fc_config.ml.in
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/runtime/fc_config.mli b/src/kernel_internals/runtime/fc_config.mli
index 14f5169a9f0..5bbf87758c8 100644
--- a/src/kernel_internals/runtime/fc_config.mli
+++ b/src/kernel_internals/runtime/fc_config.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/runtime/frama_c_init.ml b/src/kernel_internals/runtime/frama_c_init.ml
index 1e1f014eacb..edd255e119e 100644
--- a/src/kernel_internals/runtime/frama_c_init.ml
+++ b/src/kernel_internals/runtime/frama_c_init.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/runtime/frama_c_init.mli b/src/kernel_internals/runtime/frama_c_init.mli
index cf88138fcde..86af86690f1 100644
--- a/src/kernel_internals/runtime/frama_c_init.mli
+++ b/src/kernel_internals/runtime/frama_c_init.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/runtime/gui_init.ml b/src/kernel_internals/runtime/gui_init.ml
index e01dc6f61c9..0d531fbb09e 100644
--- a/src/kernel_internals/runtime/gui_init.ml
+++ b/src/kernel_internals/runtime/gui_init.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/runtime/gui_init.mli b/src/kernel_internals/runtime/gui_init.mli
index 13608b411ed..b822e400026 100644
--- a/src/kernel_internals/runtime/gui_init.mli
+++ b/src/kernel_internals/runtime/gui_init.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/runtime/messages.ml b/src/kernel_internals/runtime/messages.ml
index 2f4cffa4936..391a0bec9a7 100644
--- a/src/kernel_internals/runtime/messages.ml
+++ b/src/kernel_internals/runtime/messages.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/runtime/messages.mli b/src/kernel_internals/runtime/messages.mli
index 11f26cc5bf1..ecac858d28d 100644
--- a/src/kernel_internals/runtime/messages.mli
+++ b/src/kernel_internals/runtime/messages.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/runtime/special_hooks.ml b/src/kernel_internals/runtime/special_hooks.ml
index 6ebb0d2e05f..fd23b4bec48 100644
--- a/src/kernel_internals/runtime/special_hooks.ml
+++ b/src/kernel_internals/runtime/special_hooks.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/runtime/special_hooks.mli b/src/kernel_internals/runtime/special_hooks.mli
index b9145836812..e6c1824fce4 100644
--- a/src/kernel_internals/runtime/special_hooks.mli
+++ b/src/kernel_internals/runtime/special_hooks.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/runtime/toplevel_config.ml b/src/kernel_internals/runtime/toplevel_config.ml
index 0e6eba462cc..c9fe4aa9195 100644
--- a/src/kernel_internals/runtime/toplevel_config.ml
+++ b/src/kernel_internals/runtime/toplevel_config.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/typing/allocates.ml b/src/kernel_internals/typing/allocates.ml
index 21d04239663..8eacc483665 100644
--- a/src/kernel_internals/typing/allocates.ml
+++ b/src/kernel_internals/typing/allocates.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/typing/allocates.mli b/src/kernel_internals/typing/allocates.mli
index 3aa2863075c..49b6bedfe38 100644
--- a/src/kernel_internals/typing/allocates.mli
+++ b/src/kernel_internals/typing/allocates.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/typing/asm_contracts.ml b/src/kernel_internals/typing/asm_contracts.ml
index a841b520405..9de8a8b51ff 100644
--- a/src/kernel_internals/typing/asm_contracts.ml
+++ b/src/kernel_internals/typing/asm_contracts.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/typing/asm_contracts.mli b/src/kernel_internals/typing/asm_contracts.mli
index 931450e8e4d..2457863c1c7 100644
--- a/src/kernel_internals/typing/asm_contracts.mli
+++ b/src/kernel_internals/typing/asm_contracts.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/typing/ghost_accesses.ml b/src/kernel_internals/typing/ghost_accesses.ml
index ae1eceffe96..0cbb74f56b4 100644
--- a/src/kernel_internals/typing/ghost_accesses.ml
+++ b/src/kernel_internals/typing/ghost_accesses.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/typing/ghost_accesses.mli b/src/kernel_internals/typing/ghost_accesses.mli
index 2b465e6add2..4ddfd4aac14 100644
--- a/src/kernel_internals/typing/ghost_accesses.mli
+++ b/src/kernel_internals/typing/ghost_accesses.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/typing/ghost_cfg.ml b/src/kernel_internals/typing/ghost_cfg.ml
index 524545e98d8..f440d88b514 100644
--- a/src/kernel_internals/typing/ghost_cfg.ml
+++ b/src/kernel_internals/typing/ghost_cfg.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/typing/ghost_cfg.mli b/src/kernel_internals/typing/ghost_cfg.mli
index 3450700f883..a7f8f1a62e5 100644
--- a/src/kernel_internals/typing/ghost_cfg.mli
+++ b/src/kernel_internals/typing/ghost_cfg.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/typing/infer_annotations.ml b/src/kernel_internals/typing/infer_annotations.ml
index 207cc91a28d..e94dce2909a 100644
--- a/src/kernel_internals/typing/infer_annotations.ml
+++ b/src/kernel_internals/typing/infer_annotations.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/typing/infer_annotations.mli b/src/kernel_internals/typing/infer_annotations.mli
index 0d91435e5c5..d2691f7cf54 100644
--- a/src/kernel_internals/typing/infer_annotations.mli
+++ b/src/kernel_internals/typing/infer_annotations.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/typing/logic_builtin.ml b/src/kernel_internals/typing/logic_builtin.ml
index 961fc5b3aac..d63c53b04ce 100644
--- a/src/kernel_internals/typing/logic_builtin.ml
+++ b/src/kernel_internals/typing/logic_builtin.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_internals/typing/logic_builtin.mli b/src/kernel_internals/typing/logic_builtin.mli
index d0dd75e5654..af6401188e2 100644
--- a/src/kernel_internals/typing/logic_builtin.mli
+++ b/src/kernel_internals/typing/logic_builtin.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_internals/typing/substitute_const_globals.ml b/src/kernel_internals/typing/substitute_const_globals.ml
index fcfc89f95d7..3544d1f61df 100644
--- a/src/kernel_internals/typing/substitute_const_globals.ml
+++ b/src/kernel_internals/typing/substitute_const_globals.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/typing/substitute_const_globals.mli b/src/kernel_internals/typing/substitute_const_globals.mli
index 49fab4d08e6..85f3f86184f 100644
--- a/src/kernel_internals/typing/substitute_const_globals.mli
+++ b/src/kernel_internals/typing/substitute_const_globals.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/typing/translate_lightweight.ml b/src/kernel_internals/typing/translate_lightweight.ml
index 8bed9c25d6f..87ec8e5ac33 100644
--- a/src/kernel_internals/typing/translate_lightweight.ml
+++ b/src/kernel_internals/typing/translate_lightweight.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_internals/typing/translate_lightweight.mli b/src/kernel_internals/typing/translate_lightweight.mli
index db3df2b7fd9..c8c10c22efc 100644
--- a/src/kernel_internals/typing/translate_lightweight.mli
+++ b/src/kernel_internals/typing/translate_lightweight.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_internals/typing/unroll_loops.ml b/src/kernel_internals/typing/unroll_loops.ml
index 2ef5c657b18..cecd0aefe59 100644
--- a/src/kernel_internals/typing/unroll_loops.ml
+++ b/src/kernel_internals/typing/unroll_loops.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_internals/typing/unroll_loops.mli b/src/kernel_internals/typing/unroll_loops.mli
index bc72d0f1fe9..679216123be 100644
--- a/src/kernel_internals/typing/unroll_loops.mli
+++ b/src/kernel_internals/typing/unroll_loops.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/abstract_interp.ml b/src/kernel_services/abstract_interp/abstract_interp.ml
index 89202b4021e..e7bbbb5bf8c 100644
--- a/src/kernel_services/abstract_interp/abstract_interp.ml
+++ b/src/kernel_services/abstract_interp/abstract_interp.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/abstract_interp.mli b/src/kernel_services/abstract_interp/abstract_interp.mli
index 36591c60c94..68bcf7f7e40 100644
--- a/src/kernel_services/abstract_interp/abstract_interp.mli
+++ b/src/kernel_services/abstract_interp/abstract_interp.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/base.ml b/src/kernel_services/abstract_interp/base.ml
index 095c1b9cef3..0bfde596c3a 100644
--- a/src/kernel_services/abstract_interp/base.ml
+++ b/src/kernel_services/abstract_interp/base.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/base.mli b/src/kernel_services/abstract_interp/base.mli
index 924cf619648..708c79c5579 100644
--- a/src/kernel_services/abstract_interp/base.mli
+++ b/src/kernel_services/abstract_interp/base.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/bottom.ml b/src/kernel_services/abstract_interp/bottom.ml
index baaa5fdecbd..5b3d5be7595 100644
--- a/src/kernel_services/abstract_interp/bottom.ml
+++ b/src/kernel_services/abstract_interp/bottom.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/bottom.mli b/src/kernel_services/abstract_interp/bottom.mli
index 0af283e70bf..35688acb6bd 100644
--- a/src/kernel_services/abstract_interp/bottom.mli
+++ b/src/kernel_services/abstract_interp/bottom.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/eva_lattice_type.mli b/src/kernel_services/abstract_interp/eva_lattice_type.mli
index 9b342084122..9519f311e9f 100644
--- a/src/kernel_services/abstract_interp/eva_lattice_type.mli
+++ b/src/kernel_services/abstract_interp/eva_lattice_type.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/fc_float.ml b/src/kernel_services/abstract_interp/fc_float.ml
index 748e227d2dd..9483f85d638 100644
--- a/src/kernel_services/abstract_interp/fc_float.ml
+++ b/src/kernel_services/abstract_interp/fc_float.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/fc_float.mli b/src/kernel_services/abstract_interp/fc_float.mli
index b895a8e9e0c..88447c622e7 100644
--- a/src/kernel_services/abstract_interp/fc_float.mli
+++ b/src/kernel_services/abstract_interp/fc_float.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/float_interval.ml b/src/kernel_services/abstract_interp/float_interval.ml
index 195d7f285c3..7e733d4faa6 100644
--- a/src/kernel_services/abstract_interp/float_interval.ml
+++ b/src/kernel_services/abstract_interp/float_interval.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/float_interval.mli b/src/kernel_services/abstract_interp/float_interval.mli
index f59f525caea..ef9e87fc251 100644
--- a/src/kernel_services/abstract_interp/float_interval.mli
+++ b/src/kernel_services/abstract_interp/float_interval.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/float_interval_sig.mli b/src/kernel_services/abstract_interp/float_interval_sig.mli
index 93f2449edb2..e105e4b09b5 100644
--- a/src/kernel_services/abstract_interp/float_interval_sig.mli
+++ b/src/kernel_services/abstract_interp/float_interval_sig.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/float_sig.mli b/src/kernel_services/abstract_interp/float_sig.mli
index b897cd89d1b..4cb6aad51be 100644
--- a/src/kernel_services/abstract_interp/float_sig.mli
+++ b/src/kernel_services/abstract_interp/float_sig.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/fval.ml b/src/kernel_services/abstract_interp/fval.ml
index a3771a9b86e..8056b97ec72 100644
--- a/src/kernel_services/abstract_interp/fval.ml
+++ b/src/kernel_services/abstract_interp/fval.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/fval.mli b/src/kernel_services/abstract_interp/fval.mli
index a3bac15f70f..233ce9ada22 100644
--- a/src/kernel_services/abstract_interp/fval.mli
+++ b/src/kernel_services/abstract_interp/fval.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/int_Base.ml b/src/kernel_services/abstract_interp/int_Base.ml
index 5cc87e94dbb..7ac291fde72 100644
--- a/src/kernel_services/abstract_interp/int_Base.ml
+++ b/src/kernel_services/abstract_interp/int_Base.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/int_Base.mli b/src/kernel_services/abstract_interp/int_Base.mli
index 7b5d89126b8..9686888a528 100644
--- a/src/kernel_services/abstract_interp/int_Base.mli
+++ b/src/kernel_services/abstract_interp/int_Base.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/int_Intervals.ml b/src/kernel_services/abstract_interp/int_Intervals.ml
index bc75da0cc70..f568b624e33 100644
--- a/src/kernel_services/abstract_interp/int_Intervals.ml
+++ b/src/kernel_services/abstract_interp/int_Intervals.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/int_Intervals.mli b/src/kernel_services/abstract_interp/int_Intervals.mli
index 9bba8a2b8ec..26d061b7634 100644
--- a/src/kernel_services/abstract_interp/int_Intervals.mli
+++ b/src/kernel_services/abstract_interp/int_Intervals.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/int_Intervals_sig.mli b/src/kernel_services/abstract_interp/int_Intervals_sig.mli
index a33aea2d443..55c2a3c1385 100644
--- a/src/kernel_services/abstract_interp/int_Intervals_sig.mli
+++ b/src/kernel_services/abstract_interp/int_Intervals_sig.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/int_interval.ml b/src/kernel_services/abstract_interp/int_interval.ml
index 5a6b83b8b72..c975b3ae78b 100644
--- a/src/kernel_services/abstract_interp/int_interval.ml
+++ b/src/kernel_services/abstract_interp/int_interval.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/int_interval.mli b/src/kernel_services/abstract_interp/int_interval.mli
index 39e08eddaaa..a61cfd27bad 100644
--- a/src/kernel_services/abstract_interp/int_interval.mli
+++ b/src/kernel_services/abstract_interp/int_interval.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/int_set.ml b/src/kernel_services/abstract_interp/int_set.ml
index e6ad99f6fad..00a4e0fe4bd 100644
--- a/src/kernel_services/abstract_interp/int_set.ml
+++ b/src/kernel_services/abstract_interp/int_set.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/int_set.mli b/src/kernel_services/abstract_interp/int_set.mli
index a55b2e745b5..a69521b71f6 100644
--- a/src/kernel_services/abstract_interp/int_set.mli
+++ b/src/kernel_services/abstract_interp/int_set.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/int_val.ml b/src/kernel_services/abstract_interp/int_val.ml
index a35989c89fd..961bc566071 100644
--- a/src/kernel_services/abstract_interp/int_val.ml
+++ b/src/kernel_services/abstract_interp/int_val.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/int_val.mli b/src/kernel_services/abstract_interp/int_val.mli
index 64fc2616d1c..0d2d5da2ac9 100644
--- a/src/kernel_services/abstract_interp/int_val.mli
+++ b/src/kernel_services/abstract_interp/int_val.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/ival.ml b/src/kernel_services/abstract_interp/ival.ml
index 840592615b1..eaa27972c91 100644
--- a/src/kernel_services/abstract_interp/ival.ml
+++ b/src/kernel_services/abstract_interp/ival.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/ival.mli b/src/kernel_services/abstract_interp/ival.mli
index d45cc3cf631..f9ddb2915d9 100644
--- a/src/kernel_services/abstract_interp/ival.mli
+++ b/src/kernel_services/abstract_interp/ival.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/lattice_messages.ml b/src/kernel_services/abstract_interp/lattice_messages.ml
index 2bf824b5f53..8e481974c10 100644
--- a/src/kernel_services/abstract_interp/lattice_messages.ml
+++ b/src/kernel_services/abstract_interp/lattice_messages.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/lattice_messages.mli b/src/kernel_services/abstract_interp/lattice_messages.mli
index df4799c3aac..05c67036d3b 100644
--- a/src/kernel_services/abstract_interp/lattice_messages.mli
+++ b/src/kernel_services/abstract_interp/lattice_messages.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/lattice_type.mli b/src/kernel_services/abstract_interp/lattice_type.mli
index 95f0b39d6b8..3c41400e758 100644
--- a/src/kernel_services/abstract_interp/lattice_type.mli
+++ b/src/kernel_services/abstract_interp/lattice_type.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/lmap.ml b/src/kernel_services/abstract_interp/lmap.ml
index f41d068c2d2..46906585f76 100644
--- a/src/kernel_services/abstract_interp/lmap.ml
+++ b/src/kernel_services/abstract_interp/lmap.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/lmap.mli b/src/kernel_services/abstract_interp/lmap.mli
index 5db64b00f90..5a033415f2e 100644
--- a/src/kernel_services/abstract_interp/lmap.mli
+++ b/src/kernel_services/abstract_interp/lmap.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/lmap_bitwise.ml b/src/kernel_services/abstract_interp/lmap_bitwise.ml
index dd2baf85607..f2074059204 100644
--- a/src/kernel_services/abstract_interp/lmap_bitwise.ml
+++ b/src/kernel_services/abstract_interp/lmap_bitwise.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/lmap_bitwise.mli b/src/kernel_services/abstract_interp/lmap_bitwise.mli
index 629b07a4179..edb5e6c71f0 100644
--- a/src/kernel_services/abstract_interp/lmap_bitwise.mli
+++ b/src/kernel_services/abstract_interp/lmap_bitwise.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/lmap_sig.mli b/src/kernel_services/abstract_interp/lmap_sig.mli
index 1640a2a118a..9a7ac8d40b9 100644
--- a/src/kernel_services/abstract_interp/lmap_sig.mli
+++ b/src/kernel_services/abstract_interp/lmap_sig.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/locations.ml b/src/kernel_services/abstract_interp/locations.ml
index 64b75c8765f..f5c126c7119 100644
--- a/src/kernel_services/abstract_interp/locations.ml
+++ b/src/kernel_services/abstract_interp/locations.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/locations.mli b/src/kernel_services/abstract_interp/locations.mli
index b8de6dce344..760e1b93fa6 100644
--- a/src/kernel_services/abstract_interp/locations.mli
+++ b/src/kernel_services/abstract_interp/locations.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/map_lattice.ml b/src/kernel_services/abstract_interp/map_lattice.ml
index deb50121dd6..1725256a484 100644
--- a/src/kernel_services/abstract_interp/map_lattice.ml
+++ b/src/kernel_services/abstract_interp/map_lattice.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/map_lattice.mli b/src/kernel_services/abstract_interp/map_lattice.mli
index ded5f78b4a4..426cb9fa180 100644
--- a/src/kernel_services/abstract_interp/map_lattice.mli
+++ b/src/kernel_services/abstract_interp/map_lattice.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/offsetmap.ml b/src/kernel_services/abstract_interp/offsetmap.ml
index 624255d6fe3..d68922acec8 100644
--- a/src/kernel_services/abstract_interp/offsetmap.ml
+++ b/src/kernel_services/abstract_interp/offsetmap.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/offsetmap.mli b/src/kernel_services/abstract_interp/offsetmap.mli
index 279e77e49d1..787f8efd859 100644
--- a/src/kernel_services/abstract_interp/offsetmap.mli
+++ b/src/kernel_services/abstract_interp/offsetmap.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/offsetmap_bitwise_sig.mli b/src/kernel_services/abstract_interp/offsetmap_bitwise_sig.mli
index 2ce21740145..1d5b8039d5b 100644
--- a/src/kernel_services/abstract_interp/offsetmap_bitwise_sig.mli
+++ b/src/kernel_services/abstract_interp/offsetmap_bitwise_sig.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/offsetmap_lattice_with_isotropy.mli b/src/kernel_services/abstract_interp/offsetmap_lattice_with_isotropy.mli
index e23e62dfd81..b1058820647 100644
--- a/src/kernel_services/abstract_interp/offsetmap_lattice_with_isotropy.mli
+++ b/src/kernel_services/abstract_interp/offsetmap_lattice_with_isotropy.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/offsetmap_sig.mli b/src/kernel_services/abstract_interp/offsetmap_sig.mli
index 9c434b5a7d6..c8f7a52238f 100644
--- a/src/kernel_services/abstract_interp/offsetmap_sig.mli
+++ b/src/kernel_services/abstract_interp/offsetmap_sig.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/origin.ml b/src/kernel_services/abstract_interp/origin.ml
index 8a4dfa652ff..5023728e3df 100644
--- a/src/kernel_services/abstract_interp/origin.ml
+++ b/src/kernel_services/abstract_interp/origin.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/origin.mli b/src/kernel_services/abstract_interp/origin.mli
index 25c48928160..be9dd49e267 100644
--- a/src/kernel_services/abstract_interp/origin.mli
+++ b/src/kernel_services/abstract_interp/origin.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/tr_offset.ml b/src/kernel_services/abstract_interp/tr_offset.ml
index f923d091463..8a252bbe5d0 100644
--- a/src/kernel_services/abstract_interp/tr_offset.ml
+++ b/src/kernel_services/abstract_interp/tr_offset.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/abstract_interp/tr_offset.mli b/src/kernel_services/abstract_interp/tr_offset.mli
index b4b630d8657..17b3531b621 100644
--- a/src/kernel_services/abstract_interp/tr_offset.mli
+++ b/src/kernel_services/abstract_interp/tr_offset.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/bit_utils.ml b/src/kernel_services/analysis/bit_utils.ml
index 90968aed324..5af81b797eb 100644
--- a/src/kernel_services/analysis/bit_utils.ml
+++ b/src/kernel_services/analysis/bit_utils.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/bit_utils.mli b/src/kernel_services/analysis/bit_utils.mli
index abc0db24d0f..a9d28aad6d5 100644
--- a/src/kernel_services/analysis/bit_utils.mli
+++ b/src/kernel_services/analysis/bit_utils.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/dataflow2.ml b/src/kernel_services/analysis/dataflow2.ml
index 24d9cf46ae2..6d63d328f03 100644
--- a/src/kernel_services/analysis/dataflow2.ml
+++ b/src/kernel_services/analysis/dataflow2.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/dataflow2.mli b/src/kernel_services/analysis/dataflow2.mli
index 146e4d1c569..46859572f75 100644
--- a/src/kernel_services/analysis/dataflow2.mli
+++ b/src/kernel_services/analysis/dataflow2.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/destructors.ml b/src/kernel_services/analysis/destructors.ml
index e0e3cd3ea28..379bca768b4 100644
--- a/src/kernel_services/analysis/destructors.ml
+++ b/src/kernel_services/analysis/destructors.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/destructors.mli b/src/kernel_services/analysis/destructors.mli
index c8ca7c9158e..207a23d70a0 100644
--- a/src/kernel_services/analysis/destructors.mli
+++ b/src/kernel_services/analysis/destructors.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/dominators.ml b/src/kernel_services/analysis/dominators.ml
index dc0d578bd3b..e6645a768f3 100644
--- a/src/kernel_services/analysis/dominators.ml
+++ b/src/kernel_services/analysis/dominators.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/dominators.mli b/src/kernel_services/analysis/dominators.mli
index a8c3e741cd5..8d0a2b95599 100644
--- a/src/kernel_services/analysis/dominators.mli
+++ b/src/kernel_services/analysis/dominators.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/exn_flow.ml b/src/kernel_services/analysis/exn_flow.ml
index 6c1568a7051..2a063fe0b97 100644
--- a/src/kernel_services/analysis/exn_flow.ml
+++ b/src/kernel_services/analysis/exn_flow.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/exn_flow.mli b/src/kernel_services/analysis/exn_flow.mli
index d4a7f92cbba..ca3c18369d7 100644
--- a/src/kernel_services/analysis/exn_flow.mli
+++ b/src/kernel_services/analysis/exn_flow.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/interpreted_automata.ml b/src/kernel_services/analysis/interpreted_automata.ml
index 8d7d1cad9f4..af2cd34522e 100644
--- a/src/kernel_services/analysis/interpreted_automata.ml
+++ b/src/kernel_services/analysis/interpreted_automata.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/interpreted_automata.mli b/src/kernel_services/analysis/interpreted_automata.mli
index c04c8b027b5..e578b45261a 100644
--- a/src/kernel_services/analysis/interpreted_automata.mli
+++ b/src/kernel_services/analysis/interpreted_automata.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/logic_interp.ml b/src/kernel_services/analysis/logic_interp.ml
index 7dedd4c4c7a..86b2ea230e3 100644
--- a/src/kernel_services/analysis/logic_interp.ml
+++ b/src/kernel_services/analysis/logic_interp.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/logic_interp.mli b/src/kernel_services/analysis/logic_interp.mli
index bbfa7ffb49d..928b727a865 100644
--- a/src/kernel_services/analysis/logic_interp.mli
+++ b/src/kernel_services/analysis/logic_interp.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/loop.ml b/src/kernel_services/analysis/loop.ml
index 491d5cd0aea..9c2bc17726a 100644
--- a/src/kernel_services/analysis/loop.ml
+++ b/src/kernel_services/analysis/loop.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/loop.mli b/src/kernel_services/analysis/loop.mli
index 70d176935cb..0e4dbca82c5 100644
--- a/src/kernel_services/analysis/loop.mli
+++ b/src/kernel_services/analysis/loop.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/ordered_stmt.ml b/src/kernel_services/analysis/ordered_stmt.ml
index 9fd7f0dee22..d041f7aa94d 100644
--- a/src/kernel_services/analysis/ordered_stmt.ml
+++ b/src/kernel_services/analysis/ordered_stmt.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/ordered_stmt.mli b/src/kernel_services/analysis/ordered_stmt.mli
index f10b451674b..89ea22e9b89 100644
--- a/src/kernel_services/analysis/ordered_stmt.mli
+++ b/src/kernel_services/analysis/ordered_stmt.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/service_graph.ml b/src/kernel_services/analysis/service_graph.ml
index 40be8864a66..a6e7216d5a0 100644
--- a/src/kernel_services/analysis/service_graph.ml
+++ b/src/kernel_services/analysis/service_graph.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/service_graph.mli b/src/kernel_services/analysis/service_graph.mli
index 8a26542cb32..da9a8ddd5cf 100644
--- a/src/kernel_services/analysis/service_graph.mli
+++ b/src/kernel_services/analysis/service_graph.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/stmts_graph.ml b/src/kernel_services/analysis/stmts_graph.ml
index 8dfd0f0f66e..b8a2dc0ba13 100644
--- a/src/kernel_services/analysis/stmts_graph.ml
+++ b/src/kernel_services/analysis/stmts_graph.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/stmts_graph.mli b/src/kernel_services/analysis/stmts_graph.mli
index 43197e6c08f..88f0b81d839 100644
--- a/src/kernel_services/analysis/stmts_graph.mli
+++ b/src/kernel_services/analysis/stmts_graph.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/undefined_sequence.ml b/src/kernel_services/analysis/undefined_sequence.ml
index 9035e588c4f..bb498af5f2b 100644
--- a/src/kernel_services/analysis/undefined_sequence.ml
+++ b/src/kernel_services/analysis/undefined_sequence.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/undefined_sequence.mli b/src/kernel_services/analysis/undefined_sequence.mli
index 72ef9bf6d14..d80e81a74aa 100644
--- a/src/kernel_services/analysis/undefined_sequence.mli
+++ b/src/kernel_services/analysis/undefined_sequence.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/wto_statement.ml b/src/kernel_services/analysis/wto_statement.ml
index b69dd555d6d..8b0a78f9e92 100644
--- a/src/kernel_services/analysis/wto_statement.ml
+++ b/src/kernel_services/analysis/wto_statement.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/analysis/wto_statement.mli b/src/kernel_services/analysis/wto_statement.mli
index 4b6d5e9f3b5..9893ca9dda9 100644
--- a/src/kernel_services/analysis/wto_statement.mli
+++ b/src/kernel_services/analysis/wto_statement.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_data/alarms.ml b/src/kernel_services/ast_data/alarms.ml
index f2edb73c5dc..45b9381a216 100644
--- a/src/kernel_services/ast_data/alarms.ml
+++ b/src/kernel_services/ast_data/alarms.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_data/alarms.mli b/src/kernel_services/ast_data/alarms.mli
index bdbc4f9fa4d..84262898764 100644
--- a/src/kernel_services/ast_data/alarms.mli
+++ b/src/kernel_services/ast_data/alarms.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_data/annotations.ml b/src/kernel_services/ast_data/annotations.ml
index d5425c2e242..cc6c5221d3e 100644
--- a/src/kernel_services/ast_data/annotations.ml
+++ b/src/kernel_services/ast_data/annotations.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_data/annotations.mli b/src/kernel_services/ast_data/annotations.mli
index 9bea58d4ab7..c6b8e7d3f81 100644
--- a/src/kernel_services/ast_data/annotations.mli
+++ b/src/kernel_services/ast_data/annotations.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_data/ast.ml b/src/kernel_services/ast_data/ast.ml
index 1ff587fce07..c56f5472689 100644
--- a/src/kernel_services/ast_data/ast.ml
+++ b/src/kernel_services/ast_data/ast.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_data/ast.mli b/src/kernel_services/ast_data/ast.mli
index 77ba9b56435..fcb527b68cc 100644
--- a/src/kernel_services/ast_data/ast.mli
+++ b/src/kernel_services/ast_data/ast.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_data/globals.ml b/src/kernel_services/ast_data/globals.ml
index a2b09e2c8cf..440ea2a0b01 100644
--- a/src/kernel_services/ast_data/globals.ml
+++ b/src/kernel_services/ast_data/globals.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_data/globals.mli b/src/kernel_services/ast_data/globals.mli
index 3487374d4a4..1a6775ec972 100644
--- a/src/kernel_services/ast_data/globals.mli
+++ b/src/kernel_services/ast_data/globals.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_data/kernel_function.ml b/src/kernel_services/ast_data/kernel_function.ml
index df3e3d243bb..96dba0c015c 100644
--- a/src/kernel_services/ast_data/kernel_function.ml
+++ b/src/kernel_services/ast_data/kernel_function.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_data/kernel_function.mli b/src/kernel_services/ast_data/kernel_function.mli
index df4cceb7ae4..5f1adcaf860 100644
--- a/src/kernel_services/ast_data/kernel_function.mli
+++ b/src/kernel_services/ast_data/kernel_function.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_data/property.ml b/src/kernel_services/ast_data/property.ml
index 9d77b9fc6ce..da98bb2f64b 100644
--- a/src/kernel_services/ast_data/property.ml
+++ b/src/kernel_services/ast_data/property.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_data/property.mli b/src/kernel_services/ast_data/property.mli
index ab15f381a1b..b712d764ed0 100644
--- a/src/kernel_services/ast_data/property.mli
+++ b/src/kernel_services/ast_data/property.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_data/property_status.ml b/src/kernel_services/ast_data/property_status.ml
index 82c81ac995e..a0719f99b8d 100644
--- a/src/kernel_services/ast_data/property_status.ml
+++ b/src/kernel_services/ast_data/property_status.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_data/property_status.mli b/src/kernel_services/ast_data/property_status.mli
index 94f0418c371..aaf4f44d710 100644
--- a/src/kernel_services/ast_data/property_status.mli
+++ b/src/kernel_services/ast_data/property_status.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_data/statuses_by_call.ml b/src/kernel_services/ast_data/statuses_by_call.ml
index a623869699a..ff905714455 100644
--- a/src/kernel_services/ast_data/statuses_by_call.ml
+++ b/src/kernel_services/ast_data/statuses_by_call.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_data/statuses_by_call.mli b/src/kernel_services/ast_data/statuses_by_call.mli
index fda44ad75c2..47799199f66 100644
--- a/src/kernel_services/ast_data/statuses_by_call.mli
+++ b/src/kernel_services/ast_data/statuses_by_call.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_printing/cabs_debug.ml b/src/kernel_services/ast_printing/cabs_debug.ml
index 9ec29a131e4..fbcdd4854b7 100644
--- a/src/kernel_services/ast_printing/cabs_debug.ml
+++ b/src/kernel_services/ast_printing/cabs_debug.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_printing/cabs_debug.mli b/src/kernel_services/ast_printing/cabs_debug.mli
index edcd0357550..abfadceee0c 100644
--- a/src/kernel_services/ast_printing/cabs_debug.mli
+++ b/src/kernel_services/ast_printing/cabs_debug.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_printing/cil_descriptive_printer.ml b/src/kernel_services/ast_printing/cil_descriptive_printer.ml
index 7cdcca8778d..53fcb1dbc2c 100644
--- a/src/kernel_services/ast_printing/cil_descriptive_printer.ml
+++ b/src/kernel_services/ast_printing/cil_descriptive_printer.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_printing/cil_descriptive_printer.mli b/src/kernel_services/ast_printing/cil_descriptive_printer.mli
index c6bdbc86cdd..547c0aadd54 100644
--- a/src/kernel_services/ast_printing/cil_descriptive_printer.mli
+++ b/src/kernel_services/ast_printing/cil_descriptive_printer.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_printing/cil_printer.ml b/src/kernel_services/ast_printing/cil_printer.ml
index f3ee3536abe..48cf456eb78 100644
--- a/src/kernel_services/ast_printing/cil_printer.ml
+++ b/src/kernel_services/ast_printing/cil_printer.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_printing/cil_printer.mli b/src/kernel_services/ast_printing/cil_printer.mli
index 40eeaa1b3e0..c6295e24517 100644
--- a/src/kernel_services/ast_printing/cil_printer.mli
+++ b/src/kernel_services/ast_printing/cil_printer.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_printing/cil_types_debug.ml b/src/kernel_services/ast_printing/cil_types_debug.ml
index 326c95e4eab..01097f0f0b6 100644
--- a/src/kernel_services/ast_printing/cil_types_debug.ml
+++ b/src/kernel_services/ast_printing/cil_types_debug.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_printing/cil_types_debug.mli b/src/kernel_services/ast_printing/cil_types_debug.mli
index b64e8fbfebd..70cafd3ad0c 100644
--- a/src/kernel_services/ast_printing/cil_types_debug.mli
+++ b/src/kernel_services/ast_printing/cil_types_debug.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_printing/description.ml b/src/kernel_services/ast_printing/description.ml
index fc6ff06a00e..c9218dc6cff 100644
--- a/src/kernel_services/ast_printing/description.ml
+++ b/src/kernel_services/ast_printing/description.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_printing/description.mli b/src/kernel_services/ast_printing/description.mli
index 41cf5521eb4..54f432c53e0 100644
--- a/src/kernel_services/ast_printing/description.mli
+++ b/src/kernel_services/ast_printing/description.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_printing/logic_print.ml b/src/kernel_services/ast_printing/logic_print.ml
index ffd4b850dda..d56af0ab52d 100644
--- a/src/kernel_services/ast_printing/logic_print.ml
+++ b/src/kernel_services/ast_printing/logic_print.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_services/ast_printing/logic_print.mli b/src/kernel_services/ast_printing/logic_print.mli
index c4966d97e40..0a5a3e10031 100644
--- a/src/kernel_services/ast_printing/logic_print.mli
+++ b/src/kernel_services/ast_printing/logic_print.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_services/ast_printing/printer.ml b/src/kernel_services/ast_printing/printer.ml
index 8b8fa7737f1..c8e1bac0d46 100644
--- a/src/kernel_services/ast_printing/printer.ml
+++ b/src/kernel_services/ast_printing/printer.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_printing/printer.mli b/src/kernel_services/ast_printing/printer.mli
index b653fac8e08..77d0b364a14 100644
--- a/src/kernel_services/ast_printing/printer.mli
+++ b/src/kernel_services/ast_printing/printer.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_printing/printer_api.mli b/src/kernel_services/ast_printing/printer_api.mli
index b6cec4010d9..abddde80992 100644
--- a/src/kernel_services/ast_printing/printer_api.mli
+++ b/src/kernel_services/ast_printing/printer_api.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_printing/printer_builder.ml b/src/kernel_services/ast_printing/printer_builder.ml
index a733de957ce..a1c67d83ff5 100644
--- a/src/kernel_services/ast_printing/printer_builder.ml
+++ b/src/kernel_services/ast_printing/printer_builder.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_printing/printer_builder.mli b/src/kernel_services/ast_printing/printer_builder.mli
index 552cbfef3ba..5790991f767 100644
--- a/src/kernel_services/ast_printing/printer_builder.mli
+++ b/src/kernel_services/ast_printing/printer_builder.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_printing/printer_tag.ml b/src/kernel_services/ast_printing/printer_tag.ml
index c95353544de..4f07c37e146 100644
--- a/src/kernel_services/ast_printing/printer_tag.ml
+++ b/src/kernel_services/ast_printing/printer_tag.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_printing/printer_tag.mli b/src/kernel_services/ast_printing/printer_tag.mli
index af081f1eec0..a35466dfc72 100644
--- a/src/kernel_services/ast_printing/printer_tag.mli
+++ b/src/kernel_services/ast_printing/printer_tag.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_queries/acsl_extension.ml b/src/kernel_services/ast_queries/acsl_extension.ml
index 5132e3e1540..450fd797e13 100644
--- a/src/kernel_services/ast_queries/acsl_extension.ml
+++ b/src/kernel_services/ast_queries/acsl_extension.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_queries/acsl_extension.mli b/src/kernel_services/ast_queries/acsl_extension.mli
index c615564b73e..a4b99bcf142 100644
--- a/src/kernel_services/ast_queries/acsl_extension.mli
+++ b/src/kernel_services/ast_queries/acsl_extension.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_queries/ast_info.ml b/src/kernel_services/ast_queries/ast_info.ml
index 3a0b67f0857..be162cec7f9 100644
--- a/src/kernel_services/ast_queries/ast_info.ml
+++ b/src/kernel_services/ast_queries/ast_info.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_queries/ast_info.mli b/src/kernel_services/ast_queries/ast_info.mli
index 83ac664e106..14fb2476dba 100644
--- a/src/kernel_services/ast_queries/ast_info.mli
+++ b/src/kernel_services/ast_queries/ast_info.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_queries/cil_datatype.ml b/src/kernel_services/ast_queries/cil_datatype.ml
index f27558077f9..f76bde88d64 100644
--- a/src/kernel_services/ast_queries/cil_datatype.ml
+++ b/src/kernel_services/ast_queries/cil_datatype.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_queries/cil_datatype.mli b/src/kernel_services/ast_queries/cil_datatype.mli
index 4460eed18fe..dd75d97434b 100644
--- a/src/kernel_services/ast_queries/cil_datatype.mli
+++ b/src/kernel_services/ast_queries/cil_datatype.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_queries/cil_state_builder.ml b/src/kernel_services/ast_queries/cil_state_builder.ml
index 07ab7fbc7e1..cce9d5f46a8 100644
--- a/src/kernel_services/ast_queries/cil_state_builder.ml
+++ b/src/kernel_services/ast_queries/cil_state_builder.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_queries/cil_state_builder.mli b/src/kernel_services/ast_queries/cil_state_builder.mli
index 7bc8e9cad3e..b9d86cfce9d 100644
--- a/src/kernel_services/ast_queries/cil_state_builder.mli
+++ b/src/kernel_services/ast_queries/cil_state_builder.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_queries/file.ml b/src/kernel_services/ast_queries/file.ml
index 198d03db923..ec61b34cb9f 100644
--- a/src/kernel_services/ast_queries/file.ml
+++ b/src/kernel_services/ast_queries/file.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_queries/file.mli b/src/kernel_services/ast_queries/file.mli
index 5cbfef57263..642f1f036dc 100644
--- a/src/kernel_services/ast_queries/file.mli
+++ b/src/kernel_services/ast_queries/file.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_queries/filecheck.ml b/src/kernel_services/ast_queries/filecheck.ml
index d3d0c5d68d3..f72ed2f5866 100644
--- a/src/kernel_services/ast_queries/filecheck.ml
+++ b/src/kernel_services/ast_queries/filecheck.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_queries/filecheck.mli b/src/kernel_services/ast_queries/filecheck.mli
index 0193ddf4de6..bc0fdc233f0 100644
--- a/src/kernel_services/ast_queries/filecheck.mli
+++ b/src/kernel_services/ast_queries/filecheck.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_queries/json_compilation_database.ml b/src/kernel_services/ast_queries/json_compilation_database.ml
index 1c0975165dc..895e3e49c46 100644
--- a/src/kernel_services/ast_queries/json_compilation_database.ml
+++ b/src/kernel_services/ast_queries/json_compilation_database.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_queries/json_compilation_database.mli b/src/kernel_services/ast_queries/json_compilation_database.mli
index 299d0ea5472..6c3688db865 100644
--- a/src/kernel_services/ast_queries/json_compilation_database.mli
+++ b/src/kernel_services/ast_queries/json_compilation_database.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_queries/logic_const.ml b/src/kernel_services/ast_queries/logic_const.ml
index 63f9e648670..28623b64f5e 100644
--- a/src/kernel_services/ast_queries/logic_const.ml
+++ b/src/kernel_services/ast_queries/logic_const.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_services/ast_queries/logic_const.mli b/src/kernel_services/ast_queries/logic_const.mli
index 8db8710c818..59e164be484 100644
--- a/src/kernel_services/ast_queries/logic_const.mli
+++ b/src/kernel_services/ast_queries/logic_const.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_services/ast_queries/logic_env.ml b/src/kernel_services/ast_queries/logic_env.ml
index fe1d9504c6a..556f8f7715b 100644
--- a/src/kernel_services/ast_queries/logic_env.ml
+++ b/src/kernel_services/ast_queries/logic_env.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_services/ast_queries/logic_env.mli b/src/kernel_services/ast_queries/logic_env.mli
index e3fcee6b3b7..e1d369a1c87 100644
--- a/src/kernel_services/ast_queries/logic_env.mli
+++ b/src/kernel_services/ast_queries/logic_env.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_services/ast_queries/logic_typing.ml b/src/kernel_services/ast_queries/logic_typing.ml
index b317c5daf7a..a5167acba4e 100644
--- a/src/kernel_services/ast_queries/logic_typing.ml
+++ b/src/kernel_services/ast_queries/logic_typing.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_services/ast_queries/logic_typing.mli b/src/kernel_services/ast_queries/logic_typing.mli
index 109b45d7f1b..bd1fe2010f1 100644
--- a/src/kernel_services/ast_queries/logic_typing.mli
+++ b/src/kernel_services/ast_queries/logic_typing.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_services/ast_queries/logic_utils.ml b/src/kernel_services/ast_queries/logic_utils.ml
index e6b2f808798..c62a3c86569 100644
--- a/src/kernel_services/ast_queries/logic_utils.ml
+++ b/src/kernel_services/ast_queries/logic_utils.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_services/ast_queries/logic_utils.mli b/src/kernel_services/ast_queries/logic_utils.mli
index 1e0ddf5ad41..5f184176743 100644
--- a/src/kernel_services/ast_queries/logic_utils.mli
+++ b/src/kernel_services/ast_queries/logic_utils.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_services/ast_transformations/clone.ml b/src/kernel_services/ast_transformations/clone.ml
index 73b013be8fd..ca4bce836e3 100644
--- a/src/kernel_services/ast_transformations/clone.ml
+++ b/src/kernel_services/ast_transformations/clone.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_transformations/clone.mli b/src/kernel_services/ast_transformations/clone.mli
index 0558cd86d19..6a7dd4fcdd2 100644
--- a/src/kernel_services/ast_transformations/clone.mli
+++ b/src/kernel_services/ast_transformations/clone.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_transformations/filter.ml b/src/kernel_services/ast_transformations/filter.ml
index 15ed737f258..43304358b4c 100644
--- a/src/kernel_services/ast_transformations/filter.ml
+++ b/src/kernel_services/ast_transformations/filter.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_transformations/filter.mli b/src/kernel_services/ast_transformations/filter.mli
index e41f394b6ea..32f6582f29b 100644
--- a/src/kernel_services/ast_transformations/filter.mli
+++ b/src/kernel_services/ast_transformations/filter.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_transformations/inline.ml b/src/kernel_services/ast_transformations/inline.ml
index 5d6c4d4b1ff..b8cddec6cc6 100644
--- a/src/kernel_services/ast_transformations/inline.ml
+++ b/src/kernel_services/ast_transformations/inline.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/ast_transformations/inline.mli b/src/kernel_services/ast_transformations/inline.mli
index 76b07d0f610..41bb697323e 100644
--- a/src/kernel_services/ast_transformations/inline.mli
+++ b/src/kernel_services/ast_transformations/inline.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/cmdline_parameters/cmdline.ml b/src/kernel_services/cmdline_parameters/cmdline.ml
index d630379cbaa..4fb1fe39b11 100644
--- a/src/kernel_services/cmdline_parameters/cmdline.ml
+++ b/src/kernel_services/cmdline_parameters/cmdline.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/cmdline_parameters/cmdline.mli b/src/kernel_services/cmdline_parameters/cmdline.mli
index d4a26b2eec6..6cacdae7d1c 100644
--- a/src/kernel_services/cmdline_parameters/cmdline.mli
+++ b/src/kernel_services/cmdline_parameters/cmdline.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/cmdline_parameters/parameter_builder.ml b/src/kernel_services/cmdline_parameters/parameter_builder.ml
index 2db615f3fd6..e3b4f911628 100644
--- a/src/kernel_services/cmdline_parameters/parameter_builder.ml
+++ b/src/kernel_services/cmdline_parameters/parameter_builder.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/cmdline_parameters/parameter_builder.mli b/src/kernel_services/cmdline_parameters/parameter_builder.mli
index bcb7d623a06..8db902acf72 100644
--- a/src/kernel_services/cmdline_parameters/parameter_builder.mli
+++ b/src/kernel_services/cmdline_parameters/parameter_builder.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/cmdline_parameters/parameter_category.ml b/src/kernel_services/cmdline_parameters/parameter_category.ml
index 15baba69030..dfced5b072b 100644
--- a/src/kernel_services/cmdline_parameters/parameter_category.ml
+++ b/src/kernel_services/cmdline_parameters/parameter_category.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/cmdline_parameters/parameter_category.mli b/src/kernel_services/cmdline_parameters/parameter_category.mli
index fcbbd8921fd..ff8abd7fc5e 100644
--- a/src/kernel_services/cmdline_parameters/parameter_category.mli
+++ b/src/kernel_services/cmdline_parameters/parameter_category.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/cmdline_parameters/parameter_customize.ml b/src/kernel_services/cmdline_parameters/parameter_customize.ml
index 456dae219a1..37a5571f35b 100644
--- a/src/kernel_services/cmdline_parameters/parameter_customize.ml
+++ b/src/kernel_services/cmdline_parameters/parameter_customize.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/cmdline_parameters/parameter_customize.mli b/src/kernel_services/cmdline_parameters/parameter_customize.mli
index b1360bc21d3..94eb9f8ef02 100644
--- a/src/kernel_services/cmdline_parameters/parameter_customize.mli
+++ b/src/kernel_services/cmdline_parameters/parameter_customize.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/cmdline_parameters/parameter_sig.mli b/src/kernel_services/cmdline_parameters/parameter_sig.mli
index d72b00e5014..f4ce284ef09 100644
--- a/src/kernel_services/cmdline_parameters/parameter_sig.mli
+++ b/src/kernel_services/cmdline_parameters/parameter_sig.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/cmdline_parameters/parameter_state.ml b/src/kernel_services/cmdline_parameters/parameter_state.ml
index 8941eec2758..c7c05928ff1 100644
--- a/src/kernel_services/cmdline_parameters/parameter_state.ml
+++ b/src/kernel_services/cmdline_parameters/parameter_state.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/cmdline_parameters/parameter_state.mli b/src/kernel_services/cmdline_parameters/parameter_state.mli
index 9cfb156d9eb..0401aad7f9c 100644
--- a/src/kernel_services/cmdline_parameters/parameter_state.mli
+++ b/src/kernel_services/cmdline_parameters/parameter_state.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/cmdline_parameters/typed_parameter.ml b/src/kernel_services/cmdline_parameters/typed_parameter.ml
index 581fe62fbf8..9221f8263ac 100644
--- a/src/kernel_services/cmdline_parameters/typed_parameter.ml
+++ b/src/kernel_services/cmdline_parameters/typed_parameter.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/cmdline_parameters/typed_parameter.mli b/src/kernel_services/cmdline_parameters/typed_parameter.mli
index 28fafe6d94b..0be0df53744 100644
--- a/src/kernel_services/cmdline_parameters/typed_parameter.mli
+++ b/src/kernel_services/cmdline_parameters/typed_parameter.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/parsetree/logic_ptree.mli b/src/kernel_services/parsetree/logic_ptree.mli
index 9dabbc955a6..8b256a5861a 100644
--- a/src/kernel_services/parsetree/logic_ptree.mli
+++ b/src/kernel_services/parsetree/logic_ptree.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_services/plugin_entry_points/db.ml b/src/kernel_services/plugin_entry_points/db.ml
index 339744070b2..d179e9ce4fc 100644
--- a/src/kernel_services/plugin_entry_points/db.ml
+++ b/src/kernel_services/plugin_entry_points/db.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/plugin_entry_points/db.mli b/src/kernel_services/plugin_entry_points/db.mli
index 30c474f13e5..ee87e6e6020 100644
--- a/src/kernel_services/plugin_entry_points/db.mli
+++ b/src/kernel_services/plugin_entry_points/db.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/plugin_entry_points/dynamic.ml b/src/kernel_services/plugin_entry_points/dynamic.ml
index e28fc9157b6..4f0f261cc0d 100644
--- a/src/kernel_services/plugin_entry_points/dynamic.ml
+++ b/src/kernel_services/plugin_entry_points/dynamic.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/plugin_entry_points/dynamic.mli b/src/kernel_services/plugin_entry_points/dynamic.mli
index ee97d92aed0..c21d4b2e7af 100644
--- a/src/kernel_services/plugin_entry_points/dynamic.mli
+++ b/src/kernel_services/plugin_entry_points/dynamic.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/plugin_entry_points/emitter.ml b/src/kernel_services/plugin_entry_points/emitter.ml
index abbdea466bd..db76eb65cbf 100644
--- a/src/kernel_services/plugin_entry_points/emitter.ml
+++ b/src/kernel_services/plugin_entry_points/emitter.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/plugin_entry_points/emitter.mli b/src/kernel_services/plugin_entry_points/emitter.mli
index c3f30a88bc5..2540b0e092e 100644
--- a/src/kernel_services/plugin_entry_points/emitter.mli
+++ b/src/kernel_services/plugin_entry_points/emitter.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/plugin_entry_points/journal.ml b/src/kernel_services/plugin_entry_points/journal.ml
index 82363e74f33..33407609cbe 100644
--- a/src/kernel_services/plugin_entry_points/journal.ml
+++ b/src/kernel_services/plugin_entry_points/journal.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/plugin_entry_points/journal.mli b/src/kernel_services/plugin_entry_points/journal.mli
index 82d2b8d6529..8d7f8e2b87b 100644
--- a/src/kernel_services/plugin_entry_points/journal.mli
+++ b/src/kernel_services/plugin_entry_points/journal.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/plugin_entry_points/kernel.ml b/src/kernel_services/plugin_entry_points/kernel.ml
index d75e4af4d4f..4444276b7a8 100644
--- a/src/kernel_services/plugin_entry_points/kernel.ml
+++ b/src/kernel_services/plugin_entry_points/kernel.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/plugin_entry_points/kernel.mli b/src/kernel_services/plugin_entry_points/kernel.mli
index 172ab5ef8db..bb6247d651b 100644
--- a/src/kernel_services/plugin_entry_points/kernel.mli
+++ b/src/kernel_services/plugin_entry_points/kernel.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/plugin_entry_points/log.ml b/src/kernel_services/plugin_entry_points/log.ml
index 9c1c0bcf1af..5ee3aa274f0 100644
--- a/src/kernel_services/plugin_entry_points/log.ml
+++ b/src/kernel_services/plugin_entry_points/log.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/plugin_entry_points/log.mli b/src/kernel_services/plugin_entry_points/log.mli
index 20ffa81b0f5..0a07a3805f6 100644
--- a/src/kernel_services/plugin_entry_points/log.mli
+++ b/src/kernel_services/plugin_entry_points/log.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/plugin_entry_points/plugin.ml b/src/kernel_services/plugin_entry_points/plugin.ml
index 27a3b48fbf2..caa286cf6bb 100644
--- a/src/kernel_services/plugin_entry_points/plugin.ml
+++ b/src/kernel_services/plugin_entry_points/plugin.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/plugin_entry_points/plugin.mli b/src/kernel_services/plugin_entry_points/plugin.mli
index 6cee5207ce1..4fd6bf083a0 100644
--- a/src/kernel_services/plugin_entry_points/plugin.mli
+++ b/src/kernel_services/plugin_entry_points/plugin.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/visitors/visitor.ml b/src/kernel_services/visitors/visitor.ml
index dbda6a580bb..1121a89660d 100644
--- a/src/kernel_services/visitors/visitor.ml
+++ b/src/kernel_services/visitors/visitor.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/visitors/visitor.mli b/src/kernel_services/visitors/visitor.mli
index fc7803bc7e8..8b0a5da0742 100644
--- a/src/kernel_services/visitors/visitor.mli
+++ b/src/kernel_services/visitors/visitor.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/kernel_services/visitors/visitor_behavior.ml b/src/kernel_services/visitors/visitor_behavior.ml
index 3b8cc057eae..6e84cfe9e59 100644
--- a/src/kernel_services/visitors/visitor_behavior.ml
+++ b/src/kernel_services/visitors/visitor_behavior.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/kernel_services/visitors/visitor_behavior.mli b/src/kernel_services/visitors/visitor_behavior.mli
index 3b86eccd541..0b6a8f7f128 100644
--- a/src/kernel_services/visitors/visitor_behavior.mli
+++ b/src/kernel_services/visitors/visitor_behavior.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/libraries/datatype/datatype.ml b/src/libraries/datatype/datatype.ml
index 15f71923075..774bdb8c792 100644
--- a/src/libraries/datatype/datatype.ml
+++ b/src/libraries/datatype/datatype.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/datatype/datatype.mli b/src/libraries/datatype/datatype.mli
index f4717ef4eb0..d2e972ba300 100644
--- a/src/libraries/datatype/datatype.mli
+++ b/src/libraries/datatype/datatype.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/datatype/descr.ml b/src/libraries/datatype/descr.ml
index 78f74f198b2..c7195a3c07d 100644
--- a/src/libraries/datatype/descr.ml
+++ b/src/libraries/datatype/descr.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/datatype/descr.mli b/src/libraries/datatype/descr.mli
index 9ffc786bd22..53e712f149c 100644
--- a/src/libraries/datatype/descr.mli
+++ b/src/libraries/datatype/descr.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/datatype/structural_descr.ml b/src/libraries/datatype/structural_descr.ml
index 0bf7b5b2d57..7e8c2f4e4ce 100644
--- a/src/libraries/datatype/structural_descr.ml
+++ b/src/libraries/datatype/structural_descr.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/datatype/structural_descr.mli b/src/libraries/datatype/structural_descr.mli
index 799ce244b96..a68e964c68b 100644
--- a/src/libraries/datatype/structural_descr.mli
+++ b/src/libraries/datatype/structural_descr.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/datatype/type.ml b/src/libraries/datatype/type.ml
index 79a802edd04..54a9a0fb615 100644
--- a/src/libraries/datatype/type.ml
+++ b/src/libraries/datatype/type.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/datatype/type.mli b/src/libraries/datatype/type.mli
index c183d531bee..6f4c91a277b 100644
--- a/src/libraries/datatype/type.mli
+++ b/src/libraries/datatype/type.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/datatype/unmarshal_z.ml b/src/libraries/datatype/unmarshal_z.ml
index a38fd24f2f8..b61768bedb3 100644
--- a/src/libraries/datatype/unmarshal_z.ml
+++ b/src/libraries/datatype/unmarshal_z.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/datatype/unmarshal_z.mli b/src/libraries/datatype/unmarshal_z.mli
index dc3a583fdfc..203d133b793 100644
--- a/src/libraries/datatype/unmarshal_z.mli
+++ b/src/libraries/datatype/unmarshal_z.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/project/project.ml b/src/libraries/project/project.ml
index 9533032102a..f68bcdc4bca 100644
--- a/src/libraries/project/project.ml
+++ b/src/libraries/project/project.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/project/project.mli b/src/libraries/project/project.mli
index 09f56a7279c..544ca28b404 100644
--- a/src/libraries/project/project.mli
+++ b/src/libraries/project/project.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/project/project_skeleton.ml b/src/libraries/project/project_skeleton.ml
index 13d122a5c8d..5dcaf22d278 100644
--- a/src/libraries/project/project_skeleton.ml
+++ b/src/libraries/project/project_skeleton.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/project/project_skeleton.mli b/src/libraries/project/project_skeleton.mli
index dd6ea0a8c15..bd3a8a394ca 100644
--- a/src/libraries/project/project_skeleton.mli
+++ b/src/libraries/project/project_skeleton.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/project/state.ml b/src/libraries/project/state.ml
index c900314018a..cb3d5a44e7e 100644
--- a/src/libraries/project/state.ml
+++ b/src/libraries/project/state.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/project/state.mli b/src/libraries/project/state.mli
index 9ac2d1b8400..bf32187eb62 100644
--- a/src/libraries/project/state.mli
+++ b/src/libraries/project/state.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/project/state_builder.ml b/src/libraries/project/state_builder.ml
index f5c160bdb19..b60b0e2d543 100644
--- a/src/libraries/project/state_builder.ml
+++ b/src/libraries/project/state_builder.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/project/state_builder.mli b/src/libraries/project/state_builder.mli
index bf6838d2982..91ad1c1635c 100644
--- a/src/libraries/project/state_builder.mli
+++ b/src/libraries/project/state_builder.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/project/state_dependency_graph.ml b/src/libraries/project/state_dependency_graph.ml
index c1179a5673c..7f0eaf0abaf 100644
--- a/src/libraries/project/state_dependency_graph.ml
+++ b/src/libraries/project/state_dependency_graph.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/project/state_dependency_graph.mli b/src/libraries/project/state_dependency_graph.mli
index b5540f2103c..6af18f0a7d3 100644
--- a/src/libraries/project/state_dependency_graph.mli
+++ b/src/libraries/project/state_dependency_graph.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/project/state_selection.ml b/src/libraries/project/state_selection.ml
index e05c025078a..a3084868f0f 100644
--- a/src/libraries/project/state_selection.ml
+++ b/src/libraries/project/state_selection.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/project/state_selection.mli b/src/libraries/project/state_selection.mli
index 33e51107933..18cb5eaa729 100644
--- a/src/libraries/project/state_selection.mli
+++ b/src/libraries/project/state_selection.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/stdlib/FCHashtbl.ml b/src/libraries/stdlib/FCHashtbl.ml
index c8a33905752..b5d6d58ccd5 100644
--- a/src/libraries/stdlib/FCHashtbl.ml
+++ b/src/libraries/stdlib/FCHashtbl.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/stdlib/FCHashtbl.mli b/src/libraries/stdlib/FCHashtbl.mli
index 998aab3dd92..abe0525d113 100644
--- a/src/libraries/stdlib/FCHashtbl.mli
+++ b/src/libraries/stdlib/FCHashtbl.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/stdlib/extlib.ml b/src/libraries/stdlib/extlib.ml
index 883895c10da..00adc72190a 100644
--- a/src/libraries/stdlib/extlib.ml
+++ b/src/libraries/stdlib/extlib.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/stdlib/extlib.mli b/src/libraries/stdlib/extlib.mli
index 5bed3af7537..07eac0f5449 100644
--- a/src/libraries/stdlib/extlib.mli
+++ b/src/libraries/stdlib/extlib.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/stdlib/integer.ml b/src/libraries/stdlib/integer.ml
index 6b19a9518eb..103b96f8acb 100644
--- a/src/libraries/stdlib/integer.ml
+++ b/src/libraries/stdlib/integer.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/stdlib/integer.mli b/src/libraries/stdlib/integer.mli
index f262a9a7d6f..5a3019d2b08 100644
--- a/src/libraries/stdlib/integer.mli
+++ b/src/libraries/stdlib/integer.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/stdlib/transitioning.ml.in b/src/libraries/stdlib/transitioning.ml.in
index 182bc40a8e1..676dc9b6fa4 100644
--- a/src/libraries/stdlib/transitioning.ml.in
+++ b/src/libraries/stdlib/transitioning.ml.in
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
@@ -19,3 +19,4 @@
 (*  for more details (enclosed in the file licenses/LGPLv2.1).            *)
 (*                                                                        *)
 (**************************************************************************)
+
diff --git a/src/libraries/stdlib/transitioning.mli b/src/libraries/stdlib/transitioning.mli
index d882bcef8ac..415b987eba7 100644
--- a/src/libraries/stdlib/transitioning.mli
+++ b/src/libraries/stdlib/transitioning.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/bag.ml b/src/libraries/utils/bag.ml
index e93f093ba8b..84ff205276e 100644
--- a/src/libraries/utils/bag.ml
+++ b/src/libraries/utils/bag.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/bag.mli b/src/libraries/utils/bag.mli
index 1e466b2e6e2..2b64c202ecd 100644
--- a/src/libraries/utils/bag.mli
+++ b/src/libraries/utils/bag.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/binary_cache.ml b/src/libraries/utils/binary_cache.ml
index b6b7583a594..944446cb1eb 100644
--- a/src/libraries/utils/binary_cache.ml
+++ b/src/libraries/utils/binary_cache.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/binary_cache.mli b/src/libraries/utils/binary_cache.mli
index b72f2a50ced..b0cd0098ced 100644
--- a/src/libraries/utils/binary_cache.mli
+++ b/src/libraries/utils/binary_cache.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/bitvector.ml b/src/libraries/utils/bitvector.ml
index 7aa34b0fa72..48b5ac70d0f 100644
--- a/src/libraries/utils/bitvector.ml
+++ b/src/libraries/utils/bitvector.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/bitvector.mli b/src/libraries/utils/bitvector.mli
index 4ea4bc58dde..58d4b876e08 100644
--- a/src/libraries/utils/bitvector.mli
+++ b/src/libraries/utils/bitvector.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/c_bindings.c b/src/libraries/utils/c_bindings.c
index 8ddedd9fc6a..784b98c5c7e 100644
--- a/src/libraries/utils/c_bindings.c
+++ b/src/libraries/utils/c_bindings.c
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/src/libraries/utils/command.ml b/src/libraries/utils/command.ml
index 6f832d3856b..1849f05a637 100644
--- a/src/libraries/utils/command.ml
+++ b/src/libraries/utils/command.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/command.mli b/src/libraries/utils/command.mli
index 676bccd9d2b..5e264657ee0 100644
--- a/src/libraries/utils/command.mli
+++ b/src/libraries/utils/command.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/dotgraph.ml b/src/libraries/utils/dotgraph.ml
index 3072dbf8b95..19edb01d4f8 100644
--- a/src/libraries/utils/dotgraph.ml
+++ b/src/libraries/utils/dotgraph.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/dotgraph.mli b/src/libraries/utils/dotgraph.mli
index 12d7faeb84e..a97758617b3 100644
--- a/src/libraries/utils/dotgraph.mli
+++ b/src/libraries/utils/dotgraph.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/filepath.ml b/src/libraries/utils/filepath.ml
index 0d710ddc909..567261e3b48 100644
--- a/src/libraries/utils/filepath.ml
+++ b/src/libraries/utils/filepath.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/filepath.mli b/src/libraries/utils/filepath.mli
index 346e3c3fc15..72577230acf 100644
--- a/src/libraries/utils/filepath.mli
+++ b/src/libraries/utils/filepath.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/floating_point.ml b/src/libraries/utils/floating_point.ml
index e86a8df5f1b..39461ef8d17 100644
--- a/src/libraries/utils/floating_point.ml
+++ b/src/libraries/utils/floating_point.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/floating_point.mli b/src/libraries/utils/floating_point.mli
index 10c0f35d64c..3081f2936ea 100644
--- a/src/libraries/utils/floating_point.mli
+++ b/src/libraries/utils/floating_point.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/hook.ml b/src/libraries/utils/hook.ml
index 0c12ef1cbc4..50f42ee5a39 100644
--- a/src/libraries/utils/hook.ml
+++ b/src/libraries/utils/hook.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/hook.mli b/src/libraries/utils/hook.mli
index c840c663b6a..c212b7882aa 100644
--- a/src/libraries/utils/hook.mli
+++ b/src/libraries/utils/hook.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/hptset.ml b/src/libraries/utils/hptset.ml
index 260bf12b9a9..14afb981d47 100644
--- a/src/libraries/utils/hptset.ml
+++ b/src/libraries/utils/hptset.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/hptset.mli b/src/libraries/utils/hptset.mli
index 12926eb0c8e..ad71b75f483 100644
--- a/src/libraries/utils/hptset.mli
+++ b/src/libraries/utils/hptset.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/indexer.ml b/src/libraries/utils/indexer.ml
index 82d8943ce41..7d710d4f917 100644
--- a/src/libraries/utils/indexer.ml
+++ b/src/libraries/utils/indexer.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/indexer.mli b/src/libraries/utils/indexer.mli
index 4c66f97ef26..5619ad34325 100644
--- a/src/libraries/utils/indexer.mli
+++ b/src/libraries/utils/indexer.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/json.mli b/src/libraries/utils/json.mli
index 681da07c72e..ebfa936330d 100644
--- a/src/libraries/utils/json.mli
+++ b/src/libraries/utils/json.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/json.mll b/src/libraries/utils/json.mll
index 7368c65f3e4..8289f92d723 100644
--- a/src/libraries/utils/json.mll
+++ b/src/libraries/utils/json.mll
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/markdown.ml b/src/libraries/utils/markdown.ml
index 92153e7eb31..4b0a960c9fd 100644
--- a/src/libraries/utils/markdown.ml
+++ b/src/libraries/utils/markdown.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/markdown.mli b/src/libraries/utils/markdown.mli
index 08bbe412541..5a048ef01e3 100644
--- a/src/libraries/utils/markdown.mli
+++ b/src/libraries/utils/markdown.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/pretty_utils.ml b/src/libraries/utils/pretty_utils.ml
index 88f0292af0f..299b824e430 100644
--- a/src/libraries/utils/pretty_utils.ml
+++ b/src/libraries/utils/pretty_utils.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/pretty_utils.mli b/src/libraries/utils/pretty_utils.mli
index 2655e7f1db1..10a7e607a22 100644
--- a/src/libraries/utils/pretty_utils.mli
+++ b/src/libraries/utils/pretty_utils.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/qstack.ml b/src/libraries/utils/qstack.ml
index d618a3e55f3..7e91044f0d7 100644
--- a/src/libraries/utils/qstack.ml
+++ b/src/libraries/utils/qstack.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/qstack.mli b/src/libraries/utils/qstack.mli
index 9fb0ea9fff2..eb0ce8292c9 100644
--- a/src/libraries/utils/qstack.mli
+++ b/src/libraries/utils/qstack.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/rgmap.ml b/src/libraries/utils/rgmap.ml
index 4888dec3640..b98860c47c1 100644
--- a/src/libraries/utils/rgmap.ml
+++ b/src/libraries/utils/rgmap.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/rgmap.mli b/src/libraries/utils/rgmap.mli
index 3cddeac1481..abefa483fd1 100644
--- a/src/libraries/utils/rgmap.mli
+++ b/src/libraries/utils/rgmap.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/rich_text.ml b/src/libraries/utils/rich_text.ml
index 006995446ac..3cbde20d005 100644
--- a/src/libraries/utils/rich_text.ml
+++ b/src/libraries/utils/rich_text.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/rich_text.mli b/src/libraries/utils/rich_text.mli
index 1326ed8ca1a..016716791ae 100644
--- a/src/libraries/utils/rich_text.mli
+++ b/src/libraries/utils/rich_text.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/sanitizer.ml b/src/libraries/utils/sanitizer.ml
index 3aa47eca7f5..2ad2c0b679c 100644
--- a/src/libraries/utils/sanitizer.ml
+++ b/src/libraries/utils/sanitizer.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/sanitizer.mli b/src/libraries/utils/sanitizer.mli
index aa173ecc031..583746bfce8 100644
--- a/src/libraries/utils/sanitizer.mli
+++ b/src/libraries/utils/sanitizer.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/task.ml b/src/libraries/utils/task.ml
index b3312aa812a..811f37de5bf 100644
--- a/src/libraries/utils/task.ml
+++ b/src/libraries/utils/task.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/task.mli b/src/libraries/utils/task.mli
index f65aa462d90..b65ae71253e 100644
--- a/src/libraries/utils/task.mli
+++ b/src/libraries/utils/task.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/unicode.ml b/src/libraries/utils/unicode.ml
index 7b827d298c5..2059af56dd9 100644
--- a/src/libraries/utils/unicode.ml
+++ b/src/libraries/utils/unicode.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/unicode.mli b/src/libraries/utils/unicode.mli
index 61b4e3047ba..7f9fb08a9c6 100644
--- a/src/libraries/utils/unicode.mli
+++ b/src/libraries/utils/unicode.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/utf8_logic.ml b/src/libraries/utils/utf8_logic.ml
index 92f594e8999..487c903cac5 100644
--- a/src/libraries/utils/utf8_logic.ml
+++ b/src/libraries/utils/utf8_logic.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/libraries/utils/utf8_logic.mli b/src/libraries/utils/utf8_logic.mli
index 7b6ea13a0da..90a052281bc 100644
--- a/src/libraries/utils/utf8_logic.mli
+++ b/src/libraries/utils/utf8_logic.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA   (Commissariat à l'énergie atomique et aux énergies            *)
 (*           alternatives)                                                *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/libraries/utils/vector.ml b/src/libraries/utils/vector.ml
index 416e52dcd59..af703c3fe23 100644
--- a/src/libraries/utils/vector.ml
+++ b/src/libraries/utils/vector.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/vector.mli b/src/libraries/utils/vector.mli
index 35308387d2c..69739a6ccce 100644
--- a/src/libraries/utils/vector.mli
+++ b/src/libraries/utils/vector.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/wto.ml b/src/libraries/utils/wto.ml
index 5c6ed3e9801..cf06bf76c7a 100644
--- a/src/libraries/utils/wto.ml
+++ b/src/libraries/utils/wto.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/libraries/utils/wto.mli b/src/libraries/utils/wto.mli
index 6a12f1a3f84..39d14925d37 100644
--- a/src/libraries/utils/wto.mli
+++ b/src/libraries/utils/wto.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/aorai/Aorai.mli b/src/plugins/aorai/Aorai.mli
index a331e2048f2..b4abc4b3932 100644
--- a/src/plugins/aorai/Aorai.mli
+++ b/src/plugins/aorai/Aorai.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/Makefile.in b/src/plugins/aorai/Makefile.in
index 5c616604fc7..344b727bf9d 100644
--- a/src/plugins/aorai/Makefile.in
+++ b/src/plugins/aorai/Makefile.in
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Aorai plug-in of Frama-C.                        #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #    INRIA (Institut National de Recherche en Informatique et en         #
diff --git a/src/plugins/aorai/aorai_dataflow.ml b/src/plugins/aorai/aorai_dataflow.ml
index a556a8a1cd3..3cb48086ec7 100644
--- a/src/plugins/aorai/aorai_dataflow.ml
+++ b/src/plugins/aorai/aorai_dataflow.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/aorai_dataflow.mli b/src/plugins/aorai/aorai_dataflow.mli
index 47dd8862031..458982b4d83 100644
--- a/src/plugins/aorai/aorai_dataflow.mli
+++ b/src/plugins/aorai/aorai_dataflow.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/aorai_eva_analysis.disabled.ml b/src/plugins/aorai/aorai_eva_analysis.disabled.ml
index b17dd3dae1b..39998c5cf00 100644
--- a/src/plugins/aorai/aorai_eva_analysis.disabled.ml
+++ b/src/plugins/aorai/aorai_eva_analysis.disabled.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/aorai_eva_analysis.enabled.ml b/src/plugins/aorai/aorai_eva_analysis.enabled.ml
index 66770622529..518a8bf3d49 100644
--- a/src/plugins/aorai/aorai_eva_analysis.enabled.ml
+++ b/src/plugins/aorai/aorai_eva_analysis.enabled.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/aorai_eva_analysis.mli b/src/plugins/aorai/aorai_eva_analysis.mli
index 8f6790f45f5..cdd3a8ec23d 100644
--- a/src/plugins/aorai/aorai_eva_analysis.mli
+++ b/src/plugins/aorai/aorai_eva_analysis.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/aorai_graph.ml b/src/plugins/aorai/aorai_graph.ml
index 6f957dd8345..f8e9ae8dd77 100644
--- a/src/plugins/aorai/aorai_graph.ml
+++ b/src/plugins/aorai/aorai_graph.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/aorai_graph.mli b/src/plugins/aorai/aorai_graph.mli
index 8735c3cc1e7..fc3370cf848 100644
--- a/src/plugins/aorai/aorai_graph.mli
+++ b/src/plugins/aorai/aorai_graph.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/aorai_metavariables.ml b/src/plugins/aorai/aorai_metavariables.ml
index 2692a1658d3..7fe2d7fbc92 100644
--- a/src/plugins/aorai/aorai_metavariables.ml
+++ b/src/plugins/aorai/aorai_metavariables.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/aorai_metavariables.mli b/src/plugins/aorai/aorai_metavariables.mli
index 47c4a7a22ba..66caa733b4a 100644
--- a/src/plugins/aorai/aorai_metavariables.mli
+++ b/src/plugins/aorai/aorai_metavariables.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/aorai_option.ml b/src/plugins/aorai/aorai_option.ml
index 90946d86242..02127aa546d 100644
--- a/src/plugins/aorai/aorai_option.ml
+++ b/src/plugins/aorai/aorai_option.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/aorai_option.mli b/src/plugins/aorai/aorai_option.mli
index b6b220f0fe3..d34f59dba0f 100644
--- a/src/plugins/aorai/aorai_option.mli
+++ b/src/plugins/aorai/aorai_option.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/aorai_register.ml b/src/plugins/aorai/aorai_register.ml
index d609113165c..ec4f9e123cd 100644
--- a/src/plugins/aorai/aorai_register.ml
+++ b/src/plugins/aorai/aorai_register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/aorai_utils.ml b/src/plugins/aorai/aorai_utils.ml
index dd533767fdd..e2b495a3364 100644
--- a/src/plugins/aorai/aorai_utils.ml
+++ b/src/plugins/aorai/aorai_utils.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/aorai_utils.mli b/src/plugins/aorai/aorai_utils.mli
index efb8b12df79..1c05af17575 100644
--- a/src/plugins/aorai/aorai_utils.mli
+++ b/src/plugins/aorai/aorai_utils.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/aorai_visitors.ml b/src/plugins/aorai/aorai_visitors.ml
index 7011f12d520..93889b764fe 100644
--- a/src/plugins/aorai/aorai_visitors.ml
+++ b/src/plugins/aorai/aorai_visitors.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/bool3.ml b/src/plugins/aorai/bool3.ml
index 53d647ddb59..dbf222ad84a 100644
--- a/src/plugins/aorai/bool3.ml
+++ b/src/plugins/aorai/bool3.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/bool3.mli b/src/plugins/aorai/bool3.mli
index ceb7ceb0729..9b0c7655172 100644
--- a/src/plugins/aorai/bool3.mli
+++ b/src/plugins/aorai/bool3.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/configure.ac b/src/plugins/aorai/configure.ac
index c371841e9e5..33e05cc26d5 100644
--- a/src/plugins/aorai/configure.ac
+++ b/src/plugins/aorai/configure.ac
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Aorai plug-in of Frama-C.                        #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #    INRIA (Institut National de Recherche en Informatique et en         #
diff --git a/src/plugins/aorai/data_for_aorai.ml b/src/plugins/aorai/data_for_aorai.ml
index abc05400af3..d1593994ece 100644
--- a/src/plugins/aorai/data_for_aorai.ml
+++ b/src/plugins/aorai/data_for_aorai.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/data_for_aorai.mli b/src/plugins/aorai/data_for_aorai.mli
index b90f1272235..43040e122ef 100644
--- a/src/plugins/aorai/data_for_aorai.mli
+++ b/src/plugins/aorai/data_for_aorai.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/logic_simplification.ml b/src/plugins/aorai/logic_simplification.ml
index 9bf174dd1ae..e9afa1fc738 100644
--- a/src/plugins/aorai/logic_simplification.ml
+++ b/src/plugins/aorai/logic_simplification.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/logic_simplification.mli b/src/plugins/aorai/logic_simplification.mli
index 6c58727222e..725be670273 100644
--- a/src/plugins/aorai/logic_simplification.mli
+++ b/src/plugins/aorai/logic_simplification.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/ltl_output.ml b/src/plugins/aorai/ltl_output.ml
index 348b31fd79f..5f6d155c4c5 100644
--- a/src/plugins/aorai/ltl_output.ml
+++ b/src/plugins/aorai/ltl_output.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/ltl_output.mli b/src/plugins/aorai/ltl_output.mli
index 95ed246a91c..16c5c492c6c 100644
--- a/src/plugins/aorai/ltl_output.mli
+++ b/src/plugins/aorai/ltl_output.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/ltlast.mli b/src/plugins/aorai/ltlast.mli
index 00447010293..344b9eb3666 100644
--- a/src/plugins/aorai/ltlast.mli
+++ b/src/plugins/aorai/ltlast.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/ltllexer.mll b/src/plugins/aorai/ltllexer.mll
index 90d243245ce..a217fb37e85 100644
--- a/src/plugins/aorai/ltllexer.mll
+++ b/src/plugins/aorai/ltllexer.mll
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/ltlparser.mly b/src/plugins/aorai/ltlparser.mly
index 7ad9ecf07dc..4d38a3b25d7 100644
--- a/src/plugins/aorai/ltlparser.mly
+++ b/src/plugins/aorai/ltlparser.mly
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Aorai plug-in of Frama-C.                        */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*    INRIA (Institut National de Recherche en Informatique et en         */
diff --git a/src/plugins/aorai/path_analysis.ml b/src/plugins/aorai/path_analysis.ml
index f66800f735c..d9afc0d49c1 100644
--- a/src/plugins/aorai/path_analysis.ml
+++ b/src/plugins/aorai/path_analysis.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/promelaast.mli b/src/plugins/aorai/promelaast.mli
index 833e13eddde..c2f539897fc 100644
--- a/src/plugins/aorai/promelaast.mli
+++ b/src/plugins/aorai/promelaast.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/promelalexer.mll b/src/plugins/aorai/promelalexer.mll
index a870e4d5b60..633d018dd49 100644
--- a/src/plugins/aorai/promelalexer.mll
+++ b/src/plugins/aorai/promelalexer.mll
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/promelalexer_withexps.mll b/src/plugins/aorai/promelalexer_withexps.mll
index c04cc3164f4..60a6eccee52 100644
--- a/src/plugins/aorai/promelalexer_withexps.mll
+++ b/src/plugins/aorai/promelalexer_withexps.mll
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/promelaoutput.ml b/src/plugins/aorai/promelaoutput.ml
index cac471f43ab..c95abd00c50 100644
--- a/src/plugins/aorai/promelaoutput.ml
+++ b/src/plugins/aorai/promelaoutput.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/promelaoutput.mli b/src/plugins/aorai/promelaoutput.mli
index 3edf6aabb28..ad8a7ea0e0f 100644
--- a/src/plugins/aorai/promelaoutput.mli
+++ b/src/plugins/aorai/promelaoutput.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/promelaparser.mly b/src/plugins/aorai/promelaparser.mly
index 1badbbe38a9..a964e81e5a3 100644
--- a/src/plugins/aorai/promelaparser.mly
+++ b/src/plugins/aorai/promelaparser.mly
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Aorai plug-in of Frama-C.                        */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*    INRIA (Institut National de Recherche en Informatique et en         */
diff --git a/src/plugins/aorai/promelaparser_withexps.mly b/src/plugins/aorai/promelaparser_withexps.mly
index 4f8abab8a0e..1c9c4f71023 100644
--- a/src/plugins/aorai/promelaparser_withexps.mly
+++ b/src/plugins/aorai/promelaparser_withexps.mly
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Aorai plug-in of Frama-C.                        */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*    INRIA (Institut National de Recherche en Informatique et en         */
diff --git a/src/plugins/aorai/utils_parser.ml b/src/plugins/aorai/utils_parser.ml
index a07de0f812b..d9b243618eb 100644
--- a/src/plugins/aorai/utils_parser.ml
+++ b/src/plugins/aorai/utils_parser.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/yalexer.mll b/src/plugins/aorai/yalexer.mll
index 54a238bc934..b99f7b4a832 100644
--- a/src/plugins/aorai/yalexer.mll
+++ b/src/plugins/aorai/yalexer.mll
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Aorai plug-in of Frama-C.                        *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*    INRIA (Institut National de Recherche en Informatique et en         *)
diff --git a/src/plugins/aorai/yaparser.mly b/src/plugins/aorai/yaparser.mly
index 699489687f3..fc6ea315e04 100644
--- a/src/plugins/aorai/yaparser.mly
+++ b/src/plugins/aorai/yaparser.mly
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Aorai plug-in of Frama-C.                        */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*    INRIA (Institut National de Recherche en Informatique et en         */
diff --git a/src/plugins/callgraph/Callgraph.mli b/src/plugins/callgraph/Callgraph.mli
index 4a66ce06fe8..0d649136073 100644
--- a/src/plugins/callgraph/Callgraph.mli
+++ b/src/plugins/callgraph/Callgraph.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/callgraph/callgraph_api.mli b/src/plugins/callgraph/callgraph_api.mli
index 3ac0ff45c8e..2eaf5ffbfb2 100644
--- a/src/plugins/callgraph/callgraph_api.mli
+++ b/src/plugins/callgraph/callgraph_api.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/callgraph/cg.ml b/src/plugins/callgraph/cg.ml
index 57bfa6b1fb8..4593f34eb37 100644
--- a/src/plugins/callgraph/cg.ml
+++ b/src/plugins/callgraph/cg.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/callgraph/cg.mli b/src/plugins/callgraph/cg.mli
index acaa12e16a2..e2414d5e49f 100644
--- a/src/plugins/callgraph/cg.mli
+++ b/src/plugins/callgraph/cg.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/callgraph/cg_viewer.yes.ml b/src/plugins/callgraph/cg_viewer.yes.ml
index d29b123e0cb..dfbff693bae 100644
--- a/src/plugins/callgraph/cg_viewer.yes.ml
+++ b/src/plugins/callgraph/cg_viewer.yes.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/callgraph/journalize.ml b/src/plugins/callgraph/journalize.ml
index eb0296fea00..7471d201b83 100644
--- a/src/plugins/callgraph/journalize.ml
+++ b/src/plugins/callgraph/journalize.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/callgraph/journalize.mli b/src/plugins/callgraph/journalize.mli
index 4dc17a09eed..afb124a4ffd 100644
--- a/src/plugins/callgraph/journalize.mli
+++ b/src/plugins/callgraph/journalize.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/callgraph/options.ml b/src/plugins/callgraph/options.ml
index 6dc9b567c5e..d42856664a9 100644
--- a/src/plugins/callgraph/options.ml
+++ b/src/plugins/callgraph/options.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/callgraph/options.mli b/src/plugins/callgraph/options.mli
index b85007ef1c3..aa6fd2e5026 100644
--- a/src/plugins/callgraph/options.mli
+++ b/src/plugins/callgraph/options.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/callgraph/register.ml b/src/plugins/callgraph/register.ml
index c49166c29d6..d7da576b50f 100644
--- a/src/plugins/callgraph/register.ml
+++ b/src/plugins/callgraph/register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/callgraph/services.ml b/src/plugins/callgraph/services.ml
index b283fbfc36e..fae225ee3cb 100644
--- a/src/plugins/callgraph/services.ml
+++ b/src/plugins/callgraph/services.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/callgraph/services.mli b/src/plugins/callgraph/services.mli
index 39ba4c4f8fc..1230f2106ad 100644
--- a/src/plugins/callgraph/services.mli
+++ b/src/plugins/callgraph/services.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/callgraph/subgraph.ml b/src/plugins/callgraph/subgraph.ml
index 3376dc40213..a6d31f08255 100644
--- a/src/plugins/callgraph/subgraph.ml
+++ b/src/plugins/callgraph/subgraph.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/callgraph/subgraph.mli b/src/plugins/callgraph/subgraph.mli
index 4a14a2d0f5b..00f19b29c38 100644
--- a/src/plugins/callgraph/subgraph.mli
+++ b/src/plugins/callgraph/subgraph.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/callgraph/uses.ml b/src/plugins/callgraph/uses.ml
index b203750505b..1f6b72b02d9 100644
--- a/src/plugins/callgraph/uses.ml
+++ b/src/plugins/callgraph/uses.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/callgraph/uses.mli b/src/plugins/callgraph/uses.mli
index 5d345f11bca..81ee102626f 100644
--- a/src/plugins/callgraph/uses.mli
+++ b/src/plugins/callgraph/uses.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/constant_propagation/Constant_Propagation.mli b/src/plugins/constant_propagation/Constant_Propagation.mli
index b34db0dbfe1..6bfedef7a5c 100644
--- a/src/plugins/constant_propagation/Constant_Propagation.mli
+++ b/src/plugins/constant_propagation/Constant_Propagation.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/constant_propagation/api.ml b/src/plugins/constant_propagation/api.ml
index 5edc8c84392..569d5d24e3a 100644
--- a/src/plugins/constant_propagation/api.ml
+++ b/src/plugins/constant_propagation/api.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/constant_propagation/api.mli b/src/plugins/constant_propagation/api.mli
index 763f2eb9e4f..0d19fa37068 100644
--- a/src/plugins/constant_propagation/api.mli
+++ b/src/plugins/constant_propagation/api.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/constant_propagation/propagationParameters.ml b/src/plugins/constant_propagation/propagationParameters.ml
index 026125e1e25..40f995c204b 100644
--- a/src/plugins/constant_propagation/propagationParameters.ml
+++ b/src/plugins/constant_propagation/propagationParameters.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/constant_propagation/propagationParameters.mli b/src/plugins/constant_propagation/propagationParameters.mli
index d7fe6c9ba77..7a06a4e4be8 100644
--- a/src/plugins/constant_propagation/propagationParameters.mli
+++ b/src/plugins/constant_propagation/propagationParameters.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/dive/Dive.mli b/src/plugins/dive/Dive.mli
index 182bc40a8e1..cce51dc83ef 100644
--- a/src/plugins/dive/Dive.mli
+++ b/src/plugins/dive/Dive.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/dive/Makefile.in b/src/plugins/dive/Makefile.in
index 10125171ad2..7b6bf1276f9 100644
--- a/src/plugins/dive/Makefile.in
+++ b/src/plugins/dive/Makefile.in
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/dive/build.ml b/src/plugins/dive/build.ml
index 03f14617e46..5ed33280abb 100644
--- a/src/plugins/dive/build.ml
+++ b/src/plugins/dive/build.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/dive/build.mli b/src/plugins/dive/build.mli
index 913ee78fd5a..7ec3f82cddd 100644
--- a/src/plugins/dive/build.mli
+++ b/src/plugins/dive/build.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/dive/callstack.ml b/src/plugins/dive/callstack.ml
index 8b25837a113..6ddb2d6eb0b 100644
--- a/src/plugins/dive/callstack.ml
+++ b/src/plugins/dive/callstack.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/dive/callstack.mli b/src/plugins/dive/callstack.mli
index 48d3a417b96..facd55f26d6 100644
--- a/src/plugins/dive/callstack.mli
+++ b/src/plugins/dive/callstack.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/dive/configure.ac b/src/plugins/dive/configure.ac
index dddb5ed24e2..7ebd05b7e80 100644
--- a/src/plugins/dive/configure.ac
+++ b/src/plugins/dive/configure.ac
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/dive/context.ml b/src/plugins/dive/context.ml
index df14fe7c723..4472ff2629e 100644
--- a/src/plugins/dive/context.ml
+++ b/src/plugins/dive/context.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/dive/context.mli b/src/plugins/dive/context.mli
index 953fcf72a9a..b3739823f3a 100644
--- a/src/plugins/dive/context.mli
+++ b/src/plugins/dive/context.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/dive/dive_graph.ml b/src/plugins/dive/dive_graph.ml
index 3c4221fd2af..427b2a6678d 100644
--- a/src/plugins/dive/dive_graph.ml
+++ b/src/plugins/dive/dive_graph.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/dive/dive_graph.mli b/src/plugins/dive/dive_graph.mli
index 1f4f6d43cb6..da3e92a46ee 100644
--- a/src/plugins/dive/dive_graph.mli
+++ b/src/plugins/dive/dive_graph.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/dive/dive_types.mli b/src/plugins/dive/dive_types.mli
index 599612a8647..f4e9eaf6237 100644
--- a/src/plugins/dive/dive_types.mli
+++ b/src/plugins/dive/dive_types.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/dive/main.ml b/src/plugins/dive/main.ml
index 5f728b624ad..73873991216 100644
--- a/src/plugins/dive/main.ml
+++ b/src/plugins/dive/main.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/dive/node_kind.ml b/src/plugins/dive/node_kind.ml
index 20fd1656ee2..fb40b6a43fc 100644
--- a/src/plugins/dive/node_kind.ml
+++ b/src/plugins/dive/node_kind.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/dive/node_kind.mli b/src/plugins/dive/node_kind.mli
index 395fb9bf5ad..dd29ce14397 100644
--- a/src/plugins/dive/node_kind.mli
+++ b/src/plugins/dive/node_kind.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/dive/node_range.ml b/src/plugins/dive/node_range.ml
index 7d5f23709b5..12c0a599d31 100644
--- a/src/plugins/dive/node_range.ml
+++ b/src/plugins/dive/node_range.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/dive/node_range.mli b/src/plugins/dive/node_range.mli
index 1f8f3f24b85..63350e563f0 100644
--- a/src/plugins/dive/node_range.mli
+++ b/src/plugins/dive/node_range.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/dive/self.ml b/src/plugins/dive/self.ml
index e83c8f924e3..26a925a3f54 100644
--- a/src/plugins/dive/self.ml
+++ b/src/plugins/dive/self.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/dive/self.mli b/src/plugins/dive/self.mli
index f15ce3c96bd..cb501498246 100644
--- a/src/plugins/dive/self.mli
+++ b/src/plugins/dive/self.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/dive/server_interface.ml b/src/plugins/dive/server_interface.ml
index 7d2efc4861d..93e389396dc 100644
--- a/src/plugins/dive/server_interface.ml
+++ b/src/plugins/dive/server_interface.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/dive/server_interface.mli b/src/plugins/dive/server_interface.mli
index 182bc40a8e1..cce51dc83ef 100644
--- a/src/plugins/dive/server_interface.mli
+++ b/src/plugins/dive/server_interface.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/from/From.mli b/src/plugins/from/From.mli
index eaabab7daa5..4da7e8c9f16 100644
--- a/src/plugins/from/From.mli
+++ b/src/plugins/from/From.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/from/callwise.ml b/src/plugins/from/callwise.ml
index 71038fdbbc6..1e6f33366a8 100644
--- a/src/plugins/from/callwise.ml
+++ b/src/plugins/from/callwise.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/from/callwise.mli b/src/plugins/from/callwise.mli
index 2bbb744fba0..b1ad7b6bc68 100644
--- a/src/plugins/from/callwise.mli
+++ b/src/plugins/from/callwise.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/from/from_compute.ml b/src/plugins/from/from_compute.ml
index 72dc3365fa1..4b34ced746b 100644
--- a/src/plugins/from/from_compute.ml
+++ b/src/plugins/from/from_compute.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/from/from_compute.mli b/src/plugins/from/from_compute.mli
index 3d60c365c51..33c9abff454 100644
--- a/src/plugins/from/from_compute.mli
+++ b/src/plugins/from/from_compute.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/from/from_parameters.ml b/src/plugins/from/from_parameters.ml
index b5ad2dab5bf..24b34fb037b 100644
--- a/src/plugins/from/from_parameters.ml
+++ b/src/plugins/from/from_parameters.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/from/from_parameters.mli b/src/plugins/from/from_parameters.mli
index 0ed0fc3f8f9..d93241029ef 100644
--- a/src/plugins/from/from_parameters.mli
+++ b/src/plugins/from/from_parameters.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/from/from_register.ml b/src/plugins/from/from_register.ml
index 9b82d7c7820..4d580479eb2 100644
--- a/src/plugins/from/from_register.ml
+++ b/src/plugins/from/from_register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/from/from_register.mli b/src/plugins/from/from_register.mli
index a884c1eac91..745d36052f8 100644
--- a/src/plugins/from/from_register.mli
+++ b/src/plugins/from/from_register.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/from/from_register_gui.ml b/src/plugins/from/from_register_gui.ml
index d851a7226a9..3e87de5ea8c 100644
--- a/src/plugins/from/from_register_gui.ml
+++ b/src/plugins/from/from_register_gui.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/from/from_register_gui.mli b/src/plugins/from/from_register_gui.mli
index d98d08164e6..6952dd8517a 100644
--- a/src/plugins/from/from_register_gui.mli
+++ b/src/plugins/from/from_register_gui.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/from/functionwise.ml b/src/plugins/from/functionwise.ml
index b8492a24f45..fd9fa802283 100644
--- a/src/plugins/from/functionwise.ml
+++ b/src/plugins/from/functionwise.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/from/functionwise.mli b/src/plugins/from/functionwise.mli
index 63ca79e4093..31ee0992e0a 100644
--- a/src/plugins/from/functionwise.mli
+++ b/src/plugins/from/functionwise.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/GSourceView2.ml.in b/src/plugins/gui/GSourceView2.ml.in
index b7f09499398..da100895a01 100644
--- a/src/plugins/gui/GSourceView2.ml.in
+++ b/src/plugins/gui/GSourceView2.ml.in
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/GSourceView2.mli.in b/src/plugins/gui/GSourceView2.mli.in
index 108596e4df3..3af59ceded9 100644
--- a/src/plugins/gui/GSourceView2.mli.in
+++ b/src/plugins/gui/GSourceView2.mli.in
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/GSourceView3.ml.in b/src/plugins/gui/GSourceView3.ml.in
index cf732307b38..71a84a50c31 100644
--- a/src/plugins/gui/GSourceView3.ml.in
+++ b/src/plugins/gui/GSourceView3.ml.in
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/GSourceView3.mli.in b/src/plugins/gui/GSourceView3.mli.in
index 2182dafc39a..a5b288ada41 100644
--- a/src/plugins/gui/GSourceView3.mli.in
+++ b/src/plugins/gui/GSourceView3.mli.in
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/analyses_manager.ml b/src/plugins/gui/analyses_manager.ml
index 1a94f476eb1..c1319c83872 100644
--- a/src/plugins/gui/analyses_manager.ml
+++ b/src/plugins/gui/analyses_manager.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/analyses_manager.mli b/src/plugins/gui/analyses_manager.mli
index 60e3962dcee..a74e41e1a30 100644
--- a/src/plugins/gui/analyses_manager.mli
+++ b/src/plugins/gui/analyses_manager.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/book_manager.ml b/src/plugins/gui/book_manager.ml
index 8d411b8aba5..fe3baaaaa57 100644
--- a/src/plugins/gui/book_manager.ml
+++ b/src/plugins/gui/book_manager.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/book_manager.mli b/src/plugins/gui/book_manager.mli
index 7db19c671fd..89614ee59dc 100644
--- a/src/plugins/gui/book_manager.mli
+++ b/src/plugins/gui/book_manager.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/debug_manager.mli b/src/plugins/gui/debug_manager.mli
index 60e3962dcee..a74e41e1a30 100644
--- a/src/plugins/gui/debug_manager.mli
+++ b/src/plugins/gui/debug_manager.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/debug_manager.yes.ml b/src/plugins/gui/debug_manager.yes.ml
index 32eb2f1965f..ae9b17794f8 100644
--- a/src/plugins/gui/debug_manager.yes.ml
+++ b/src/plugins/gui/debug_manager.yes.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/design.ml b/src/plugins/gui/design.ml
index 21ade2a5af1..68ac1d09272 100644
--- a/src/plugins/gui/design.ml
+++ b/src/plugins/gui/design.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/design.mli b/src/plugins/gui/design.mli
index 90f8d9d800d..ea4c1f49f05 100644
--- a/src/plugins/gui/design.mli
+++ b/src/plugins/gui/design.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/dgraph_helper.mli b/src/plugins/gui/dgraph_helper.mli
index 569c400b3cc..032937e8bb2 100644
--- a/src/plugins/gui/dgraph_helper.mli
+++ b/src/plugins/gui/dgraph_helper.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/dgraph_helper.no.ml b/src/plugins/gui/dgraph_helper.no.ml
index 142305393c4..a93468cbfe3 100644
--- a/src/plugins/gui/dgraph_helper.no.ml
+++ b/src/plugins/gui/dgraph_helper.no.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/dgraph_helper.yes.ml b/src/plugins/gui/dgraph_helper.yes.ml
index f547f895cb8..bb3422f9791 100644
--- a/src/plugins/gui/dgraph_helper.yes.ml
+++ b/src/plugins/gui/dgraph_helper.yes.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/file_manager.ml b/src/plugins/gui/file_manager.ml
index 2d67756133d..6c889e5dc35 100644
--- a/src/plugins/gui/file_manager.ml
+++ b/src/plugins/gui/file_manager.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/file_manager.mli b/src/plugins/gui/file_manager.mli
index 60e3962dcee..a74e41e1a30 100644
--- a/src/plugins/gui/file_manager.mli
+++ b/src/plugins/gui/file_manager.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/filetree.ml b/src/plugins/gui/filetree.ml
index 48f9fe8717e..c48c7e78696 100644
--- a/src/plugins/gui/filetree.ml
+++ b/src/plugins/gui/filetree.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/filetree.mli b/src/plugins/gui/filetree.mli
index bf353c76894..d5b86c3558a 100644
--- a/src/plugins/gui/filetree.mli
+++ b/src/plugins/gui/filetree.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/gtk_compat.2.ml b/src/plugins/gui/gtk_compat.2.ml
index b6b1a7715b3..7aaa9b7c5ae 100644
--- a/src/plugins/gui/gtk_compat.2.ml
+++ b/src/plugins/gui/gtk_compat.2.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/gtk_compat.3.ml b/src/plugins/gui/gtk_compat.3.ml
index 4ccc721fcbf..9981263af95 100644
--- a/src/plugins/gui/gtk_compat.3.ml
+++ b/src/plugins/gui/gtk_compat.3.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/gtk_compat.mli b/src/plugins/gui/gtk_compat.mli
index c3b3d7c1e40..ce275610c9e 100644
--- a/src/plugins/gui/gtk_compat.mli
+++ b/src/plugins/gui/gtk_compat.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/gtk_form.ml b/src/plugins/gui/gtk_form.ml
index e0ad53b28fc..da851951be6 100644
--- a/src/plugins/gui/gtk_form.ml
+++ b/src/plugins/gui/gtk_form.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/gtk_form.mli b/src/plugins/gui/gtk_form.mli
index 3c64bc91e07..769e3d726e9 100644
--- a/src/plugins/gui/gtk_form.mli
+++ b/src/plugins/gui/gtk_form.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/gtk_helper.ml b/src/plugins/gui/gtk_helper.ml
index dd04ec19f44..a4339a28ec8 100644
--- a/src/plugins/gui/gtk_helper.ml
+++ b/src/plugins/gui/gtk_helper.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/gtk_helper.mli b/src/plugins/gui/gtk_helper.mli
index 18b41177870..5b09f685376 100644
--- a/src/plugins/gui/gtk_helper.mli
+++ b/src/plugins/gui/gtk_helper.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/gui_parameters.ml b/src/plugins/gui/gui_parameters.ml
index 1168424d3cb..ec91f4bee2e 100644
--- a/src/plugins/gui/gui_parameters.ml
+++ b/src/plugins/gui/gui_parameters.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/gui_parameters.mli b/src/plugins/gui/gui_parameters.mli
index bb184b536c5..1f24b1a9722 100644
--- a/src/plugins/gui/gui_parameters.mli
+++ b/src/plugins/gui/gui_parameters.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/gui_printers.ml b/src/plugins/gui/gui_printers.ml
index 81ef068459e..617a671256b 100644
--- a/src/plugins/gui/gui_printers.ml
+++ b/src/plugins/gui/gui_printers.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/gui_printers.mli b/src/plugins/gui/gui_printers.mli
index 52b19728801..582be71d358 100644
--- a/src/plugins/gui/gui_printers.mli
+++ b/src/plugins/gui/gui_printers.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/help_manager.ml b/src/plugins/gui/help_manager.ml
index 286541b637b..01d2244fd0f 100644
--- a/src/plugins/gui/help_manager.ml
+++ b/src/plugins/gui/help_manager.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/help_manager.mli b/src/plugins/gui/help_manager.mli
index 60e3962dcee..a74e41e1a30 100644
--- a/src/plugins/gui/help_manager.mli
+++ b/src/plugins/gui/help_manager.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/history.ml b/src/plugins/gui/history.ml
index 56b4f7dc99f..612c17011c1 100644
--- a/src/plugins/gui/history.ml
+++ b/src/plugins/gui/history.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/history.mli b/src/plugins/gui/history.mli
index ca4f9b8db68..67fa426f9dc 100644
--- a/src/plugins/gui/history.mli
+++ b/src/plugins/gui/history.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/launcher.ml b/src/plugins/gui/launcher.ml
index 447e7ae8e0a..be6cf7e6560 100644
--- a/src/plugins/gui/launcher.ml
+++ b/src/plugins/gui/launcher.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/launcher.mli b/src/plugins/gui/launcher.mli
index a0cc2868c9a..33e9eb41c80 100644
--- a/src/plugins/gui/launcher.mli
+++ b/src/plugins/gui/launcher.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/menu_manager.ml b/src/plugins/gui/menu_manager.ml
index af195e70150..bb75ce6d774 100644
--- a/src/plugins/gui/menu_manager.ml
+++ b/src/plugins/gui/menu_manager.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/menu_manager.mli b/src/plugins/gui/menu_manager.mli
index 22f5cba0dc5..6b5a3145cd2 100644
--- a/src/plugins/gui/menu_manager.mli
+++ b/src/plugins/gui/menu_manager.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/pretty_source.ml b/src/plugins/gui/pretty_source.ml
index 91255b5d6f2..c2aa878bbe0 100644
--- a/src/plugins/gui/pretty_source.ml
+++ b/src/plugins/gui/pretty_source.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/pretty_source.mli b/src/plugins/gui/pretty_source.mli
index 480278f9337..a3544e647fb 100644
--- a/src/plugins/gui/pretty_source.mli
+++ b/src/plugins/gui/pretty_source.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/project_manager.ml b/src/plugins/gui/project_manager.ml
index 898ffd30bde..5d2c08cc779 100644
--- a/src/plugins/gui/project_manager.ml
+++ b/src/plugins/gui/project_manager.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/project_manager.mli b/src/plugins/gui/project_manager.mli
index aaea6cabd31..388a97c33bc 100644
--- a/src/plugins/gui/project_manager.mli
+++ b/src/plugins/gui/project_manager.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/property_navigator.ml b/src/plugins/gui/property_navigator.ml
index cbd09639a4b..6d42ff1688c 100644
--- a/src/plugins/gui/property_navigator.ml
+++ b/src/plugins/gui/property_navigator.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/property_navigator.mli b/src/plugins/gui/property_navigator.mli
index 2509c440cfc..5a37db8e0bc 100644
--- a/src/plugins/gui/property_navigator.mli
+++ b/src/plugins/gui/property_navigator.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/source_manager.ml b/src/plugins/gui/source_manager.ml
index 72954ee2674..7ceadddf529 100644
--- a/src/plugins/gui/source_manager.ml
+++ b/src/plugins/gui/source_manager.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/source_manager.mli b/src/plugins/gui/source_manager.mli
index b98edc5485c..58c5ae02194 100644
--- a/src/plugins/gui/source_manager.mli
+++ b/src/plugins/gui/source_manager.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/source_viewer.ml b/src/plugins/gui/source_viewer.ml
index d1516cd81f3..b4faad1b93c 100644
--- a/src/plugins/gui/source_viewer.ml
+++ b/src/plugins/gui/source_viewer.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/source_viewer.mli b/src/plugins/gui/source_viewer.mli
index 815dc746509..697d67a9c33 100644
--- a/src/plugins/gui/source_viewer.mli
+++ b/src/plugins/gui/source_viewer.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/warning_manager.ml b/src/plugins/gui/warning_manager.ml
index e76ee827ccf..f9f95f0b838 100644
--- a/src/plugins/gui/warning_manager.ml
+++ b/src/plugins/gui/warning_manager.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/warning_manager.mli b/src/plugins/gui/warning_manager.mli
index 4aecbf9646e..16231b02c40 100644
--- a/src/plugins/gui/warning_manager.mli
+++ b/src/plugins/gui/warning_manager.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/wbox.ml b/src/plugins/gui/wbox.ml
index bada4ff44c3..95e9dd438c8 100644
--- a/src/plugins/gui/wbox.ml
+++ b/src/plugins/gui/wbox.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/wbox.mli b/src/plugins/gui/wbox.mli
index e4841feb36a..30e1d9591ab 100644
--- a/src/plugins/gui/wbox.mli
+++ b/src/plugins/gui/wbox.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/wfile.ml b/src/plugins/gui/wfile.ml
index a8a60ba56cb..7b718865096 100644
--- a/src/plugins/gui/wfile.ml
+++ b/src/plugins/gui/wfile.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/wfile.mli b/src/plugins/gui/wfile.mli
index 2f7d07c559f..dfbbc6362b2 100644
--- a/src/plugins/gui/wfile.mli
+++ b/src/plugins/gui/wfile.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/widget.ml b/src/plugins/gui/widget.ml
index 3c2c806b0fa..361d46e9d7e 100644
--- a/src/plugins/gui/widget.ml
+++ b/src/plugins/gui/widget.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/widget.mli b/src/plugins/gui/widget.mli
index 4a26f0c6da0..e208ca117ea 100644
--- a/src/plugins/gui/widget.mli
+++ b/src/plugins/gui/widget.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/wpalette.ml b/src/plugins/gui/wpalette.ml
index a95017c0944..96935c86465 100644
--- a/src/plugins/gui/wpalette.ml
+++ b/src/plugins/gui/wpalette.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/wpalette.mli b/src/plugins/gui/wpalette.mli
index a48bf29097c..dac29846675 100644
--- a/src/plugins/gui/wpalette.mli
+++ b/src/plugins/gui/wpalette.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/wpane.ml b/src/plugins/gui/wpane.ml
index f8c5b7e650b..4877b7cf30d 100644
--- a/src/plugins/gui/wpane.ml
+++ b/src/plugins/gui/wpane.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/wpane.mli b/src/plugins/gui/wpane.mli
index 6c6f86e4e07..cb2b8a6db9c 100644
--- a/src/plugins/gui/wpane.mli
+++ b/src/plugins/gui/wpane.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/wtable.ml b/src/plugins/gui/wtable.ml
index f32de100ffc..82069877008 100644
--- a/src/plugins/gui/wtable.ml
+++ b/src/plugins/gui/wtable.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/wtable.mli b/src/plugins/gui/wtable.mli
index 3e6a869426b..0a2548d4219 100644
--- a/src/plugins/gui/wtable.mli
+++ b/src/plugins/gui/wtable.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/wtext.ml b/src/plugins/gui/wtext.ml
index 7bfe557c975..291e0ff838c 100644
--- a/src/plugins/gui/wtext.ml
+++ b/src/plugins/gui/wtext.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/wtext.mli b/src/plugins/gui/wtext.mli
index 431333f7e6f..e7afc48bf36 100644
--- a/src/plugins/gui/wtext.mli
+++ b/src/plugins/gui/wtext.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/wutil.ml b/src/plugins/gui/wutil.ml
index c6a759ddd53..4d740e8b68d 100644
--- a/src/plugins/gui/wutil.ml
+++ b/src/plugins/gui/wutil.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/wutil.mli b/src/plugins/gui/wutil.mli
index f2e5bd3a250..5b1dc452488 100644
--- a/src/plugins/gui/wutil.mli
+++ b/src/plugins/gui/wutil.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/wutil_once.ml b/src/plugins/gui/wutil_once.ml
index 32b1680735c..eaa82556ffa 100644
--- a/src/plugins/gui/wutil_once.ml
+++ b/src/plugins/gui/wutil_once.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/gui/wutil_once.mli b/src/plugins/gui/wutil_once.mli
index 210fa2d2e11..1a251afabe4 100644
--- a/src/plugins/gui/wutil_once.mli
+++ b/src/plugins/gui/wutil_once.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/impact/Impact.mli b/src/plugins/impact/Impact.mli
index d94e6cc3260..8a177504b16 100644
--- a/src/plugins/impact/Impact.mli
+++ b/src/plugins/impact/Impact.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/impact/compute_impact.ml b/src/plugins/impact/compute_impact.ml
index 001e77b06c1..6ce1a5dbf94 100644
--- a/src/plugins/impact/compute_impact.ml
+++ b/src/plugins/impact/compute_impact.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/impact/compute_impact.mli b/src/plugins/impact/compute_impact.mli
index d54157c68ee..d5040bf75d6 100644
--- a/src/plugins/impact/compute_impact.mli
+++ b/src/plugins/impact/compute_impact.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/impact/options.ml b/src/plugins/impact/options.ml
index 57be52bd1a5..b661d842895 100644
--- a/src/plugins/impact/options.ml
+++ b/src/plugins/impact/options.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/impact/options.mli b/src/plugins/impact/options.mli
index 24c8027914a..3486fec752f 100644
--- a/src/plugins/impact/options.mli
+++ b/src/plugins/impact/options.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/impact/pdg_aux.ml b/src/plugins/impact/pdg_aux.ml
index d5a1b5c14e7..7e310efb327 100644
--- a/src/plugins/impact/pdg_aux.ml
+++ b/src/plugins/impact/pdg_aux.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/impact/pdg_aux.mli b/src/plugins/impact/pdg_aux.mli
index 0b7946c036e..361d7707d1c 100644
--- a/src/plugins/impact/pdg_aux.mli
+++ b/src/plugins/impact/pdg_aux.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/impact/reason_graph.ml b/src/plugins/impact/reason_graph.ml
index 4d5f6138dc0..d3947345172 100644
--- a/src/plugins/impact/reason_graph.ml
+++ b/src/plugins/impact/reason_graph.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/impact/register.ml b/src/plugins/impact/register.ml
index 1303b8c96d2..20d35c07912 100644
--- a/src/plugins/impact/register.ml
+++ b/src/plugins/impact/register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/impact/register_gui.ml b/src/plugins/impact/register_gui.ml
index 0d4c8b61745..38bba42a819 100644
--- a/src/plugins/impact/register_gui.ml
+++ b/src/plugins/impact/register_gui.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/impact/register_gui.mli b/src/plugins/impact/register_gui.mli
index 13e0862624c..8b483b2330b 100644
--- a/src/plugins/impact/register_gui.mli
+++ b/src/plugins/impact/register_gui.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/inout/Inout.mli b/src/plugins/inout/Inout.mli
index 6050abd7736..b69d75e34c9 100644
--- a/src/plugins/inout/Inout.mli
+++ b/src/plugins/inout/Inout.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/inout/context.mli b/src/plugins/inout/context.mli
index 1fd2ec53d67..f07636cc514 100644
--- a/src/plugins/inout/context.mli
+++ b/src/plugins/inout/context.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/inout/cumulative_analysis.ml b/src/plugins/inout/cumulative_analysis.ml
index 04002151adf..bf0b78ccfeb 100644
--- a/src/plugins/inout/cumulative_analysis.ml
+++ b/src/plugins/inout/cumulative_analysis.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/inout/cumulative_analysis.mli b/src/plugins/inout/cumulative_analysis.mli
index 81f72e1b5f5..07bc86c0089 100644
--- a/src/plugins/inout/cumulative_analysis.mli
+++ b/src/plugins/inout/cumulative_analysis.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/inout/derefs.ml b/src/plugins/inout/derefs.ml
index 4cc972c9bfa..6183da7d9cf 100644
--- a/src/plugins/inout/derefs.ml
+++ b/src/plugins/inout/derefs.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/inout/derefs.mli b/src/plugins/inout/derefs.mli
index a33d6a82d16..ef6da1ee1eb 100644
--- a/src/plugins/inout/derefs.mli
+++ b/src/plugins/inout/derefs.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/inout/inout_parameters.ml b/src/plugins/inout/inout_parameters.ml
index eef83915883..49240507a18 100644
--- a/src/plugins/inout/inout_parameters.ml
+++ b/src/plugins/inout/inout_parameters.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/inout/inout_parameters.mli b/src/plugins/inout/inout_parameters.mli
index d59478b1bb4..0068cca9d64 100644
--- a/src/plugins/inout/inout_parameters.mli
+++ b/src/plugins/inout/inout_parameters.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/inout/inputs.ml b/src/plugins/inout/inputs.ml
index 653f28e7273..9151573d286 100644
--- a/src/plugins/inout/inputs.ml
+++ b/src/plugins/inout/inputs.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/inout/inputs.mli b/src/plugins/inout/inputs.mli
index 9d5ac8efaab..f736617a1bb 100644
--- a/src/plugins/inout/inputs.mli
+++ b/src/plugins/inout/inputs.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/inout/operational_inputs.ml b/src/plugins/inout/operational_inputs.ml
index 0a9e9394864..d0e4af644e5 100644
--- a/src/plugins/inout/operational_inputs.ml
+++ b/src/plugins/inout/operational_inputs.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/inout/outputs.ml b/src/plugins/inout/outputs.ml
index e2e6d6e22ca..ae8eefa76c4 100644
--- a/src/plugins/inout/outputs.ml
+++ b/src/plugins/inout/outputs.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/inout/outputs.mli b/src/plugins/inout/outputs.mli
index 51f55608909..7a167d2a4a6 100644
--- a/src/plugins/inout/outputs.mli
+++ b/src/plugins/inout/outputs.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/inout/register.ml b/src/plugins/inout/register.ml
index bafdeee50ff..992a0b81711 100644
--- a/src/plugins/inout/register.ml
+++ b/src/plugins/inout/register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/Instantiate.mli b/src/plugins/instantiate/Instantiate.mli
index ee3914d0e80..e7d5a827ce0 100644
--- a/src/plugins/instantiate/Instantiate.mli
+++ b/src/plugins/instantiate/Instantiate.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/Makefile.in b/src/plugins/instantiate/Makefile.in
index 8635d3bace9..b199f6f2787 100644
--- a/src/plugins/instantiate/Makefile.in
+++ b/src/plugins/instantiate/Makefile.in
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/instantiate/basic_blocks.ml b/src/plugins/instantiate/basic_blocks.ml
index 2511974748e..ba6e991a881 100644
--- a/src/plugins/instantiate/basic_blocks.ml
+++ b/src/plugins/instantiate/basic_blocks.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/basic_blocks.mli b/src/plugins/instantiate/basic_blocks.mli
index 8b22347ecc1..84ecb83c529 100644
--- a/src/plugins/instantiate/basic_blocks.mli
+++ b/src/plugins/instantiate/basic_blocks.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/configure.ac b/src/plugins/instantiate/configure.ac
index e73e985a411..1a4b7a1e08e 100644
--- a/src/plugins/instantiate/configure.ac
+++ b/src/plugins/instantiate/configure.ac
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/instantiate/global_context.ml b/src/plugins/instantiate/global_context.ml
index 9791a78d529..b450df4ae9d 100644
--- a/src/plugins/instantiate/global_context.ml
+++ b/src/plugins/instantiate/global_context.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/global_context.mli b/src/plugins/instantiate/global_context.mli
index 9a1456ff0bb..7ac519fef5d 100644
--- a/src/plugins/instantiate/global_context.mli
+++ b/src/plugins/instantiate/global_context.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/instantiator_builder.ml b/src/plugins/instantiate/instantiator_builder.ml
index 05c65a157f7..c416eeafdee 100644
--- a/src/plugins/instantiate/instantiator_builder.ml
+++ b/src/plugins/instantiate/instantiator_builder.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/instantiator_builder.mli b/src/plugins/instantiate/instantiator_builder.mli
index b731e6b5576..4fcbcbe11c3 100644
--- a/src/plugins/instantiate/instantiator_builder.mli
+++ b/src/plugins/instantiate/instantiator_builder.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/options.ml b/src/plugins/instantiate/options.ml
index 9dd45e5a8ac..bb55c4017ee 100644
--- a/src/plugins/instantiate/options.ml
+++ b/src/plugins/instantiate/options.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/options.mli b/src/plugins/instantiate/options.mli
index 477c15f3518..52caeb432b7 100644
--- a/src/plugins/instantiate/options.mli
+++ b/src/plugins/instantiate/options.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/register.ml b/src/plugins/instantiate/register.ml
index 2b2505bf09d..5f2a5bced79 100644
--- a/src/plugins/instantiate/register.ml
+++ b/src/plugins/instantiate/register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/stdlib/basic_alloc.ml b/src/plugins/instantiate/stdlib/basic_alloc.ml
index f2d749c5442..e78913fabfa 100644
--- a/src/plugins/instantiate/stdlib/basic_alloc.ml
+++ b/src/plugins/instantiate/stdlib/basic_alloc.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/stdlib/basic_alloc.mli b/src/plugins/instantiate/stdlib/basic_alloc.mli
index c312e2bdf3a..793df76c255 100644
--- a/src/plugins/instantiate/stdlib/basic_alloc.mli
+++ b/src/plugins/instantiate/stdlib/basic_alloc.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/stdlib/calloc.ml b/src/plugins/instantiate/stdlib/calloc.ml
index 2176585ddaf..432e2e9124b 100644
--- a/src/plugins/instantiate/stdlib/calloc.ml
+++ b/src/plugins/instantiate/stdlib/calloc.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/stdlib/calloc.mli b/src/plugins/instantiate/stdlib/calloc.mli
index 6ad873cc082..bc5f73b18bc 100644
--- a/src/plugins/instantiate/stdlib/calloc.mli
+++ b/src/plugins/instantiate/stdlib/calloc.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/stdlib/free.ml b/src/plugins/instantiate/stdlib/free.ml
index 1542cc7a5ab..46e2274cb85 100644
--- a/src/plugins/instantiate/stdlib/free.ml
+++ b/src/plugins/instantiate/stdlib/free.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/stdlib/free.mli b/src/plugins/instantiate/stdlib/free.mli
index 49d1d0397e2..b7176380203 100644
--- a/src/plugins/instantiate/stdlib/free.mli
+++ b/src/plugins/instantiate/stdlib/free.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/stdlib/malloc.ml b/src/plugins/instantiate/stdlib/malloc.ml
index f471209a103..65ad90015e1 100644
--- a/src/plugins/instantiate/stdlib/malloc.ml
+++ b/src/plugins/instantiate/stdlib/malloc.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/stdlib/malloc.mli b/src/plugins/instantiate/stdlib/malloc.mli
index cb602ba318d..6d720221a27 100644
--- a/src/plugins/instantiate/stdlib/malloc.mli
+++ b/src/plugins/instantiate/stdlib/malloc.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/string/mem_utils.ml b/src/plugins/instantiate/string/mem_utils.ml
index c1df382fa53..ff4edf0ec92 100644
--- a/src/plugins/instantiate/string/mem_utils.ml
+++ b/src/plugins/instantiate/string/mem_utils.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/string/mem_utils.mli b/src/plugins/instantiate/string/mem_utils.mli
index d81d16f04fe..f68bcbfb57b 100644
--- a/src/plugins/instantiate/string/mem_utils.mli
+++ b/src/plugins/instantiate/string/mem_utils.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/string/memcmp.ml b/src/plugins/instantiate/string/memcmp.ml
index 59969c7ddee..da4f9553aa5 100644
--- a/src/plugins/instantiate/string/memcmp.ml
+++ b/src/plugins/instantiate/string/memcmp.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/string/memcmp.mli b/src/plugins/instantiate/string/memcmp.mli
index 0e837c30d2f..1c9e1785bed 100644
--- a/src/plugins/instantiate/string/memcmp.mli
+++ b/src/plugins/instantiate/string/memcmp.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/string/memcpy.ml b/src/plugins/instantiate/string/memcpy.ml
index e56778e6a57..299f749ebcc 100644
--- a/src/plugins/instantiate/string/memcpy.ml
+++ b/src/plugins/instantiate/string/memcpy.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/string/memcpy.mli b/src/plugins/instantiate/string/memcpy.mli
index afc53006e4b..d08dbbe9033 100644
--- a/src/plugins/instantiate/string/memcpy.mli
+++ b/src/plugins/instantiate/string/memcpy.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/string/memmove.ml b/src/plugins/instantiate/string/memmove.ml
index 9ce6d75b6bd..796e0286135 100644
--- a/src/plugins/instantiate/string/memmove.ml
+++ b/src/plugins/instantiate/string/memmove.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/string/memmove.mli b/src/plugins/instantiate/string/memmove.mli
index d290ece4099..cf61a39037f 100644
--- a/src/plugins/instantiate/string/memmove.mli
+++ b/src/plugins/instantiate/string/memmove.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/string/memset.ml b/src/plugins/instantiate/string/memset.ml
index f71c0b994c8..8a527ca3cfb 100644
--- a/src/plugins/instantiate/string/memset.ml
+++ b/src/plugins/instantiate/string/memset.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/string/memset.mli b/src/plugins/instantiate/string/memset.mli
index dae10798932..233eb5e0b70 100644
--- a/src/plugins/instantiate/string/memset.mli
+++ b/src/plugins/instantiate/string/memset.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/transform.ml b/src/plugins/instantiate/transform.ml
index 590ee506dbd..365b4f22825 100644
--- a/src/plugins/instantiate/transform.ml
+++ b/src/plugins/instantiate/transform.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/instantiate/transform.mli b/src/plugins/instantiate/transform.mli
index b20ea99b664..2ee7cf71a0c 100644
--- a/src/plugins/instantiate/transform.mli
+++ b/src/plugins/instantiate/transform.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/loop_analysis/LoopAnalysis.mli b/src/plugins/loop_analysis/LoopAnalysis.mli
index 7e693a374a1..8d46ca49557 100644
--- a/src/plugins/loop_analysis/LoopAnalysis.mli
+++ b/src/plugins/loop_analysis/LoopAnalysis.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/loop_analysis/Makefile.in b/src/plugins/loop_analysis/Makefile.in
index 1b0b09bcf96..002dfe843f1 100644
--- a/src/plugins/loop_analysis/Makefile.in
+++ b/src/plugins/loop_analysis/Makefile.in
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/loop_analysis/configure.ac b/src/plugins/loop_analysis/configure.ac
index c576be1b026..c7044910afb 100644
--- a/src/plugins/loop_analysis/configure.ac
+++ b/src/plugins/loop_analysis/configure.ac
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/loop_analysis/loop_analysis.ml b/src/plugins/loop_analysis/loop_analysis.ml
index 0872f1561d6..2a55ef055c8 100644
--- a/src/plugins/loop_analysis/loop_analysis.ml
+++ b/src/plugins/loop_analysis/loop_analysis.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/loop_analysis/loop_analysis.mli b/src/plugins/loop_analysis/loop_analysis.mli
index 7d86b4b803f..3141ee73f68 100644
--- a/src/plugins/loop_analysis/loop_analysis.mli
+++ b/src/plugins/loop_analysis/loop_analysis.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/loop_analysis/options.ml b/src/plugins/loop_analysis/options.ml
index ed598f99372..54ca3514d2a 100644
--- a/src/plugins/loop_analysis/options.ml
+++ b/src/plugins/loop_analysis/options.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/loop_analysis/options.mli b/src/plugins/loop_analysis/options.mli
index 00373b5dafd..85a4f9918b6 100644
--- a/src/plugins/loop_analysis/options.mli
+++ b/src/plugins/loop_analysis/options.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/loop_analysis/region_analysis.ml b/src/plugins/loop_analysis/region_analysis.ml
index 84c891f9571..9e090003c07 100644
--- a/src/plugins/loop_analysis/region_analysis.ml
+++ b/src/plugins/loop_analysis/region_analysis.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/loop_analysis/region_analysis.mli b/src/plugins/loop_analysis/region_analysis.mli
index be9e5e5d173..6b4feeb6c81 100644
--- a/src/plugins/loop_analysis/region_analysis.mli
+++ b/src/plugins/loop_analysis/region_analysis.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/loop_analysis/region_analysis_sig.ml b/src/plugins/loop_analysis/region_analysis_sig.ml
index 12efabc7b97..e1e53ce34bd 100644
--- a/src/plugins/loop_analysis/region_analysis_sig.ml
+++ b/src/plugins/loop_analysis/region_analysis_sig.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/loop_analysis/region_analysis_stmt.ml b/src/plugins/loop_analysis/region_analysis_stmt.ml
index 62e0aa26428..66d4b4987be 100644
--- a/src/plugins/loop_analysis/region_analysis_stmt.ml
+++ b/src/plugins/loop_analysis/region_analysis_stmt.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/loop_analysis/region_analysis_stmt.mli b/src/plugins/loop_analysis/region_analysis_stmt.mli
index 24461728212..a52050d3e06 100644
--- a/src/plugins/loop_analysis/region_analysis_stmt.mli
+++ b/src/plugins/loop_analysis/region_analysis_stmt.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/loop_analysis/register.ml b/src/plugins/loop_analysis/register.ml
index 4b592d7f1a7..a6b1a69cc7c 100644
--- a/src/plugins/loop_analysis/register.ml
+++ b/src/plugins/loop_analysis/register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/loop_analysis/slevel_analysis.ml b/src/plugins/loop_analysis/slevel_analysis.ml
index 8a1de0d2976..2e70c946c7a 100644
--- a/src/plugins/loop_analysis/slevel_analysis.ml
+++ b/src/plugins/loop_analysis/slevel_analysis.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/markdown-report/Makefile.in b/src/plugins/markdown-report/Makefile.in
index 08dec2b3520..3fe98f4e5f9 100644
--- a/src/plugins/markdown-report/Makefile.in
+++ b/src/plugins/markdown-report/Makefile.in
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/markdown-report/configure.ac b/src/plugins/markdown-report/configure.ac
index b187dc61bc2..13dcf1fe34a 100644
--- a/src/plugins/markdown-report/configure.ac
+++ b/src/plugins/markdown-report/configure.ac
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/markdown-report/eva_info.ml b/src/plugins/markdown-report/eva_info.ml
index 5df8dbbefda..7c00cc4ae15 100644
--- a/src/plugins/markdown-report/eva_info.ml
+++ b/src/plugins/markdown-report/eva_info.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/markdown-report/eva_info.mli b/src/plugins/markdown-report/eva_info.mli
index 7ba39b81ae4..0bf485885a9 100644
--- a/src/plugins/markdown-report/eva_info.mli
+++ b/src/plugins/markdown-report/eva_info.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/markdown-report/md_gen.ml b/src/plugins/markdown-report/md_gen.ml
index 2930c006513..dc212069f0d 100644
--- a/src/plugins/markdown-report/md_gen.ml
+++ b/src/plugins/markdown-report/md_gen.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/markdown-report/md_gen.mli b/src/plugins/markdown-report/md_gen.mli
index 3083a44b11a..333b763ec47 100644
--- a/src/plugins/markdown-report/md_gen.mli
+++ b/src/plugins/markdown-report/md_gen.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/markdown-report/mdr_params.ml b/src/plugins/markdown-report/mdr_params.ml
index 249abea7136..3b799faccaa 100644
--- a/src/plugins/markdown-report/mdr_params.ml
+++ b/src/plugins/markdown-report/mdr_params.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/markdown-report/mdr_params.mli b/src/plugins/markdown-report/mdr_params.mli
index 08b54d5c06f..b7c5b06901b 100644
--- a/src/plugins/markdown-report/mdr_params.mli
+++ b/src/plugins/markdown-report/mdr_params.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/markdown-report/mdr_register.ml b/src/plugins/markdown-report/mdr_register.ml
index 800c08408b1..8b8373cdd1c 100644
--- a/src/plugins/markdown-report/mdr_register.ml
+++ b/src/plugins/markdown-report/mdr_register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/markdown-report/mdr_register.mli b/src/plugins/markdown-report/mdr_register.mli
index 3b135f1378f..3d177dc7b70 100644
--- a/src/plugins/markdown-report/mdr_register.mli
+++ b/src/plugins/markdown-report/mdr_register.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/markdown-report/parse_remarks.ml b/src/plugins/markdown-report/parse_remarks.ml
index d3b87ed06ad..d2e4860e7c4 100644
--- a/src/plugins/markdown-report/parse_remarks.ml
+++ b/src/plugins/markdown-report/parse_remarks.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/markdown-report/parse_remarks.mli b/src/plugins/markdown-report/parse_remarks.mli
index 478bf26f7d4..2491fe94a49 100644
--- a/src/plugins/markdown-report/parse_remarks.mli
+++ b/src/plugins/markdown-report/parse_remarks.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/markdown-report/sarif.ml b/src/plugins/markdown-report/sarif.ml
index 2e7dd60ca16..e87ebb3c6ae 100644
--- a/src/plugins/markdown-report/sarif.ml
+++ b/src/plugins/markdown-report/sarif.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/markdown-report/sarif_gen.ml b/src/plugins/markdown-report/sarif_gen.ml
index 7c9df870307..eab39c256c8 100644
--- a/src/plugins/markdown-report/sarif_gen.ml
+++ b/src/plugins/markdown-report/sarif_gen.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/markdown-report/sarif_gen.mli b/src/plugins/markdown-report/sarif_gen.mli
index 307135641c6..585116e2908 100644
--- a/src/plugins/markdown-report/sarif_gen.mli
+++ b/src/plugins/markdown-report/sarif_gen.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/markdown-report/share/acsl.xml b/src/plugins/markdown-report/share/acsl.xml
index 06ffbde201e..f198c3e5b9c 100644
--- a/src/plugins/markdown-report/share/acsl.xml
+++ b/src/plugins/markdown-report/share/acsl.xml
@@ -2,7 +2,7 @@
 <!--                                                                        -->
 <!--  This file is part of Frama-C.                                         -->
 <!--                                                                        -->
-<!--  Copyright (C) 2007-2020                                               -->
+<!--  Copyright (C) 2007-2021                                               -->
 <!--    CEA (Commissariat à l'énergie atomique et aux énergies              -->
 <!--         alternatives)                                                  -->
 <!--                                                                        -->
diff --git a/src/plugins/metrics/Metrics.mli b/src/plugins/metrics/Metrics.mli
index f796b946e2f..c1a0c72ade4 100644
--- a/src/plugins/metrics/Metrics.mli
+++ b/src/plugins/metrics/Metrics.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/metrics/css_html.ml b/src/plugins/metrics/css_html.ml
index 08ec7e08547..6bdb85d6f80 100644
--- a/src/plugins/metrics/css_html.ml
+++ b/src/plugins/metrics/css_html.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/metrics/metrics_acsl.ml b/src/plugins/metrics/metrics_acsl.ml
index 6a7960d6e59..75acb89eb4d 100644
--- a/src/plugins/metrics/metrics_acsl.ml
+++ b/src/plugins/metrics/metrics_acsl.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/metrics/metrics_acsl.mli b/src/plugins/metrics/metrics_acsl.mli
index dff924ad038..75e6aa62b80 100644
--- a/src/plugins/metrics/metrics_acsl.mli
+++ b/src/plugins/metrics/metrics_acsl.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/metrics/metrics_base.ml b/src/plugins/metrics/metrics_base.ml
index e1cc6633a3a..ca172c1db4a 100644
--- a/src/plugins/metrics/metrics_base.ml
+++ b/src/plugins/metrics/metrics_base.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/metrics/metrics_base.mli b/src/plugins/metrics/metrics_base.mli
index 6e4b361b7bf..f4c84845ca1 100644
--- a/src/plugins/metrics/metrics_base.mli
+++ b/src/plugins/metrics/metrics_base.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/metrics/metrics_cabs.ml b/src/plugins/metrics/metrics_cabs.ml
index 0ee28935119..788ecf4c98d 100644
--- a/src/plugins/metrics/metrics_cabs.ml
+++ b/src/plugins/metrics/metrics_cabs.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/metrics/metrics_cabs.mli b/src/plugins/metrics/metrics_cabs.mli
index 0cc17c3cb9d..92c05039aed 100644
--- a/src/plugins/metrics/metrics_cabs.mli
+++ b/src/plugins/metrics/metrics_cabs.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/metrics/metrics_cilast.ml b/src/plugins/metrics/metrics_cilast.ml
index bbc73b7f5df..86a697b3b4e 100644
--- a/src/plugins/metrics/metrics_cilast.ml
+++ b/src/plugins/metrics/metrics_cilast.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/metrics/metrics_cilast.mli b/src/plugins/metrics/metrics_cilast.mli
index e7dcd86abb5..5a54f1ef8b3 100644
--- a/src/plugins/metrics/metrics_cilast.mli
+++ b/src/plugins/metrics/metrics_cilast.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/metrics/metrics_coverage.ml b/src/plugins/metrics/metrics_coverage.ml
index 0ccc7d7bf86..21a82a7fa2f 100644
--- a/src/plugins/metrics/metrics_coverage.ml
+++ b/src/plugins/metrics/metrics_coverage.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/metrics/metrics_coverage.mli b/src/plugins/metrics/metrics_coverage.mli
index 988eece5e28..d9bb2e0513d 100644
--- a/src/plugins/metrics/metrics_coverage.mli
+++ b/src/plugins/metrics/metrics_coverage.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/metrics/metrics_gui.ml b/src/plugins/metrics/metrics_gui.ml
index c544bf91e8e..e8360699d12 100644
--- a/src/plugins/metrics/metrics_gui.ml
+++ b/src/plugins/metrics/metrics_gui.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/metrics/metrics_gui.mli b/src/plugins/metrics/metrics_gui.mli
index 4e59363b5d2..95e23b80418 100644
--- a/src/plugins/metrics/metrics_gui.mli
+++ b/src/plugins/metrics/metrics_gui.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/metrics/metrics_parameters.ml b/src/plugins/metrics/metrics_parameters.ml
index 5d9bd963dbf..30ae2ef4d38 100644
--- a/src/plugins/metrics/metrics_parameters.ml
+++ b/src/plugins/metrics/metrics_parameters.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/metrics/metrics_parameters.mli b/src/plugins/metrics/metrics_parameters.mli
index 911779ce0c8..bc9a5e55623 100644
--- a/src/plugins/metrics/metrics_parameters.mli
+++ b/src/plugins/metrics/metrics_parameters.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/metrics/register.ml b/src/plugins/metrics/register.ml
index 1c392c0e283..c074b9fa5ea 100644
--- a/src/plugins/metrics/register.ml
+++ b/src/plugins/metrics/register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/metrics/register_gui.ml b/src/plugins/metrics/register_gui.ml
index c953b64590a..f424d200452 100644
--- a/src/plugins/metrics/register_gui.ml
+++ b/src/plugins/metrics/register_gui.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/nonterm/Makefile.in b/src/plugins/nonterm/Makefile.in
index 94773d2aab3..f245c193dae 100644
--- a/src/plugins/nonterm/Makefile.in
+++ b/src/plugins/nonterm/Makefile.in
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/nonterm/Nonterm.mli b/src/plugins/nonterm/Nonterm.mli
index 4984a8c2366..80b007bc8e8 100644
--- a/src/plugins/nonterm/Nonterm.mli
+++ b/src/plugins/nonterm/Nonterm.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/nonterm/configure.ac b/src/plugins/nonterm/configure.ac
index 03072275f76..3b767f4b968 100644
--- a/src/plugins/nonterm/configure.ac
+++ b/src/plugins/nonterm/configure.ac
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/nonterm/nonterm_run.ml b/src/plugins/nonterm/nonterm_run.ml
index a4f74bc205a..a4347368c0c 100644
--- a/src/plugins/nonterm/nonterm_run.ml
+++ b/src/plugins/nonterm/nonterm_run.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/obfuscator/Makefile.in b/src/plugins/obfuscator/Makefile.in
index 6f074af8bc9..c3de5cecd0d 100644
--- a/src/plugins/obfuscator/Makefile.in
+++ b/src/plugins/obfuscator/Makefile.in
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/obfuscator/Obfuscator.mli b/src/plugins/obfuscator/Obfuscator.mli
index 2a262595197..d588646b32d 100644
--- a/src/plugins/obfuscator/Obfuscator.mli
+++ b/src/plugins/obfuscator/Obfuscator.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/obfuscator/configure.ac b/src/plugins/obfuscator/configure.ac
index a5405afbc19..a2091cf6dba 100644
--- a/src/plugins/obfuscator/configure.ac
+++ b/src/plugins/obfuscator/configure.ac
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/obfuscator/dictionary.ml b/src/plugins/obfuscator/dictionary.ml
index d5beca24f7e..b103dfa7adf 100644
--- a/src/plugins/obfuscator/dictionary.ml
+++ b/src/plugins/obfuscator/dictionary.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/obfuscator/dictionary.mli b/src/plugins/obfuscator/dictionary.mli
index 7da95be167c..6e0e14920e6 100644
--- a/src/plugins/obfuscator/dictionary.mli
+++ b/src/plugins/obfuscator/dictionary.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/obfuscator/obfuscate.ml b/src/plugins/obfuscator/obfuscate.ml
index 06708db6d2f..2179ef3b1aa 100644
--- a/src/plugins/obfuscator/obfuscate.ml
+++ b/src/plugins/obfuscator/obfuscate.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/obfuscator/obfuscate.mli b/src/plugins/obfuscator/obfuscate.mli
index 1cbd8e34c26..b69ed9695e6 100644
--- a/src/plugins/obfuscator/obfuscate.mli
+++ b/src/plugins/obfuscator/obfuscate.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/obfuscator/obfuscator_kind.ml b/src/plugins/obfuscator/obfuscator_kind.ml
index 4567b97fe13..e1f1513784a 100644
--- a/src/plugins/obfuscator/obfuscator_kind.ml
+++ b/src/plugins/obfuscator/obfuscator_kind.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/obfuscator/obfuscator_kind.mli b/src/plugins/obfuscator/obfuscator_kind.mli
index 98e526134b4..75fd6bb8af5 100644
--- a/src/plugins/obfuscator/obfuscator_kind.mli
+++ b/src/plugins/obfuscator/obfuscator_kind.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/obfuscator/obfuscator_register.ml b/src/plugins/obfuscator/obfuscator_register.ml
index 5d544869b3b..f56fedfb16e 100644
--- a/src/plugins/obfuscator/obfuscator_register.ml
+++ b/src/plugins/obfuscator/obfuscator_register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/obfuscator/options.ml b/src/plugins/obfuscator/options.ml
index 4d21cc7d16d..55829fcf7bc 100644
--- a/src/plugins/obfuscator/options.ml
+++ b/src/plugins/obfuscator/options.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/obfuscator/options.mli b/src/plugins/obfuscator/options.mli
index e9ce7c477e4..af6a8597188 100644
--- a/src/plugins/obfuscator/options.mli
+++ b/src/plugins/obfuscator/options.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/occurrence/Occurrence.mli b/src/plugins/occurrence/Occurrence.mli
index f34ddc18afb..54e5e73932f 100644
--- a/src/plugins/occurrence/Occurrence.mli
+++ b/src/plugins/occurrence/Occurrence.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/occurrence/options.ml b/src/plugins/occurrence/options.ml
index 60cd8370490..81c60ea7e46 100644
--- a/src/plugins/occurrence/options.ml
+++ b/src/plugins/occurrence/options.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/occurrence/options.mli b/src/plugins/occurrence/options.mli
index 00778a4c60e..5ccf4879434 100644
--- a/src/plugins/occurrence/options.mli
+++ b/src/plugins/occurrence/options.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/occurrence/register.ml b/src/plugins/occurrence/register.ml
index 2e6ba069d39..8fb2758b040 100644
--- a/src/plugins/occurrence/register.ml
+++ b/src/plugins/occurrence/register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/occurrence/register_gui.ml b/src/plugins/occurrence/register_gui.ml
index 749c7fcfa32..2263f173e76 100644
--- a/src/plugins/occurrence/register_gui.ml
+++ b/src/plugins/occurrence/register_gui.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/occurrence/register_gui.mli b/src/plugins/occurrence/register_gui.mli
index 41160e20c06..0636fd8f87e 100644
--- a/src/plugins/occurrence/register_gui.mli
+++ b/src/plugins/occurrence/register_gui.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg/Pdg.mli b/src/plugins/pdg/Pdg.mli
index aab15c1df35..0c651b2d6e4 100644
--- a/src/plugins/pdg/Pdg.mli
+++ b/src/plugins/pdg/Pdg.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg/annot.ml b/src/plugins/pdg/annot.ml
index df835941929..e660ddae551 100644
--- a/src/plugins/pdg/annot.ml
+++ b/src/plugins/pdg/annot.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg/annot.mli b/src/plugins/pdg/annot.mli
index a0b3e5f85a0..2c324e81744 100644
--- a/src/plugins/pdg/annot.mli
+++ b/src/plugins/pdg/annot.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg/build.ml b/src/plugins/pdg/build.ml
index e3e490fb972..77b36a3e72c 100644
--- a/src/plugins/pdg/build.ml
+++ b/src/plugins/pdg/build.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg/build.mli b/src/plugins/pdg/build.mli
index a762cb59bb2..b7c9ddddc4b 100644
--- a/src/plugins/pdg/build.mli
+++ b/src/plugins/pdg/build.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg/ctrlDpds.ml b/src/plugins/pdg/ctrlDpds.ml
index cdbd7f9bdbc..68a40418a8d 100644
--- a/src/plugins/pdg/ctrlDpds.ml
+++ b/src/plugins/pdg/ctrlDpds.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg/ctrlDpds.mli b/src/plugins/pdg/ctrlDpds.mli
index 5f67bd55146..bb9ed13c5bb 100644
--- a/src/plugins/pdg/ctrlDpds.mli
+++ b/src/plugins/pdg/ctrlDpds.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg/marks.ml b/src/plugins/pdg/marks.ml
index 40be4e7046f..aa18138de6c 100644
--- a/src/plugins/pdg/marks.ml
+++ b/src/plugins/pdg/marks.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg/marks.mli b/src/plugins/pdg/marks.mli
index 130a2785fe1..04b0dbf6657 100644
--- a/src/plugins/pdg/marks.mli
+++ b/src/plugins/pdg/marks.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg/pdg_parameters.ml b/src/plugins/pdg/pdg_parameters.ml
index 851e678746e..e2ce648f932 100644
--- a/src/plugins/pdg/pdg_parameters.ml
+++ b/src/plugins/pdg/pdg_parameters.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg/pdg_parameters.mli b/src/plugins/pdg/pdg_parameters.mli
index cdc6acc3e65..e0cc4b3458c 100644
--- a/src/plugins/pdg/pdg_parameters.mli
+++ b/src/plugins/pdg/pdg_parameters.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg/pdg_state.ml b/src/plugins/pdg/pdg_state.ml
index 2c38b99c036..3ca4c8dd556 100644
--- a/src/plugins/pdg/pdg_state.ml
+++ b/src/plugins/pdg/pdg_state.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg/pdg_state.mli b/src/plugins/pdg/pdg_state.mli
index da80cdd1bfd..5e22c11b991 100644
--- a/src/plugins/pdg/pdg_state.mli
+++ b/src/plugins/pdg/pdg_state.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg/register.ml b/src/plugins/pdg/register.ml
index 3a6cb8de399..85544202f36 100644
--- a/src/plugins/pdg/register.ml
+++ b/src/plugins/pdg/register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg/sets.ml b/src/plugins/pdg/sets.ml
index d61e391db1c..e353ca9ec75 100644
--- a/src/plugins/pdg/sets.ml
+++ b/src/plugins/pdg/sets.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg/sets.mli b/src/plugins/pdg/sets.mli
index f70f78d176b..d7a883585ce 100644
--- a/src/plugins/pdg/sets.mli
+++ b/src/plugins/pdg/sets.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg_types/pdgIndex.ml b/src/plugins/pdg_types/pdgIndex.ml
index 8116dc4a2b2..bd2714e513f 100644
--- a/src/plugins/pdg_types/pdgIndex.ml
+++ b/src/plugins/pdg_types/pdgIndex.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg_types/pdgIndex.mli b/src/plugins/pdg_types/pdgIndex.mli
index bbc64f4faf4..c210aad1e1b 100644
--- a/src/plugins/pdg_types/pdgIndex.mli
+++ b/src/plugins/pdg_types/pdgIndex.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg_types/pdgMarks.ml b/src/plugins/pdg_types/pdgMarks.ml
index f4fe4b68de1..cd4cba14dc8 100644
--- a/src/plugins/pdg_types/pdgMarks.ml
+++ b/src/plugins/pdg_types/pdgMarks.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg_types/pdgMarks.mli b/src/plugins/pdg_types/pdgMarks.mli
index a45cb4cfb0b..1b7822dbbbf 100644
--- a/src/plugins/pdg_types/pdgMarks.mli
+++ b/src/plugins/pdg_types/pdgMarks.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg_types/pdgTypes.ml b/src/plugins/pdg_types/pdgTypes.ml
index 8034eb93a3b..5e2b4bfa198 100644
--- a/src/plugins/pdg_types/pdgTypes.ml
+++ b/src/plugins/pdg_types/pdgTypes.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/pdg_types/pdgTypes.mli b/src/plugins/pdg_types/pdgTypes.mli
index 51ed2259fad..f5ec0ab386a 100644
--- a/src/plugins/pdg_types/pdgTypes.mli
+++ b/src/plugins/pdg_types/pdgTypes.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/postdominators/Postdominators.mli b/src/plugins/postdominators/Postdominators.mli
index f1555e8935a..6810582398b 100644
--- a/src/plugins/postdominators/Postdominators.mli
+++ b/src/plugins/postdominators/Postdominators.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/postdominators/compute.ml b/src/plugins/postdominators/compute.ml
index cc3e2b3e42a..2fc9cffe539 100644
--- a/src/plugins/postdominators/compute.ml
+++ b/src/plugins/postdominators/compute.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/postdominators/postdominators_parameters.ml b/src/plugins/postdominators/postdominators_parameters.ml
index 47492d86a98..66ab4e53287 100644
--- a/src/plugins/postdominators/postdominators_parameters.ml
+++ b/src/plugins/postdominators/postdominators_parameters.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/postdominators/postdominators_parameters.mli b/src/plugins/postdominators/postdominators_parameters.mli
index 5f07b3e8489..7262c31e2de 100644
--- a/src/plugins/postdominators/postdominators_parameters.mli
+++ b/src/plugins/postdominators/postdominators_parameters.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/postdominators/print.ml b/src/plugins/postdominators/print.ml
index 30c22565570..a2318de5f16 100644
--- a/src/plugins/postdominators/print.ml
+++ b/src/plugins/postdominators/print.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/print_api/Makefile b/src/plugins/print_api/Makefile
index a0506ace5a7..b57b6d0708a 100644
--- a/src/plugins/print_api/Makefile
+++ b/src/plugins/print_api/Makefile
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/print_api/Print_api.mli b/src/plugins/print_api/Print_api.mli
index dc3a583fdfc..203d133b793 100644
--- a/src/plugins/print_api/Print_api.mli
+++ b/src/plugins/print_api/Print_api.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/print_api/grammar.mly b/src/plugins/print_api/grammar.mly
index e272b390ad2..bd02132205c 100644
--- a/src/plugins/print_api/grammar.mly
+++ b/src/plugins/print_api/grammar.mly
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of Frama-C.                                         */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat à l'énergie atomique et aux énergies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/src/plugins/print_api/lexer.mll b/src/plugins/print_api/lexer.mll
index c926493918e..b4bfed68464 100644
--- a/src/plugins/print_api/lexer.mll
+++ b/src/plugins/print_api/lexer.mll
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/print_api/print_interface.ml b/src/plugins/print_api/print_interface.ml
index 539a3f63767..a6fc68dc430 100644
--- a/src/plugins/print_api/print_interface.ml
+++ b/src/plugins/print_api/print_interface.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/Makefile b/src/plugins/qed/Makefile
index 2e1acdeb34a..21d114d352f 100644
--- a/src/plugins/qed/Makefile
+++ b/src/plugins/qed/Makefile
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of WP plug-in of Frama-C.                           #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat a l'energie atomique et aux energies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/qed/QedGui.ml b/src/plugins/qed/QedGui.ml
index 4a8452db1ec..40db8a1c975 100644
--- a/src/plugins/qed/QedGui.ml
+++ b/src/plugins/qed/QedGui.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/bvars.ml b/src/plugins/qed/bvars.ml
index 5fe9a3513f3..66fc468c8fc 100644
--- a/src/plugins/qed/bvars.ml
+++ b/src/plugins/qed/bvars.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/bvars.mli b/src/plugins/qed/bvars.mli
index 237f47314a2..48ff38d4bdb 100644
--- a/src/plugins/qed/bvars.mli
+++ b/src/plugins/qed/bvars.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/cache.ml b/src/plugins/qed/cache.ml
index 143a56a1731..39b9b0d7d6b 100644
--- a/src/plugins/qed/cache.ml
+++ b/src/plugins/qed/cache.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/cache.mli b/src/plugins/qed/cache.mli
index 49e1dea14ed..74725cb9000 100644
--- a/src/plugins/qed/cache.mli
+++ b/src/plugins/qed/cache.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/collection.ml b/src/plugins/qed/collection.ml
index c2c3ad0c920..13c8e85f7ce 100644
--- a/src/plugins/qed/collection.ml
+++ b/src/plugins/qed/collection.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/collection.mli b/src/plugins/qed/collection.mli
index e481428d4b6..e1eed50aa00 100644
--- a/src/plugins/qed/collection.mli
+++ b/src/plugins/qed/collection.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/engine.ml b/src/plugins/qed/engine.ml
index 56bd28dc693..65dbd5cad46 100644
--- a/src/plugins/qed/engine.ml
+++ b/src/plugins/qed/engine.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/export.ml b/src/plugins/qed/export.ml
index f0ab696d75c..c1d37be3920 100644
--- a/src/plugins/qed/export.ml
+++ b/src/plugins/qed/export.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/export.mli b/src/plugins/qed/export.mli
index cf273f58c28..1db81873dcf 100644
--- a/src/plugins/qed/export.mli
+++ b/src/plugins/qed/export.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/export_altergo.ml b/src/plugins/qed/export_altergo.ml
index 42893a7e238..d779b1f827c 100644
--- a/src/plugins/qed/export_altergo.ml
+++ b/src/plugins/qed/export_altergo.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/export_altergo.mli b/src/plugins/qed/export_altergo.mli
index 8c67cabebb0..ec036440e67 100644
--- a/src/plugins/qed/export_altergo.mli
+++ b/src/plugins/qed/export_altergo.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/export_coq.ml b/src/plugins/qed/export_coq.ml
index a933098402e..aa39074635d 100644
--- a/src/plugins/qed/export_coq.ml
+++ b/src/plugins/qed/export_coq.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/export_coq.mli b/src/plugins/qed/export_coq.mli
index e9d63254744..1ae4f8c4136 100644
--- a/src/plugins/qed/export_coq.mli
+++ b/src/plugins/qed/export_coq.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/export_why3.ml b/src/plugins/qed/export_why3.ml
index 634cb610a22..6ed4f1b2e7b 100644
--- a/src/plugins/qed/export_why3.ml
+++ b/src/plugins/qed/export_why3.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/export_why3.mli b/src/plugins/qed/export_why3.mli
index aab95ee281d..101012dfc89 100644
--- a/src/plugins/qed/export_why3.mli
+++ b/src/plugins/qed/export_why3.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/export_whycore.ml b/src/plugins/qed/export_whycore.ml
index 17effa3d5fb..251bb091a8e 100644
--- a/src/plugins/qed/export_whycore.ml
+++ b/src/plugins/qed/export_whycore.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/export_whycore.mli b/src/plugins/qed/export_whycore.mli
index aadd2868db1..bfa5869eca2 100644
--- a/src/plugins/qed/export_whycore.mli
+++ b/src/plugins/qed/export_whycore.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/hcons.ml b/src/plugins/qed/hcons.ml
index b93adfc4d50..a95b21fe013 100644
--- a/src/plugins/qed/hcons.ml
+++ b/src/plugins/qed/hcons.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/hcons.mli b/src/plugins/qed/hcons.mli
index 875202b1fca..602ea239160 100644
--- a/src/plugins/qed/hcons.mli
+++ b/src/plugins/qed/hcons.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/idxmap.ml b/src/plugins/qed/idxmap.ml
index d16f3d5817b..72878d20ab7 100644
--- a/src/plugins/qed/idxmap.ml
+++ b/src/plugins/qed/idxmap.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/idxmap.mli b/src/plugins/qed/idxmap.mli
index af8b31922bf..0378e3d916c 100644
--- a/src/plugins/qed/idxmap.mli
+++ b/src/plugins/qed/idxmap.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/idxset.ml b/src/plugins/qed/idxset.ml
index 47718d941d4..475cb2683c8 100644
--- a/src/plugins/qed/idxset.ml
+++ b/src/plugins/qed/idxset.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/idxset.mli b/src/plugins/qed/idxset.mli
index 85dd1c57d90..79fb02aabcf 100644
--- a/src/plugins/qed/idxset.mli
+++ b/src/plugins/qed/idxset.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/intmap.ml b/src/plugins/qed/intmap.ml
index 8aa8b46723a..58a2618a66b 100644
--- a/src/plugins/qed/intmap.ml
+++ b/src/plugins/qed/intmap.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/intmap.mli b/src/plugins/qed/intmap.mli
index 4e6c2d22485..0173b3ef572 100644
--- a/src/plugins/qed/intmap.mli
+++ b/src/plugins/qed/intmap.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/intset.ml b/src/plugins/qed/intset.ml
index 3e5121c5aaf..3cb33ffa6bd 100644
--- a/src/plugins/qed/intset.ml
+++ b/src/plugins/qed/intset.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/intset.mli b/src/plugins/qed/intset.mli
index 6509ec6d20a..30de4944c1a 100644
--- a/src/plugins/qed/intset.mli
+++ b/src/plugins/qed/intset.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/kind.ml b/src/plugins/qed/kind.ml
index c2c5e20d2b2..aeff9780872 100644
--- a/src/plugins/qed/kind.ml
+++ b/src/plugins/qed/kind.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/kind.mli b/src/plugins/qed/kind.mli
index 180e5c606a0..1a8bcf914e1 100644
--- a/src/plugins/qed/kind.mli
+++ b/src/plugins/qed/kind.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/listmap.ml b/src/plugins/qed/listmap.ml
index 155ad934186..e118becc75c 100644
--- a/src/plugins/qed/listmap.ml
+++ b/src/plugins/qed/listmap.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/listmap.mli b/src/plugins/qed/listmap.mli
index 97e6abe6f94..94d3282bab8 100644
--- a/src/plugins/qed/listmap.mli
+++ b/src/plugins/qed/listmap.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/listset.ml b/src/plugins/qed/listset.ml
index e7df1047762..2143a31039b 100644
--- a/src/plugins/qed/listset.ml
+++ b/src/plugins/qed/listset.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/listset.mli b/src/plugins/qed/listset.mli
index 09646e91d76..f2c14f191a0 100644
--- a/src/plugins/qed/listset.mli
+++ b/src/plugins/qed/listset.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/logic.ml b/src/plugins/qed/logic.ml
index 53ebca7474d..5cd8f1ea2c6 100644
--- a/src/plugins/qed/logic.ml
+++ b/src/plugins/qed/logic.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/mergemap.ml b/src/plugins/qed/mergemap.ml
index 7917df66e86..7b9465b0337 100644
--- a/src/plugins/qed/mergemap.ml
+++ b/src/plugins/qed/mergemap.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/mergemap.mli b/src/plugins/qed/mergemap.mli
index 073b763ed73..a0003a15bfa 100644
--- a/src/plugins/qed/mergemap.mli
+++ b/src/plugins/qed/mergemap.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/mergeset.ml b/src/plugins/qed/mergeset.ml
index fdaf57e16fa..8a7f2d89617 100644
--- a/src/plugins/qed/mergeset.ml
+++ b/src/plugins/qed/mergeset.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/mergeset.mli b/src/plugins/qed/mergeset.mli
index 7cc7cabde94..a4e000feeb8 100644
--- a/src/plugins/qed/mergeset.mli
+++ b/src/plugins/qed/mergeset.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/partition.ml b/src/plugins/qed/partition.ml
index 0df13824e63..8ca27dd0361 100644
--- a/src/plugins/qed/partition.ml
+++ b/src/plugins/qed/partition.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/partition.mli b/src/plugins/qed/partition.mli
index 0cbf1051fad..715507fb07c 100644
--- a/src/plugins/qed/partition.mli
+++ b/src/plugins/qed/partition.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/plib.ml b/src/plugins/qed/plib.ml
index 7dabf633177..5010f6b2523 100644
--- a/src/plugins/qed/plib.ml
+++ b/src/plugins/qed/plib.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/plib.mli b/src/plugins/qed/plib.mli
index 01a5f36883f..6a6f53a23c0 100644
--- a/src/plugins/qed/plib.mli
+++ b/src/plugins/qed/plib.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/pool.ml b/src/plugins/qed/pool.ml
index 7671548f9cf..085cd3603f5 100644
--- a/src/plugins/qed/pool.ml
+++ b/src/plugins/qed/pool.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/pool.mli b/src/plugins/qed/pool.mli
index a3821955bb1..e1397ac481a 100644
--- a/src/plugins/qed/pool.mli
+++ b/src/plugins/qed/pool.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/pretty.ml b/src/plugins/qed/pretty.ml
index 09d83735442..b1d52e4c936 100644
--- a/src/plugins/qed/pretty.ml
+++ b/src/plugins/qed/pretty.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/pretty.mli b/src/plugins/qed/pretty.mli
index b4302464751..a749c5b4c4e 100644
--- a/src/plugins/qed/pretty.mli
+++ b/src/plugins/qed/pretty.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/term.ml b/src/plugins/qed/term.ml
index cb613d9f70f..dcd554f5ad9 100644
--- a/src/plugins/qed/term.ml
+++ b/src/plugins/qed/term.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/qed/term.mli b/src/plugins/qed/term.mli
index 20e68173867..22d526a3bd0 100644
--- a/src/plugins/qed/term.mli
+++ b/src/plugins/qed/term.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/report/Makefile.in b/src/plugins/report/Makefile.in
index 28447d1cbe9..317c5e1034f 100644
--- a/src/plugins/report/Makefile.in
+++ b/src/plugins/report/Makefile.in
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/report/Report.mli b/src/plugins/report/Report.mli
index 490b4da4e93..71da9870dbf 100644
--- a/src/plugins/report/Report.mli
+++ b/src/plugins/report/Report.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/report/classify.ml b/src/plugins/report/classify.ml
index 08e198b764d..4f005429106 100644
--- a/src/plugins/report/classify.ml
+++ b/src/plugins/report/classify.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/report/classify.mli b/src/plugins/report/classify.mli
index c9a81a79e12..4b4595e64f0 100644
--- a/src/plugins/report/classify.mli
+++ b/src/plugins/report/classify.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/report/configure.ac b/src/plugins/report/configure.ac
index 0f46b66ee20..c98dbf65894 100644
--- a/src/plugins/report/configure.ac
+++ b/src/plugins/report/configure.ac
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/report/csv.ml b/src/plugins/report/csv.ml
index 7d50b76be8d..bd6becb61a8 100644
--- a/src/plugins/report/csv.ml
+++ b/src/plugins/report/csv.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/report/csv.mli b/src/plugins/report/csv.mli
index 4984a8c2366..80b007bc8e8 100644
--- a/src/plugins/report/csv.mli
+++ b/src/plugins/report/csv.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/report/dump.ml b/src/plugins/report/dump.ml
index e56f0edd24a..00f6f5881f3 100644
--- a/src/plugins/report/dump.ml
+++ b/src/plugins/report/dump.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/report/dump.mli b/src/plugins/report/dump.mli
index 24dcc842b07..8b31492fcea 100644
--- a/src/plugins/report/dump.mli
+++ b/src/plugins/report/dump.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/report/register.ml b/src/plugins/report/register.ml
index c3ca77e7a91..843d97bc8d5 100644
--- a/src/plugins/report/register.ml
+++ b/src/plugins/report/register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/report/register.mli b/src/plugins/report/register.mli
index 3553285864b..cdf1735ea92 100644
--- a/src/plugins/report/register.mli
+++ b/src/plugins/report/register.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/report/report_parameters.ml b/src/plugins/report/report_parameters.ml
index 6d20e0933f3..b7f24343af6 100644
--- a/src/plugins/report/report_parameters.ml
+++ b/src/plugins/report/report_parameters.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/report/report_parameters.mli b/src/plugins/report/report_parameters.mli
index 7868e9ffc58..0f806eeed28 100644
--- a/src/plugins/report/report_parameters.mli
+++ b/src/plugins/report/report_parameters.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/report/scan.ml b/src/plugins/report/scan.ml
index 20b39c16207..aee6947f089 100644
--- a/src/plugins/report/scan.ml
+++ b/src/plugins/report/scan.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/report/scan.mli b/src/plugins/report/scan.mli
index 9fffa3e26ea..6d293b3c5b3 100644
--- a/src/plugins/report/scan.mli
+++ b/src/plugins/report/scan.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/rte/RteGen.mli b/src/plugins/rte/RteGen.mli
index 00deef91d8c..38c5e2d519f 100644
--- a/src/plugins/rte/RteGen.mli
+++ b/src/plugins/rte/RteGen.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/rte/flags.ml b/src/plugins/rte/flags.ml
index fea846e8b19..36198afe973 100644
--- a/src/plugins/rte/flags.ml
+++ b/src/plugins/rte/flags.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/rte/flags.mli b/src/plugins/rte/flags.mli
index fc1a7b6f4d7..f294c8f49d5 100644
--- a/src/plugins/rte/flags.mli
+++ b/src/plugins/rte/flags.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/rte/generator.ml b/src/plugins/rte/generator.ml
index 4c84ce9c126..293a7fb216d 100644
--- a/src/plugins/rte/generator.ml
+++ b/src/plugins/rte/generator.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/rte/generator.mli b/src/plugins/rte/generator.mli
index 0116b9d7698..d2b544bd493 100644
--- a/src/plugins/rte/generator.mli
+++ b/src/plugins/rte/generator.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/rte/options.ml b/src/plugins/rte/options.ml
index e5ad90472cf..3b962761670 100644
--- a/src/plugins/rte/options.ml
+++ b/src/plugins/rte/options.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/rte/options.mli b/src/plugins/rte/options.mli
index a68fb843ccb..9dea4f6c0af 100644
--- a/src/plugins/rte/options.mli
+++ b/src/plugins/rte/options.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/rte/register.ml b/src/plugins/rte/register.ml
index cb4f763b97e..984734d10d4 100644
--- a/src/plugins/rte/register.ml
+++ b/src/plugins/rte/register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/rte/rte.ml b/src/plugins/rte/rte.ml
index 8dc11f2e796..a18ad38795d 100644
--- a/src/plugins/rte/rte.ml
+++ b/src/plugins/rte/rte.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/rte/rte.mli b/src/plugins/rte/rte.mli
index c7a292c92ca..675206e5693 100644
--- a/src/plugins/rte/rte.mli
+++ b/src/plugins/rte/rte.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/rte/visit.ml b/src/plugins/rte/visit.ml
index 5d8f2564def..aaa5dc814d7 100644
--- a/src/plugins/rte/visit.ml
+++ b/src/plugins/rte/visit.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/rte/visit.mli b/src/plugins/rte/visit.mli
index 96ab37d15ed..e380e78acd9 100644
--- a/src/plugins/rte/visit.mli
+++ b/src/plugins/rte/visit.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/scope/Scope.mli b/src/plugins/scope/Scope.mli
index 6fcce5df2b8..91c4f01f1f0 100644
--- a/src/plugins/scope/Scope.mli
+++ b/src/plugins/scope/Scope.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/scope/datascope.ml b/src/plugins/scope/datascope.ml
index d1ae61bceb9..ea5c4fabe53 100644
--- a/src/plugins/scope/datascope.ml
+++ b/src/plugins/scope/datascope.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/scope/datascope.mli b/src/plugins/scope/datascope.mli
index 2a54ac58409..b34a8589757 100644
--- a/src/plugins/scope/datascope.mli
+++ b/src/plugins/scope/datascope.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/scope/defs.ml b/src/plugins/scope/defs.ml
index 8074c8ac1e5..15fd69d4199 100644
--- a/src/plugins/scope/defs.ml
+++ b/src/plugins/scope/defs.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/scope/defs.mli b/src/plugins/scope/defs.mli
index ff743feca3a..951da3f4162 100644
--- a/src/plugins/scope/defs.mli
+++ b/src/plugins/scope/defs.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/scope/dpds_gui.ml b/src/plugins/scope/dpds_gui.ml
index a8b8529b191..99e71b97d3a 100644
--- a/src/plugins/scope/dpds_gui.ml
+++ b/src/plugins/scope/dpds_gui.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/scope/zones.ml b/src/plugins/scope/zones.ml
index bb4292562c0..c31538198cd 100644
--- a/src/plugins/scope/zones.ml
+++ b/src/plugins/scope/zones.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/scope/zones.mli b/src/plugins/scope/zones.mli
index cfd90ef66d5..bc805f1a338 100644
--- a/src/plugins/scope/zones.mli
+++ b/src/plugins/scope/zones.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/security_slicing/Makefile.in b/src/plugins/security_slicing/Makefile.in
index 471db4ebf36..279bbe9fb7e 100644
--- a/src/plugins/security_slicing/Makefile.in
+++ b/src/plugins/security_slicing/Makefile.in
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/security_slicing/Security_slicing.mli b/src/plugins/security_slicing/Security_slicing.mli
index 1e737a35f81..29c2c9db53a 100644
--- a/src/plugins/security_slicing/Security_slicing.mli
+++ b/src/plugins/security_slicing/Security_slicing.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/security_slicing/components.ml b/src/plugins/security_slicing/components.ml
index 0768f1a60ca..371eadc8fb7 100644
--- a/src/plugins/security_slicing/components.ml
+++ b/src/plugins/security_slicing/components.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/security_slicing/components.mli b/src/plugins/security_slicing/components.mli
index 2decfa6f654..8945d1317f6 100644
--- a/src/plugins/security_slicing/components.mli
+++ b/src/plugins/security_slicing/components.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/security_slicing/configure.ac b/src/plugins/security_slicing/configure.ac
index 5f818bc105c..1eddf469e19 100644
--- a/src/plugins/security_slicing/configure.ac
+++ b/src/plugins/security_slicing/configure.ac
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/security_slicing/register_gui.ml b/src/plugins/security_slicing/register_gui.ml
index ef22c6150b0..e7722b7cce1 100644
--- a/src/plugins/security_slicing/register_gui.ml
+++ b/src/plugins/security_slicing/register_gui.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/security_slicing/register_gui.mli b/src/plugins/security_slicing/register_gui.mli
index 97da8ad4c82..39ff7e39d7d 100644
--- a/src/plugins/security_slicing/register_gui.mli
+++ b/src/plugins/security_slicing/register_gui.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/security_slicing/security_slicing_parameters.ml b/src/plugins/security_slicing/security_slicing_parameters.ml
index 9bf51d66557..30d9d101f9f 100644
--- a/src/plugins/security_slicing/security_slicing_parameters.ml
+++ b/src/plugins/security_slicing/security_slicing_parameters.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/security_slicing/security_slicing_parameters.mli b/src/plugins/security_slicing/security_slicing_parameters.mli
index 98e74986b86..7e5d03019d4 100644
--- a/src/plugins/security_slicing/security_slicing_parameters.mli
+++ b/src/plugins/security_slicing/security_slicing_parameters.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/Makefile.in b/src/plugins/server/Makefile.in
index 1fca7533e84..1c00c79b860 100644
--- a/src/plugins/server/Makefile.in
+++ b/src/plugins/server/Makefile.in
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/server/configure.ac b/src/plugins/server/configure.ac
index 5a4ce645369..5a98a8cb931 100644
--- a/src/plugins/server/configure.ac
+++ b/src/plugins/server/configure.ac
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/server/data.ml b/src/plugins/server/data.ml
index 1f20d6d4c36..94d38a13b40 100644
--- a/src/plugins/server/data.ml
+++ b/src/plugins/server/data.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/data.mli b/src/plugins/server/data.mli
index 9cd4625aa81..eedb803fd42 100644
--- a/src/plugins/server/data.mli
+++ b/src/plugins/server/data.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/jbuffer.ml b/src/plugins/server/jbuffer.ml
index f7ca9ebbfe0..73cfb15fe31 100644
--- a/src/plugins/server/jbuffer.ml
+++ b/src/plugins/server/jbuffer.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/jbuffer.mli b/src/plugins/server/jbuffer.mli
index 2a825a04f0f..fbf2ac0387e 100644
--- a/src/plugins/server/jbuffer.mli
+++ b/src/plugins/server/jbuffer.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/kernel_ast.ml b/src/plugins/server/kernel_ast.ml
index dfc1510305d..463499a6e5a 100644
--- a/src/plugins/server/kernel_ast.ml
+++ b/src/plugins/server/kernel_ast.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/kernel_ast.mli b/src/plugins/server/kernel_ast.mli
index f9e56c08f27..aa917218f41 100644
--- a/src/plugins/server/kernel_ast.mli
+++ b/src/plugins/server/kernel_ast.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/kernel_main.ml b/src/plugins/server/kernel_main.ml
index f57033cb136..acc91d128b9 100644
--- a/src/plugins/server/kernel_main.ml
+++ b/src/plugins/server/kernel_main.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/kernel_main.mli b/src/plugins/server/kernel_main.mli
index 112dc65beff..ead76ffab68 100644
--- a/src/plugins/server/kernel_main.mli
+++ b/src/plugins/server/kernel_main.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/kernel_project.ml b/src/plugins/server/kernel_project.ml
index 3dcc1454374..e6c5242f6e7 100644
--- a/src/plugins/server/kernel_project.ml
+++ b/src/plugins/server/kernel_project.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/kernel_project.mli b/src/plugins/server/kernel_project.mli
index 59e18b95b40..50bee356bc0 100644
--- a/src/plugins/server/kernel_project.mli
+++ b/src/plugins/server/kernel_project.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/kernel_properties.ml b/src/plugins/server/kernel_properties.ml
index cc2f4484a24..7139e902439 100644
--- a/src/plugins/server/kernel_properties.ml
+++ b/src/plugins/server/kernel_properties.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/kernel_properties.mli b/src/plugins/server/kernel_properties.mli
index 8ecc7d4e901..e129e5e9d82 100644
--- a/src/plugins/server/kernel_properties.mli
+++ b/src/plugins/server/kernel_properties.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/main.ml b/src/plugins/server/main.ml
index 39de5801cd5..e7e65dd1658 100644
--- a/src/plugins/server/main.ml
+++ b/src/plugins/server/main.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/main.mli b/src/plugins/server/main.mli
index eec63fefa2b..1ea574e0737 100644
--- a/src/plugins/server/main.mli
+++ b/src/plugins/server/main.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/package.ml b/src/plugins/server/package.ml
index bb87b1da3d5..5acf76ffc99 100644
--- a/src/plugins/server/package.ml
+++ b/src/plugins/server/package.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/package.mli b/src/plugins/server/package.mli
index 30075f6243c..73da7e4d3d6 100644
--- a/src/plugins/server/package.mli
+++ b/src/plugins/server/package.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/request.ml b/src/plugins/server/request.ml
index 24a94eb02af..d885343ad39 100644
--- a/src/plugins/server/request.ml
+++ b/src/plugins/server/request.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/request.mli b/src/plugins/server/request.mli
index 2ad33bcacf3..a4a6c4596bf 100644
--- a/src/plugins/server/request.mli
+++ b/src/plugins/server/request.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/server_batch.ml b/src/plugins/server/server_batch.ml
index 4fc37a40aa6..273d9a3c509 100644
--- a/src/plugins/server/server_batch.ml
+++ b/src/plugins/server/server_batch.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/server_doc.ml b/src/plugins/server/server_doc.ml
index 9b7365eb822..f38f08705f9 100644
--- a/src/plugins/server/server_doc.ml
+++ b/src/plugins/server/server_doc.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/server_doc.mli b/src/plugins/server/server_doc.mli
index 498ef90e74c..6bb0462554e 100644
--- a/src/plugins/server/server_doc.mli
+++ b/src/plugins/server/server_doc.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/server_parameters.ml b/src/plugins/server/server_parameters.ml
index 74a07c43b7f..3eedff1c728 100644
--- a/src/plugins/server/server_parameters.ml
+++ b/src/plugins/server/server_parameters.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/server_parameters.mli b/src/plugins/server/server_parameters.mli
index ba41ba164c7..4186a397421 100644
--- a/src/plugins/server/server_parameters.mli
+++ b/src/plugins/server/server_parameters.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/server_zmq.ml b/src/plugins/server/server_zmq.ml
index a0c4928434b..6a7ca917cdd 100644
--- a/src/plugins/server/server_zmq.ml
+++ b/src/plugins/server/server_zmq.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/states.ml b/src/plugins/server/states.ml
index 52a682f2bc7..04bb0f80b73 100644
--- a/src/plugins/server/states.ml
+++ b/src/plugins/server/states.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/server/states.mli b/src/plugins/server/states.mli
index 1f38038f83e..1285874ffe9 100644
--- a/src/plugins/server/states.mli
+++ b/src/plugins/server/states.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/Slicing.mli b/src/plugins/slicing/Slicing.mli
index 67a5f2f7094..5cd8c31e3ce 100644
--- a/src/plugins/slicing/Slicing.mli
+++ b/src/plugins/slicing/Slicing.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/api.ml b/src/plugins/slicing/api.ml
index 3158f4fe3d6..7765c1ef09c 100644
--- a/src/plugins/slicing/api.ml
+++ b/src/plugins/slicing/api.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/fct_slice.ml b/src/plugins/slicing/fct_slice.ml
index f8b02ee705d..16ace53c0ec 100644
--- a/src/plugins/slicing/fct_slice.ml
+++ b/src/plugins/slicing/fct_slice.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/fct_slice.mli b/src/plugins/slicing/fct_slice.mli
index 45069322f5f..b7081df617f 100644
--- a/src/plugins/slicing/fct_slice.mli
+++ b/src/plugins/slicing/fct_slice.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/printSlice.ml b/src/plugins/slicing/printSlice.ml
index 8c4bae8bc79..648e2c13f10 100644
--- a/src/plugins/slicing/printSlice.ml
+++ b/src/plugins/slicing/printSlice.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/printSlice.mli b/src/plugins/slicing/printSlice.mli
index 8cab265ac59..dfe773827a0 100644
--- a/src/plugins/slicing/printSlice.mli
+++ b/src/plugins/slicing/printSlice.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/register.ml b/src/plugins/slicing/register.ml
index d121f859e09..e5c2ea11b52 100644
--- a/src/plugins/slicing/register.ml
+++ b/src/plugins/slicing/register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/register_gui.ml b/src/plugins/slicing/register_gui.ml
index ff195d5618e..0ae02753447 100644
--- a/src/plugins/slicing/register_gui.ml
+++ b/src/plugins/slicing/register_gui.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/register_gui.mli b/src/plugins/slicing/register_gui.mli
index 86260b88d0a..d32b1b74b38 100644
--- a/src/plugins/slicing/register_gui.mli
+++ b/src/plugins/slicing/register_gui.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/slicingActions.ml b/src/plugins/slicing/slicingActions.ml
index 61e00a5f2e1..65f7db4a109 100644
--- a/src/plugins/slicing/slicingActions.ml
+++ b/src/plugins/slicing/slicingActions.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/slicingActions.mli b/src/plugins/slicing/slicingActions.mli
index 1e039ab0198..589f1265d20 100644
--- a/src/plugins/slicing/slicingActions.mli
+++ b/src/plugins/slicing/slicingActions.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/slicingCmds.ml b/src/plugins/slicing/slicingCmds.ml
index f4f31d5622a..baf6611fd15 100644
--- a/src/plugins/slicing/slicingCmds.ml
+++ b/src/plugins/slicing/slicingCmds.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/slicingCmds.mli b/src/plugins/slicing/slicingCmds.mli
index b6b1e65f01f..7c87d8ad9eb 100644
--- a/src/plugins/slicing/slicingCmds.mli
+++ b/src/plugins/slicing/slicingCmds.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/slicingInternals.ml b/src/plugins/slicing/slicingInternals.ml
index 41267c6f720..9560cb8fa71 100644
--- a/src/plugins/slicing/slicingInternals.ml
+++ b/src/plugins/slicing/slicingInternals.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/slicingMacros.ml b/src/plugins/slicing/slicingMacros.ml
index 12fb5dd69df..28963bcf6e8 100644
--- a/src/plugins/slicing/slicingMacros.ml
+++ b/src/plugins/slicing/slicingMacros.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/slicingMacros.mli b/src/plugins/slicing/slicingMacros.mli
index 1b48cd4dd7f..066f79ba4ec 100644
--- a/src/plugins/slicing/slicingMacros.mli
+++ b/src/plugins/slicing/slicingMacros.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/slicingMarks.ml b/src/plugins/slicing/slicingMarks.ml
index 7f9d481ad0b..a2270886531 100644
--- a/src/plugins/slicing/slicingMarks.ml
+++ b/src/plugins/slicing/slicingMarks.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/slicingMarks.mli b/src/plugins/slicing/slicingMarks.mli
index cd0d8796880..42cbaf3cb8a 100644
--- a/src/plugins/slicing/slicingMarks.mli
+++ b/src/plugins/slicing/slicingMarks.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/slicingParameters.ml b/src/plugins/slicing/slicingParameters.ml
index 1ebc3413583..0c0249ec4f2 100644
--- a/src/plugins/slicing/slicingParameters.ml
+++ b/src/plugins/slicing/slicingParameters.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/slicingParameters.mli b/src/plugins/slicing/slicingParameters.mli
index e394c5aa45e..c068df5f46f 100644
--- a/src/plugins/slicing/slicingParameters.mli
+++ b/src/plugins/slicing/slicingParameters.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/slicingProject.ml b/src/plugins/slicing/slicingProject.ml
index 92459375ac9..7e419edaac8 100644
--- a/src/plugins/slicing/slicingProject.ml
+++ b/src/plugins/slicing/slicingProject.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/slicingProject.mli b/src/plugins/slicing/slicingProject.mli
index 8792c6ff160..0903a058f90 100644
--- a/src/plugins/slicing/slicingProject.mli
+++ b/src/plugins/slicing/slicingProject.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/slicingSelect.ml b/src/plugins/slicing/slicingSelect.ml
index 50795e5e4c6..2917260339a 100644
--- a/src/plugins/slicing/slicingSelect.ml
+++ b/src/plugins/slicing/slicingSelect.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/slicingState.ml b/src/plugins/slicing/slicingState.ml
index 6a9408e18de..6c8a30151c5 100644
--- a/src/plugins/slicing/slicingState.ml
+++ b/src/plugins/slicing/slicingState.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/slicingState.mli b/src/plugins/slicing/slicingState.mli
index fd224768c0c..d9ba1776afb 100644
--- a/src/plugins/slicing/slicingState.mli
+++ b/src/plugins/slicing/slicingState.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/slicingTransform.ml b/src/plugins/slicing/slicingTransform.ml
index d1b286e8d10..293395efa39 100644
--- a/src/plugins/slicing/slicingTransform.ml
+++ b/src/plugins/slicing/slicingTransform.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/slicingTransform.mli b/src/plugins/slicing/slicingTransform.mli
index a73f435369a..1b6ff238d48 100644
--- a/src/plugins/slicing/slicingTransform.mli
+++ b/src/plugins/slicing/slicingTransform.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/slicing/slicingTypes.ml b/src/plugins/slicing/slicingTypes.ml
index a19199d0e5d..6ca13c15e24 100644
--- a/src/plugins/slicing/slicingTypes.ml
+++ b/src/plugins/slicing/slicingTypes.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/sparecode/Sparecode.mli b/src/plugins/sparecode/Sparecode.mli
index aeb2a63de80..b189a7f0ca9 100644
--- a/src/plugins/sparecode/Sparecode.mli
+++ b/src/plugins/sparecode/Sparecode.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/sparecode/globs.ml b/src/plugins/sparecode/globs.ml
index 60b2535c517..90e6bc0f738 100644
--- a/src/plugins/sparecode/globs.ml
+++ b/src/plugins/sparecode/globs.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/sparecode/register.ml b/src/plugins/sparecode/register.ml
index 8c1fdae4f36..f6fb81585c6 100644
--- a/src/plugins/sparecode/register.ml
+++ b/src/plugins/sparecode/register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/sparecode/spare_marks.ml b/src/plugins/sparecode/spare_marks.ml
index 409c6b654ea..c72ff8e7b3b 100644
--- a/src/plugins/sparecode/spare_marks.ml
+++ b/src/plugins/sparecode/spare_marks.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/sparecode/spare_marks.mli b/src/plugins/sparecode/spare_marks.mli
index 4c0ecd56316..ddb633e8676 100644
--- a/src/plugins/sparecode/spare_marks.mli
+++ b/src/plugins/sparecode/spare_marks.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/sparecode/sparecode_params.ml b/src/plugins/sparecode/sparecode_params.ml
index ed95a49d319..cc939396666 100644
--- a/src/plugins/sparecode/sparecode_params.ml
+++ b/src/plugins/sparecode/sparecode_params.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/sparecode/sparecode_params.mli b/src/plugins/sparecode/sparecode_params.mli
index d38df13bbda..8e71b62d80d 100644
--- a/src/plugins/sparecode/sparecode_params.mli
+++ b/src/plugins/sparecode/sparecode_params.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/sparecode/transform.ml b/src/plugins/sparecode/transform.ml
index 24e7de12f6c..4faf0e40d73 100644
--- a/src/plugins/sparecode/transform.ml
+++ b/src/plugins/sparecode/transform.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/studia/Makefile.in b/src/plugins/studia/Makefile.in
index c49e1893f2e..fa02d221362 100644
--- a/src/plugins/studia/Makefile.in
+++ b/src/plugins/studia/Makefile.in
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/studia/Studia.mli b/src/plugins/studia/Studia.mli
index 0d6d4ead926..0a60a3dc636 100644
--- a/src/plugins/studia/Studia.mli
+++ b/src/plugins/studia/Studia.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/studia/configure.ac b/src/plugins/studia/configure.ac
index b4d031aab1a..efe2f4558a8 100644
--- a/src/plugins/studia/configure.ac
+++ b/src/plugins/studia/configure.ac
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/studia/options.ml b/src/plugins/studia/options.ml
index 452835f0141..fe49c4960b6 100644
--- a/src/plugins/studia/options.ml
+++ b/src/plugins/studia/options.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/studia/options.mli b/src/plugins/studia/options.mli
index 8867468d6bb..b769eb48940 100644
--- a/src/plugins/studia/options.mli
+++ b/src/plugins/studia/options.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/studia/reads.ml b/src/plugins/studia/reads.ml
index 6a17e2cafe4..3685d8cba7b 100644
--- a/src/plugins/studia/reads.ml
+++ b/src/plugins/studia/reads.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/studia/reads.mli b/src/plugins/studia/reads.mli
index 0ecc273649c..3a4ae016432 100644
--- a/src/plugins/studia/reads.mli
+++ b/src/plugins/studia/reads.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/studia/studia_gui.ml b/src/plugins/studia/studia_gui.ml
index 65638eed878..c5b4df28f3b 100644
--- a/src/plugins/studia/studia_gui.ml
+++ b/src/plugins/studia/studia_gui.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/studia/studia_gui.mli b/src/plugins/studia/studia_gui.mli
index 802d951f78e..676dc9b6fa4 100644
--- a/src/plugins/studia/studia_gui.mli
+++ b/src/plugins/studia/studia_gui.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/studia/studia_request.ml b/src/plugins/studia/studia_request.ml
index 0297777d9b0..ff3f94c3d10 100644
--- a/src/plugins/studia/studia_request.ml
+++ b/src/plugins/studia/studia_request.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/studia/studia_request.mli b/src/plugins/studia/studia_request.mli
index 182bc40a8e1..cce51dc83ef 100644
--- a/src/plugins/studia/studia_request.mli
+++ b/src/plugins/studia/studia_request.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/studia/writes.ml b/src/plugins/studia/writes.ml
index 938c3f01dae..fa29b18e974 100644
--- a/src/plugins/studia/writes.ml
+++ b/src/plugins/studia/writes.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/studia/writes.mli b/src/plugins/studia/writes.mli
index d0340ef80e7..5010fcae309 100644
--- a/src/plugins/studia/writes.mli
+++ b/src/plugins/studia/writes.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/users/Users.mli b/src/plugins/users/Users.mli
index b5d7b5c25e9..5bc2ca44a5f 100644
--- a/src/plugins/users/Users.mli
+++ b/src/plugins/users/Users.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/users/users_register.ml b/src/plugins/users/users_register.ml
index 1dc6450465e..665ad85911e 100644
--- a/src/plugins/users/users_register.ml
+++ b/src/plugins/users/users_register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/Eva.mli b/src/plugins/value/Eva.mli
index d71fa98faca..fc8b622ad39 100644
--- a/src/plugins/value/Eva.mli
+++ b/src/plugins/value/Eva.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/alarmset.ml b/src/plugins/value/alarmset.ml
index 3f94efd96e9..c2db72bb383 100644
--- a/src/plugins/value/alarmset.ml
+++ b/src/plugins/value/alarmset.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/alarmset.mli b/src/plugins/value/alarmset.mli
index b756f8a2cb5..e2017f8cfdd 100644
--- a/src/plugins/value/alarmset.mli
+++ b/src/plugins/value/alarmset.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/api/general_requests.ml b/src/plugins/value/api/general_requests.ml
index bbb5c957243..66c110104c2 100644
--- a/src/plugins/value/api/general_requests.ml
+++ b/src/plugins/value/api/general_requests.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/api/general_requests.mli b/src/plugins/value/api/general_requests.mli
index 6568b925a92..6a2cd7dfeac 100644
--- a/src/plugins/value/api/general_requests.mli
+++ b/src/plugins/value/api/general_requests.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/api/values_request.ml b/src/plugins/value/api/values_request.ml
index e6587ea8582..5255b073cb6 100644
--- a/src/plugins/value/api/values_request.ml
+++ b/src/plugins/value/api/values_request.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/api/values_request.mli b/src/plugins/value/api/values_request.mli
index 182bc40a8e1..cce51dc83ef 100644
--- a/src/plugins/value/api/values_request.mli
+++ b/src/plugins/value/api/values_request.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/abstract_domain.mli b/src/plugins/value/domains/abstract_domain.mli
index c6093135e2a..d45f5d4a2db 100644
--- a/src/plugins/value/domains/abstract_domain.mli
+++ b/src/plugins/value/domains/abstract_domain.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/apron/apron_domain.ml b/src/plugins/value/domains/apron/apron_domain.ml
index 0fdcc234bf9..3e3fb679f28 100644
--- a/src/plugins/value/domains/apron/apron_domain.ml
+++ b/src/plugins/value/domains/apron/apron_domain.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/apron/apron_domain.mli b/src/plugins/value/domains/apron/apron_domain.mli
index 24703ead6f1..aada194ddef 100644
--- a/src/plugins/value/domains/apron/apron_domain.mli
+++ b/src/plugins/value/domains/apron/apron_domain.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/builtins.ml b/src/plugins/value/domains/cvalue/builtins.ml
index ba5c2f99bb9..f21513bf138 100644
--- a/src/plugins/value/domains/cvalue/builtins.ml
+++ b/src/plugins/value/domains/cvalue/builtins.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/builtins.mli b/src/plugins/value/domains/cvalue/builtins.mli
index cc4241afa04..d4c8e217ac8 100644
--- a/src/plugins/value/domains/cvalue/builtins.mli
+++ b/src/plugins/value/domains/cvalue/builtins.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/builtins_float.ml b/src/plugins/value/domains/cvalue/builtins_float.ml
index 3981a1f063c..8194285d1c6 100644
--- a/src/plugins/value/domains/cvalue/builtins_float.ml
+++ b/src/plugins/value/domains/cvalue/builtins_float.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/builtins_float.mli b/src/plugins/value/domains/cvalue/builtins_float.mli
index ff5c4d45a88..6f9f922d51b 100644
--- a/src/plugins/value/domains/cvalue/builtins_float.mli
+++ b/src/plugins/value/domains/cvalue/builtins_float.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/builtins_malloc.ml b/src/plugins/value/domains/cvalue/builtins_malloc.ml
index 2868e1b1bfb..60a35cc4c72 100644
--- a/src/plugins/value/domains/cvalue/builtins_malloc.ml
+++ b/src/plugins/value/domains/cvalue/builtins_malloc.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/builtins_malloc.mli b/src/plugins/value/domains/cvalue/builtins_malloc.mli
index 9033945113f..fecaa6ca53c 100644
--- a/src/plugins/value/domains/cvalue/builtins_malloc.mli
+++ b/src/plugins/value/domains/cvalue/builtins_malloc.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/builtins_memory.ml b/src/plugins/value/domains/cvalue/builtins_memory.ml
index b3a237f7d07..8aea7089f54 100644
--- a/src/plugins/value/domains/cvalue/builtins_memory.ml
+++ b/src/plugins/value/domains/cvalue/builtins_memory.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/builtins_memory.mli b/src/plugins/value/domains/cvalue/builtins_memory.mli
index 08cddd002fd..9ecb26cab14 100644
--- a/src/plugins/value/domains/cvalue/builtins_memory.mli
+++ b/src/plugins/value/domains/cvalue/builtins_memory.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/builtins_misc.ml b/src/plugins/value/domains/cvalue/builtins_misc.ml
index 8617ae7119a..7b2e54d5fa9 100644
--- a/src/plugins/value/domains/cvalue/builtins_misc.ml
+++ b/src/plugins/value/domains/cvalue/builtins_misc.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/builtins_misc.mli b/src/plugins/value/domains/cvalue/builtins_misc.mli
index 6fd3000fc99..c3d1ae15933 100644
--- a/src/plugins/value/domains/cvalue/builtins_misc.mli
+++ b/src/plugins/value/domains/cvalue/builtins_misc.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/builtins_print_c.ml b/src/plugins/value/domains/cvalue/builtins_print_c.ml
index 1ac0850f13a..28c2180087e 100644
--- a/src/plugins/value/domains/cvalue/builtins_print_c.ml
+++ b/src/plugins/value/domains/cvalue/builtins_print_c.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/builtins_print_c.mli b/src/plugins/value/domains/cvalue/builtins_print_c.mli
index 39bdb488068..3a90498ca75 100644
--- a/src/plugins/value/domains/cvalue/builtins_print_c.mli
+++ b/src/plugins/value/domains/cvalue/builtins_print_c.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/builtins_split.ml b/src/plugins/value/domains/cvalue/builtins_split.ml
index 9c9d6c0cc1d..eabc8ced8ac 100644
--- a/src/plugins/value/domains/cvalue/builtins_split.ml
+++ b/src/plugins/value/domains/cvalue/builtins_split.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/builtins_split.mli b/src/plugins/value/domains/cvalue/builtins_split.mli
index 24418bb6cc0..00ab84e9a1d 100644
--- a/src/plugins/value/domains/cvalue/builtins_split.mli
+++ b/src/plugins/value/domains/cvalue/builtins_split.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/builtins_string.ml b/src/plugins/value/domains/cvalue/builtins_string.ml
index f5ecbc9c136..d479ad1dca7 100644
--- a/src/plugins/value/domains/cvalue/builtins_string.ml
+++ b/src/plugins/value/domains/cvalue/builtins_string.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/builtins_string.mli b/src/plugins/value/domains/cvalue/builtins_string.mli
index 632d0f94b39..feea3c2719f 100644
--- a/src/plugins/value/domains/cvalue/builtins_string.mli
+++ b/src/plugins/value/domains/cvalue/builtins_string.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/builtins_watchpoint.ml b/src/plugins/value/domains/cvalue/builtins_watchpoint.ml
index 4fede94153e..d7b0df933a8 100644
--- a/src/plugins/value/domains/cvalue/builtins_watchpoint.ml
+++ b/src/plugins/value/domains/cvalue/builtins_watchpoint.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/builtins_watchpoint.mli b/src/plugins/value/domains/cvalue/builtins_watchpoint.mli
index 6b2390b440d..cfc2fd2f4ee 100644
--- a/src/plugins/value/domains/cvalue/builtins_watchpoint.mli
+++ b/src/plugins/value/domains/cvalue/builtins_watchpoint.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/cvalue_domain.ml b/src/plugins/value/domains/cvalue/cvalue_domain.ml
index 5257e966b87..bc7868a1f80 100644
--- a/src/plugins/value/domains/cvalue/cvalue_domain.ml
+++ b/src/plugins/value/domains/cvalue/cvalue_domain.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/cvalue_domain.mli b/src/plugins/value/domains/cvalue/cvalue_domain.mli
index dda36548c70..d8961aa52b4 100644
--- a/src/plugins/value/domains/cvalue/cvalue_domain.mli
+++ b/src/plugins/value/domains/cvalue/cvalue_domain.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/cvalue_init.ml b/src/plugins/value/domains/cvalue/cvalue_init.ml
index b3552f45e72..d0470699ed5 100644
--- a/src/plugins/value/domains/cvalue/cvalue_init.ml
+++ b/src/plugins/value/domains/cvalue/cvalue_init.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/cvalue_init.mli b/src/plugins/value/domains/cvalue/cvalue_init.mli
index bb0c5875ba4..de795df863d 100644
--- a/src/plugins/value/domains/cvalue/cvalue_init.mli
+++ b/src/plugins/value/domains/cvalue/cvalue_init.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/cvalue_offsetmap.ml b/src/plugins/value/domains/cvalue/cvalue_offsetmap.ml
index 9968ee64271..79f3f846a0e 100644
--- a/src/plugins/value/domains/cvalue/cvalue_offsetmap.ml
+++ b/src/plugins/value/domains/cvalue/cvalue_offsetmap.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/cvalue_offsetmap.mli b/src/plugins/value/domains/cvalue/cvalue_offsetmap.mli
index 6b98b188659..b94f619280b 100644
--- a/src/plugins/value/domains/cvalue/cvalue_offsetmap.mli
+++ b/src/plugins/value/domains/cvalue/cvalue_offsetmap.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/cvalue_specification.ml b/src/plugins/value/domains/cvalue/cvalue_specification.ml
index 84609e39c11..d198f89c337 100644
--- a/src/plugins/value/domains/cvalue/cvalue_specification.ml
+++ b/src/plugins/value/domains/cvalue/cvalue_specification.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/cvalue_specification.mli b/src/plugins/value/domains/cvalue/cvalue_specification.mli
index 51fc5d40d29..3fd173c8959 100644
--- a/src/plugins/value/domains/cvalue/cvalue_specification.mli
+++ b/src/plugins/value/domains/cvalue/cvalue_specification.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/cvalue_transfer.ml b/src/plugins/value/domains/cvalue/cvalue_transfer.ml
index eca8881948b..1f2c6672623 100644
--- a/src/plugins/value/domains/cvalue/cvalue_transfer.ml
+++ b/src/plugins/value/domains/cvalue/cvalue_transfer.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/cvalue_transfer.mli b/src/plugins/value/domains/cvalue/cvalue_transfer.mli
index b74f2266beb..68359b9a1b6 100644
--- a/src/plugins/value/domains/cvalue/cvalue_transfer.mli
+++ b/src/plugins/value/domains/cvalue/cvalue_transfer.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/locals_scoping.ml b/src/plugins/value/domains/cvalue/locals_scoping.ml
index f0a3f4dfd10..4dd0181e5d2 100644
--- a/src/plugins/value/domains/cvalue/locals_scoping.ml
+++ b/src/plugins/value/domains/cvalue/locals_scoping.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/locals_scoping.mli b/src/plugins/value/domains/cvalue/locals_scoping.mli
index 3c54a127f1f..bc78ce6973d 100644
--- a/src/plugins/value/domains/cvalue/locals_scoping.mli
+++ b/src/plugins/value/domains/cvalue/locals_scoping.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/warn.ml b/src/plugins/value/domains/cvalue/warn.ml
index 9ec670d30b5..9f931b0f3c7 100644
--- a/src/plugins/value/domains/cvalue/warn.ml
+++ b/src/plugins/value/domains/cvalue/warn.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/cvalue/warn.mli b/src/plugins/value/domains/cvalue/warn.mli
index fbe11cc3ec5..d5cda03557b 100644
--- a/src/plugins/value/domains/cvalue/warn.mli
+++ b/src/plugins/value/domains/cvalue/warn.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/domain_builder.ml b/src/plugins/value/domains/domain_builder.ml
index b5561d8fea2..090ec84a602 100644
--- a/src/plugins/value/domains/domain_builder.ml
+++ b/src/plugins/value/domains/domain_builder.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/domain_builder.mli b/src/plugins/value/domains/domain_builder.mli
index 66613b44d54..0da4e4cd7b3 100644
--- a/src/plugins/value/domains/domain_builder.mli
+++ b/src/plugins/value/domains/domain_builder.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/domain_lift.ml b/src/plugins/value/domains/domain_lift.ml
index 46331911138..1b0b7938ca8 100644
--- a/src/plugins/value/domains/domain_lift.ml
+++ b/src/plugins/value/domains/domain_lift.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/domain_lift.mli b/src/plugins/value/domains/domain_lift.mli
index 2ecc19615db..2190f852399 100644
--- a/src/plugins/value/domains/domain_lift.mli
+++ b/src/plugins/value/domains/domain_lift.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/domain_mode.ml b/src/plugins/value/domains/domain_mode.ml
index 2d0788ba113..548024f8649 100644
--- a/src/plugins/value/domains/domain_mode.ml
+++ b/src/plugins/value/domains/domain_mode.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/domain_mode.mli b/src/plugins/value/domains/domain_mode.mli
index cbb9a07e2c7..1502ae6a30d 100644
--- a/src/plugins/value/domains/domain_mode.mli
+++ b/src/plugins/value/domains/domain_mode.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/domain_product.ml b/src/plugins/value/domains/domain_product.ml
index 391b3b6a801..875cf9c4b65 100644
--- a/src/plugins/value/domains/domain_product.ml
+++ b/src/plugins/value/domains/domain_product.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/domain_product.mli b/src/plugins/value/domains/domain_product.mli
index f2b1550980d..49ca1c6a62b 100644
--- a/src/plugins/value/domains/domain_product.mli
+++ b/src/plugins/value/domains/domain_product.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/domain_store.ml b/src/plugins/value/domains/domain_store.ml
index 544e0e7ab08..bc9c7ee8c08 100644
--- a/src/plugins/value/domains/domain_store.ml
+++ b/src/plugins/value/domains/domain_store.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/domain_store.mli b/src/plugins/value/domains/domain_store.mli
index b5c4439c959..2996416a978 100644
--- a/src/plugins/value/domains/domain_store.mli
+++ b/src/plugins/value/domains/domain_store.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/equality/equality.ml b/src/plugins/value/domains/equality/equality.ml
index 705cb62c1c2..0e4d6957809 100644
--- a/src/plugins/value/domains/equality/equality.ml
+++ b/src/plugins/value/domains/equality/equality.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/equality/equality.mli b/src/plugins/value/domains/equality/equality.mli
index 8d19f7d3e84..87ef746f453 100644
--- a/src/plugins/value/domains/equality/equality.mli
+++ b/src/plugins/value/domains/equality/equality.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/equality/equality_domain.ml b/src/plugins/value/domains/equality/equality_domain.ml
index 6475f861d9f..45d2dd6562d 100644
--- a/src/plugins/value/domains/equality/equality_domain.ml
+++ b/src/plugins/value/domains/equality/equality_domain.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/equality/equality_domain.mli b/src/plugins/value/domains/equality/equality_domain.mli
index 39aa467891e..7adbbb6f9e6 100644
--- a/src/plugins/value/domains/equality/equality_domain.mli
+++ b/src/plugins/value/domains/equality/equality_domain.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/gauges/gauges_domain.ml b/src/plugins/value/domains/gauges/gauges_domain.ml
index 543688032b0..2617cd55e4d 100644
--- a/src/plugins/value/domains/gauges/gauges_domain.ml
+++ b/src/plugins/value/domains/gauges/gauges_domain.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/gauges/gauges_domain.mli b/src/plugins/value/domains/gauges/gauges_domain.mli
index 86cf280f40c..eca9dfef455 100644
--- a/src/plugins/value/domains/gauges/gauges_domain.mli
+++ b/src/plugins/value/domains/gauges/gauges_domain.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/hcexprs.ml b/src/plugins/value/domains/hcexprs.ml
index d2e6e30cf79..b4fa7fa020a 100644
--- a/src/plugins/value/domains/hcexprs.ml
+++ b/src/plugins/value/domains/hcexprs.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/hcexprs.mli b/src/plugins/value/domains/hcexprs.mli
index bc7328702f0..9df6cc5cf9a 100644
--- a/src/plugins/value/domains/hcexprs.mli
+++ b/src/plugins/value/domains/hcexprs.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/inout_domain.ml b/src/plugins/value/domains/inout_domain.ml
index 5bbf25ba1ff..15e5f00ee7c 100644
--- a/src/plugins/value/domains/inout_domain.ml
+++ b/src/plugins/value/domains/inout_domain.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/inout_domain.mli b/src/plugins/value/domains/inout_domain.mli
index cb9049e93fe..cabe1a43694 100644
--- a/src/plugins/value/domains/inout_domain.mli
+++ b/src/plugins/value/domains/inout_domain.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/numerors/numerors_domain.ml b/src/plugins/value/domains/numerors/numerors_domain.ml
index 6fe3f9da06a..cafa9a5f1da 100644
--- a/src/plugins/value/domains/numerors/numerors_domain.ml
+++ b/src/plugins/value/domains/numerors/numerors_domain.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/numerors/numerors_domain.mli b/src/plugins/value/domains/numerors/numerors_domain.mli
index 7d1a78bc4f0..8f8c7aa04dd 100644
--- a/src/plugins/value/domains/numerors/numerors_domain.mli
+++ b/src/plugins/value/domains/numerors/numerors_domain.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/octagons.ml b/src/plugins/value/domains/octagons.ml
index b1faca4b4d6..efce9ddb734 100644
--- a/src/plugins/value/domains/octagons.ml
+++ b/src/plugins/value/domains/octagons.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/octagons.mli b/src/plugins/value/domains/octagons.mli
index 886e8c5f969..de7e2068dc1 100644
--- a/src/plugins/value/domains/octagons.mli
+++ b/src/plugins/value/domains/octagons.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/offsm_domain.ml b/src/plugins/value/domains/offsm_domain.ml
index 3a09bd25906..2a4d4854be3 100644
--- a/src/plugins/value/domains/offsm_domain.ml
+++ b/src/plugins/value/domains/offsm_domain.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/offsm_domain.mli b/src/plugins/value/domains/offsm_domain.mli
index 41dac4592a3..9a5a802f2b7 100644
--- a/src/plugins/value/domains/offsm_domain.mli
+++ b/src/plugins/value/domains/offsm_domain.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/powerset.ml b/src/plugins/value/domains/powerset.ml
index 41d64ba83cf..d9bd4652c55 100644
--- a/src/plugins/value/domains/powerset.ml
+++ b/src/plugins/value/domains/powerset.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/powerset.mli b/src/plugins/value/domains/powerset.mli
index 973b989214c..7b1d0a56f64 100644
--- a/src/plugins/value/domains/powerset.mli
+++ b/src/plugins/value/domains/powerset.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/printer_domain.ml b/src/plugins/value/domains/printer_domain.ml
index 1cbaaffae5a..9bbed31dc02 100644
--- a/src/plugins/value/domains/printer_domain.ml
+++ b/src/plugins/value/domains/printer_domain.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/printer_domain.mli b/src/plugins/value/domains/printer_domain.mli
index 26467d6f235..3f1f986eff1 100644
--- a/src/plugins/value/domains/printer_domain.mli
+++ b/src/plugins/value/domains/printer_domain.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/sign_domain.ml b/src/plugins/value/domains/sign_domain.ml
index 9f6eb1f302d..54a97a9f678 100644
--- a/src/plugins/value/domains/sign_domain.ml
+++ b/src/plugins/value/domains/sign_domain.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/sign_domain.mli b/src/plugins/value/domains/sign_domain.mli
index b60f222267c..6e86c06b09f 100644
--- a/src/plugins/value/domains/sign_domain.mli
+++ b/src/plugins/value/domains/sign_domain.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/simple_memory.ml b/src/plugins/value/domains/simple_memory.ml
index f2e84f2c345..6cabd4da3f2 100644
--- a/src/plugins/value/domains/simple_memory.ml
+++ b/src/plugins/value/domains/simple_memory.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/simple_memory.mli b/src/plugins/value/domains/simple_memory.mli
index e6b39e6151b..fec2e4c8388 100644
--- a/src/plugins/value/domains/simple_memory.mli
+++ b/src/plugins/value/domains/simple_memory.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/simpler_domains.mli b/src/plugins/value/domains/simpler_domains.mli
index 55bd03ccca6..37a1209a79b 100644
--- a/src/plugins/value/domains/simpler_domains.mli
+++ b/src/plugins/value/domains/simpler_domains.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/symbolic_locs.ml b/src/plugins/value/domains/symbolic_locs.ml
index 9464308a6e2..61a33252c51 100644
--- a/src/plugins/value/domains/symbolic_locs.ml
+++ b/src/plugins/value/domains/symbolic_locs.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/symbolic_locs.mli b/src/plugins/value/domains/symbolic_locs.mli
index 6dcd99b01a6..0cd8a8b410d 100644
--- a/src/plugins/value/domains/symbolic_locs.mli
+++ b/src/plugins/value/domains/symbolic_locs.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/traces_domain.ml b/src/plugins/value/domains/traces_domain.ml
index e655053940e..5dd2ac5bb9d 100644
--- a/src/plugins/value/domains/traces_domain.ml
+++ b/src/plugins/value/domains/traces_domain.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/traces_domain.mli b/src/plugins/value/domains/traces_domain.mli
index aed49cad6c7..365ae83e371 100644
--- a/src/plugins/value/domains/traces_domain.mli
+++ b/src/plugins/value/domains/traces_domain.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/unit_domain.ml b/src/plugins/value/domains/unit_domain.ml
index c12cdfc9f3c..75a3db21286 100644
--- a/src/plugins/value/domains/unit_domain.ml
+++ b/src/plugins/value/domains/unit_domain.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/domains/unit_domain.mli b/src/plugins/value/domains/unit_domain.mli
index 3ccbbc5d683..97ede0e6e89 100644
--- a/src/plugins/value/domains/unit_domain.mli
+++ b/src/plugins/value/domains/unit_domain.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/abstractions.ml b/src/plugins/value/engine/abstractions.ml
index 67159ad19c0..5c01025c3d8 100644
--- a/src/plugins/value/engine/abstractions.ml
+++ b/src/plugins/value/engine/abstractions.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/abstractions.mli b/src/plugins/value/engine/abstractions.mli
index 8c98ee9b149..2ba4de799b6 100644
--- a/src/plugins/value/engine/abstractions.mli
+++ b/src/plugins/value/engine/abstractions.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/analysis.ml b/src/plugins/value/engine/analysis.ml
index d1d807098e3..5cb98e37e08 100644
--- a/src/plugins/value/engine/analysis.ml
+++ b/src/plugins/value/engine/analysis.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/analysis.mli b/src/plugins/value/engine/analysis.mli
index 50b943ccad7..732d307bd55 100644
--- a/src/plugins/value/engine/analysis.mli
+++ b/src/plugins/value/engine/analysis.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/compute_functions.ml b/src/plugins/value/engine/compute_functions.ml
index de253c37eb8..b41b8cc4851 100644
--- a/src/plugins/value/engine/compute_functions.ml
+++ b/src/plugins/value/engine/compute_functions.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/compute_functions.mli b/src/plugins/value/engine/compute_functions.mli
index f882469735e..b4c26c4f4f7 100644
--- a/src/plugins/value/engine/compute_functions.mli
+++ b/src/plugins/value/engine/compute_functions.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/evaluation.ml b/src/plugins/value/engine/evaluation.ml
index 51439e74e98..5e0eee53d7c 100644
--- a/src/plugins/value/engine/evaluation.ml
+++ b/src/plugins/value/engine/evaluation.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/evaluation.mli b/src/plugins/value/engine/evaluation.mli
index f7a263cab8c..5af7f90ddec 100644
--- a/src/plugins/value/engine/evaluation.mli
+++ b/src/plugins/value/engine/evaluation.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/initialization.ml b/src/plugins/value/engine/initialization.ml
index 15fa2d09c74..2be609d248d 100644
--- a/src/plugins/value/engine/initialization.ml
+++ b/src/plugins/value/engine/initialization.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/initialization.mli b/src/plugins/value/engine/initialization.mli
index b663ecbdfa1..55e5eb2fde4 100644
--- a/src/plugins/value/engine/initialization.mli
+++ b/src/plugins/value/engine/initialization.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/iterator.ml b/src/plugins/value/engine/iterator.ml
index a7862968059..8de2b356376 100644
--- a/src/plugins/value/engine/iterator.ml
+++ b/src/plugins/value/engine/iterator.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/iterator.mli b/src/plugins/value/engine/iterator.mli
index 0c534749680..d11bb546252 100644
--- a/src/plugins/value/engine/iterator.mli
+++ b/src/plugins/value/engine/iterator.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/mem_exec.ml b/src/plugins/value/engine/mem_exec.ml
index 31f4b9fb215..816dfc26121 100644
--- a/src/plugins/value/engine/mem_exec.ml
+++ b/src/plugins/value/engine/mem_exec.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/mem_exec.mli b/src/plugins/value/engine/mem_exec.mli
index c9d8b2c628d..40884cad990 100644
--- a/src/plugins/value/engine/mem_exec.mli
+++ b/src/plugins/value/engine/mem_exec.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/recursion.ml b/src/plugins/value/engine/recursion.ml
index b68df50c084..99d150435c7 100644
--- a/src/plugins/value/engine/recursion.ml
+++ b/src/plugins/value/engine/recursion.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/recursion.mli b/src/plugins/value/engine/recursion.mli
index e27c583d251..3a3255c47d1 100644
--- a/src/plugins/value/engine/recursion.mli
+++ b/src/plugins/value/engine/recursion.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/subdivided_evaluation.ml b/src/plugins/value/engine/subdivided_evaluation.ml
index f8cd1508524..5add03da573 100644
--- a/src/plugins/value/engine/subdivided_evaluation.ml
+++ b/src/plugins/value/engine/subdivided_evaluation.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/subdivided_evaluation.mli b/src/plugins/value/engine/subdivided_evaluation.mli
index fb365b9a766..490832670d5 100644
--- a/src/plugins/value/engine/subdivided_evaluation.mli
+++ b/src/plugins/value/engine/subdivided_evaluation.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/transfer_logic.ml b/src/plugins/value/engine/transfer_logic.ml
index 2293ed64aef..b179113b705 100644
--- a/src/plugins/value/engine/transfer_logic.ml
+++ b/src/plugins/value/engine/transfer_logic.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/transfer_logic.mli b/src/plugins/value/engine/transfer_logic.mli
index f77631a9164..798cb8a99cc 100644
--- a/src/plugins/value/engine/transfer_logic.mli
+++ b/src/plugins/value/engine/transfer_logic.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/transfer_specification.ml b/src/plugins/value/engine/transfer_specification.ml
index 331556aa7ae..835e5401bc4 100644
--- a/src/plugins/value/engine/transfer_specification.ml
+++ b/src/plugins/value/engine/transfer_specification.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/transfer_specification.mli b/src/plugins/value/engine/transfer_specification.mli
index c867f008f32..06af47c468c 100644
--- a/src/plugins/value/engine/transfer_specification.mli
+++ b/src/plugins/value/engine/transfer_specification.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/transfer_stmt.ml b/src/plugins/value/engine/transfer_stmt.ml
index 953d273cd33..34ea9d02357 100644
--- a/src/plugins/value/engine/transfer_stmt.ml
+++ b/src/plugins/value/engine/transfer_stmt.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/engine/transfer_stmt.mli b/src/plugins/value/engine/transfer_stmt.mli
index 8b0055ab0f7..c280d047b07 100644
--- a/src/plugins/value/engine/transfer_stmt.mli
+++ b/src/plugins/value/engine/transfer_stmt.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/eval.ml b/src/plugins/value/eval.ml
index 6aa0b6a0fe0..2702268a75f 100644
--- a/src/plugins/value/eval.ml
+++ b/src/plugins/value/eval.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/eval.mli b/src/plugins/value/eval.mli
index b7de21de5c9..28301c46e79 100644
--- a/src/plugins/value/eval.mli
+++ b/src/plugins/value/eval.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/gui_files/gui_callstacks_filters.ml b/src/plugins/value/gui_files/gui_callstacks_filters.ml
index 7faeecbb965..45159125a7a 100644
--- a/src/plugins/value/gui_files/gui_callstacks_filters.ml
+++ b/src/plugins/value/gui_files/gui_callstacks_filters.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/gui_files/gui_callstacks_filters.mli b/src/plugins/value/gui_files/gui_callstacks_filters.mli
index 42aca42f2bc..852fa0e8e88 100644
--- a/src/plugins/value/gui_files/gui_callstacks_filters.mli
+++ b/src/plugins/value/gui_files/gui_callstacks_filters.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/gui_files/gui_callstacks_manager.ml b/src/plugins/value/gui_files/gui_callstacks_manager.ml
index 10331bacd8e..08358dda36a 100644
--- a/src/plugins/value/gui_files/gui_callstacks_manager.ml
+++ b/src/plugins/value/gui_files/gui_callstacks_manager.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/gui_files/gui_callstacks_manager.mli b/src/plugins/value/gui_files/gui_callstacks_manager.mli
index 6d55a563e6c..831e089c6a7 100644
--- a/src/plugins/value/gui_files/gui_callstacks_manager.mli
+++ b/src/plugins/value/gui_files/gui_callstacks_manager.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/gui_files/gui_eval.ml b/src/plugins/value/gui_files/gui_eval.ml
index 37fcedc58ed..612bb0fc526 100644
--- a/src/plugins/value/gui_files/gui_eval.ml
+++ b/src/plugins/value/gui_files/gui_eval.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/gui_files/gui_eval.mli b/src/plugins/value/gui_files/gui_eval.mli
index 4ea436f61b7..4c978cb1e61 100644
--- a/src/plugins/value/gui_files/gui_eval.mli
+++ b/src/plugins/value/gui_files/gui_eval.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/gui_files/gui_red.ml b/src/plugins/value/gui_files/gui_red.ml
index f0b81cb0d84..b0b1538a7e7 100644
--- a/src/plugins/value/gui_files/gui_red.ml
+++ b/src/plugins/value/gui_files/gui_red.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/gui_files/gui_red.mli b/src/plugins/value/gui_files/gui_red.mli
index 8e6af4ec542..240cb5ae33e 100644
--- a/src/plugins/value/gui_files/gui_red.mli
+++ b/src/plugins/value/gui_files/gui_red.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/gui_files/gui_types.ml b/src/plugins/value/gui_files/gui_types.ml
index e6b64d5a8e7..5c9a7d6d9c8 100644
--- a/src/plugins/value/gui_files/gui_types.ml
+++ b/src/plugins/value/gui_files/gui_types.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/gui_files/gui_types.mli b/src/plugins/value/gui_files/gui_types.mli
index 132a55b5e27..11acc2e01e8 100644
--- a/src/plugins/value/gui_files/gui_types.mli
+++ b/src/plugins/value/gui_files/gui_types.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/gui_files/register_gui.ml b/src/plugins/value/gui_files/register_gui.ml
index 3e6c0551b74..5adf217e9f9 100644
--- a/src/plugins/value/gui_files/register_gui.ml
+++ b/src/plugins/value/gui_files/register_gui.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/gui_files/register_gui.mli b/src/plugins/value/gui_files/register_gui.mli
index 906ed74c2c3..2149cd3cb50 100644
--- a/src/plugins/value/gui_files/register_gui.mli
+++ b/src/plugins/value/gui_files/register_gui.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/legacy/eval_annots.ml b/src/plugins/value/legacy/eval_annots.ml
index f9c730b433d..ce3237d2cf9 100644
--- a/src/plugins/value/legacy/eval_annots.ml
+++ b/src/plugins/value/legacy/eval_annots.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/legacy/eval_annots.mli b/src/plugins/value/legacy/eval_annots.mli
index 7364ded3309..03fbb8c5154 100644
--- a/src/plugins/value/legacy/eval_annots.mli
+++ b/src/plugins/value/legacy/eval_annots.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/legacy/eval_op.ml b/src/plugins/value/legacy/eval_op.ml
index 2e8edeb2562..1cc14743aa7 100644
--- a/src/plugins/value/legacy/eval_op.ml
+++ b/src/plugins/value/legacy/eval_op.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/legacy/eval_op.mli b/src/plugins/value/legacy/eval_op.mli
index d1c052ac8f0..9e0e02ed42f 100644
--- a/src/plugins/value/legacy/eval_op.mli
+++ b/src/plugins/value/legacy/eval_op.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/legacy/eval_terms.ml b/src/plugins/value/legacy/eval_terms.ml
index 462e57405d3..4a19ba063da 100644
--- a/src/plugins/value/legacy/eval_terms.ml
+++ b/src/plugins/value/legacy/eval_terms.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/legacy/eval_terms.mli b/src/plugins/value/legacy/eval_terms.mli
index 4e61b9d1ad3..e63e6a53180 100644
--- a/src/plugins/value/legacy/eval_terms.mli
+++ b/src/plugins/value/legacy/eval_terms.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/legacy/function_args.ml b/src/plugins/value/legacy/function_args.ml
index a85212df5aa..316201b1fd5 100644
--- a/src/plugins/value/legacy/function_args.ml
+++ b/src/plugins/value/legacy/function_args.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/legacy/function_args.mli b/src/plugins/value/legacy/function_args.mli
index 71e72a90a70..5afc0f74bf7 100644
--- a/src/plugins/value/legacy/function_args.mli
+++ b/src/plugins/value/legacy/function_args.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/partitioning/auto_loop_unroll.ml b/src/plugins/value/partitioning/auto_loop_unroll.ml
index b2c114233e6..ec5d1936afa 100644
--- a/src/plugins/value/partitioning/auto_loop_unroll.ml
+++ b/src/plugins/value/partitioning/auto_loop_unroll.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/partitioning/auto_loop_unroll.mli b/src/plugins/value/partitioning/auto_loop_unroll.mli
index 096074a44a9..81d4ccab98e 100644
--- a/src/plugins/value/partitioning/auto_loop_unroll.mli
+++ b/src/plugins/value/partitioning/auto_loop_unroll.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/partitioning/partition.ml b/src/plugins/value/partitioning/partition.ml
index f51bc89c5e1..fe65ccb612e 100644
--- a/src/plugins/value/partitioning/partition.ml
+++ b/src/plugins/value/partitioning/partition.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/partitioning/partition.mli b/src/plugins/value/partitioning/partition.mli
index 5e674a0764a..a5a3a569b37 100644
--- a/src/plugins/value/partitioning/partition.mli
+++ b/src/plugins/value/partitioning/partition.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/partitioning/partitioning_index.ml b/src/plugins/value/partitioning/partitioning_index.ml
index abb4f942103..f586b6cd20e 100644
--- a/src/plugins/value/partitioning/partitioning_index.ml
+++ b/src/plugins/value/partitioning/partitioning_index.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/partitioning/partitioning_index.mli b/src/plugins/value/partitioning/partitioning_index.mli
index 81f323cd28f..844b40468b9 100644
--- a/src/plugins/value/partitioning/partitioning_index.mli
+++ b/src/plugins/value/partitioning/partitioning_index.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/partitioning/partitioning_parameters.ml b/src/plugins/value/partitioning/partitioning_parameters.ml
index 22658b485c9..ae5d526381b 100644
--- a/src/plugins/value/partitioning/partitioning_parameters.ml
+++ b/src/plugins/value/partitioning/partitioning_parameters.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/partitioning/partitioning_parameters.mli b/src/plugins/value/partitioning/partitioning_parameters.mli
index 12155e2638f..891a2b72b6f 100644
--- a/src/plugins/value/partitioning/partitioning_parameters.mli
+++ b/src/plugins/value/partitioning/partitioning_parameters.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/partitioning/per_stmt_slevel.ml b/src/plugins/value/partitioning/per_stmt_slevel.ml
index cf9f8d15a74..8ee8d668fcd 100644
--- a/src/plugins/value/partitioning/per_stmt_slevel.ml
+++ b/src/plugins/value/partitioning/per_stmt_slevel.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/partitioning/per_stmt_slevel.mli b/src/plugins/value/partitioning/per_stmt_slevel.mli
index 393f1c42780..080c384c42f 100644
--- a/src/plugins/value/partitioning/per_stmt_slevel.mli
+++ b/src/plugins/value/partitioning/per_stmt_slevel.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/partitioning/split_return.ml b/src/plugins/value/partitioning/split_return.ml
index fd693fcffd6..c705fb09d4c 100644
--- a/src/plugins/value/partitioning/split_return.ml
+++ b/src/plugins/value/partitioning/split_return.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/partitioning/split_return.mli b/src/plugins/value/partitioning/split_return.mli
index a0d0f630d4d..0f0c1e674e5 100644
--- a/src/plugins/value/partitioning/split_return.mli
+++ b/src/plugins/value/partitioning/split_return.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/partitioning/split_strategy.ml b/src/plugins/value/partitioning/split_strategy.ml
index 2ddccb40e88..513143595d0 100644
--- a/src/plugins/value/partitioning/split_strategy.ml
+++ b/src/plugins/value/partitioning/split_strategy.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/partitioning/split_strategy.mli b/src/plugins/value/partitioning/split_strategy.mli
index 9ddb08e5912..f7b1dfe85e2 100644
--- a/src/plugins/value/partitioning/split_strategy.mli
+++ b/src/plugins/value/partitioning/split_strategy.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/partitioning/trace_partitioning.ml b/src/plugins/value/partitioning/trace_partitioning.ml
index e84524ecd9f..9ba46bb5eef 100644
--- a/src/plugins/value/partitioning/trace_partitioning.ml
+++ b/src/plugins/value/partitioning/trace_partitioning.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/partitioning/trace_partitioning.mli b/src/plugins/value/partitioning/trace_partitioning.mli
index 4e2325b3b96..0fbd96f2888 100644
--- a/src/plugins/value/partitioning/trace_partitioning.mli
+++ b/src/plugins/value/partitioning/trace_partitioning.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/register.ml b/src/plugins/value/register.ml
index 8679669d8ec..9d8b1c670b1 100644
--- a/src/plugins/value/register.ml
+++ b/src/plugins/value/register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/register.mli b/src/plugins/value/register.mli
index 7c409155bf2..c27dd17263f 100644
--- a/src/plugins/value/register.mli
+++ b/src/plugins/value/register.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/abstract.ml b/src/plugins/value/utils/abstract.ml
index cf1199cb7e3..b7158ae6e3f 100644
--- a/src/plugins/value/utils/abstract.ml
+++ b/src/plugins/value/utils/abstract.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/abstract.mli b/src/plugins/value/utils/abstract.mli
index cd76719aaff..643159a7b00 100644
--- a/src/plugins/value/utils/abstract.mli
+++ b/src/plugins/value/utils/abstract.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/backward_formals.ml b/src/plugins/value/utils/backward_formals.ml
index ccf5ade43cb..e01d275dd7f 100644
--- a/src/plugins/value/utils/backward_formals.ml
+++ b/src/plugins/value/utils/backward_formals.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/backward_formals.mli b/src/plugins/value/utils/backward_formals.mli
index 4f6e930e466..08e9451f5a6 100644
--- a/src/plugins/value/utils/backward_formals.mli
+++ b/src/plugins/value/utils/backward_formals.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/eva_annotations.ml b/src/plugins/value/utils/eva_annotations.ml
index 7fea184b538..e17f1d03ffd 100644
--- a/src/plugins/value/utils/eva_annotations.ml
+++ b/src/plugins/value/utils/eva_annotations.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/eva_annotations.mli b/src/plugins/value/utils/eva_annotations.mli
index ab29469ee71..84f1480bdad 100644
--- a/src/plugins/value/utils/eva_annotations.mli
+++ b/src/plugins/value/utils/eva_annotations.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/eval_typ.ml b/src/plugins/value/utils/eval_typ.ml
index 9fa86ff780d..bbd8633c2ed 100644
--- a/src/plugins/value/utils/eval_typ.ml
+++ b/src/plugins/value/utils/eval_typ.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/eval_typ.mli b/src/plugins/value/utils/eval_typ.mli
index de900fa153f..e3d24e61829 100644
--- a/src/plugins/value/utils/eval_typ.mli
+++ b/src/plugins/value/utils/eval_typ.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/library_functions.ml b/src/plugins/value/utils/library_functions.ml
index 7e5ff93a018..d78a8601b1a 100644
--- a/src/plugins/value/utils/library_functions.ml
+++ b/src/plugins/value/utils/library_functions.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/library_functions.mli b/src/plugins/value/utils/library_functions.mli
index 656e1256f41..3e1e41a9712 100644
--- a/src/plugins/value/utils/library_functions.mli
+++ b/src/plugins/value/utils/library_functions.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/mark_noresults.ml b/src/plugins/value/utils/mark_noresults.ml
index cbd00d938af..0c31fbf0eda 100644
--- a/src/plugins/value/utils/mark_noresults.ml
+++ b/src/plugins/value/utils/mark_noresults.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/red_statuses.ml b/src/plugins/value/utils/red_statuses.ml
index b9c26d535b4..8657a9dae7c 100644
--- a/src/plugins/value/utils/red_statuses.ml
+++ b/src/plugins/value/utils/red_statuses.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/red_statuses.mli b/src/plugins/value/utils/red_statuses.mli
index 8010d9635fc..b8443410be9 100644
--- a/src/plugins/value/utils/red_statuses.mli
+++ b/src/plugins/value/utils/red_statuses.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/structure.ml b/src/plugins/value/utils/structure.ml
index a3920f589d4..3af1e2b8856 100644
--- a/src/plugins/value/utils/structure.ml
+++ b/src/plugins/value/utils/structure.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/structure.mli b/src/plugins/value/utils/structure.mli
index 96555303c0f..af7619b22a1 100644
--- a/src/plugins/value/utils/structure.mli
+++ b/src/plugins/value/utils/structure.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/unit_tests.ml b/src/plugins/value/utils/unit_tests.ml
index 043a2a726fa..50ef12be983 100644
--- a/src/plugins/value/utils/unit_tests.ml
+++ b/src/plugins/value/utils/unit_tests.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/unit_tests.mli b/src/plugins/value/utils/unit_tests.mli
index 8783260b33a..cf1fae9cef8 100644
--- a/src/plugins/value/utils/unit_tests.mli
+++ b/src/plugins/value/utils/unit_tests.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/value_perf.ml b/src/plugins/value/utils/value_perf.ml
index de12cb45574..e8f0be51619 100644
--- a/src/plugins/value/utils/value_perf.ml
+++ b/src/plugins/value/utils/value_perf.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/value_perf.mli b/src/plugins/value/utils/value_perf.mli
index 565d30cf375..67accb6199a 100644
--- a/src/plugins/value/utils/value_perf.mli
+++ b/src/plugins/value/utils/value_perf.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/value_results.ml b/src/plugins/value/utils/value_results.ml
index 8a30f2895b3..9ca7a64e5c0 100644
--- a/src/plugins/value/utils/value_results.ml
+++ b/src/plugins/value/utils/value_results.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/value_results.mli b/src/plugins/value/utils/value_results.mli
index fad2755468a..512f45ebeb5 100644
--- a/src/plugins/value/utils/value_results.mli
+++ b/src/plugins/value/utils/value_results.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/value_util.ml b/src/plugins/value/utils/value_util.ml
index 436f349721f..b6826afb7ea 100644
--- a/src/plugins/value/utils/value_util.ml
+++ b/src/plugins/value/utils/value_util.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/value_util.mli b/src/plugins/value/utils/value_util.mli
index dc1e6de459c..3ae37341f50 100644
--- a/src/plugins/value/utils/value_util.mli
+++ b/src/plugins/value/utils/value_util.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/widen.ml b/src/plugins/value/utils/widen.ml
index 81628376ac0..602702acd66 100644
--- a/src/plugins/value/utils/widen.ml
+++ b/src/plugins/value/utils/widen.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/widen.mli b/src/plugins/value/utils/widen.mli
index 96c5579306f..4e3e0ffc615 100644
--- a/src/plugins/value/utils/widen.mli
+++ b/src/plugins/value/utils/widen.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/widen_hints_ext.ml b/src/plugins/value/utils/widen_hints_ext.ml
index 449c0c67520..f7e2aef59a1 100644
--- a/src/plugins/value/utils/widen_hints_ext.ml
+++ b/src/plugins/value/utils/widen_hints_ext.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/widen_hints_ext.mli b/src/plugins/value/utils/widen_hints_ext.mli
index 6d08a8cc100..e17c19f6d01 100644
--- a/src/plugins/value/utils/widen_hints_ext.mli
+++ b/src/plugins/value/utils/widen_hints_ext.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/value_parameters.ml b/src/plugins/value/value_parameters.ml
index 122835c78c2..7714801f87b 100644
--- a/src/plugins/value/value_parameters.ml
+++ b/src/plugins/value/value_parameters.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/value_parameters.mli b/src/plugins/value/value_parameters.mli
index 23816c0c964..0a294b1e8c1 100644
--- a/src/plugins/value/value_parameters.mli
+++ b/src/plugins/value/value_parameters.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/abstract_location.mli b/src/plugins/value/values/abstract_location.mli
index 40be2cbe942..df2247048be 100644
--- a/src/plugins/value/values/abstract_location.mli
+++ b/src/plugins/value/values/abstract_location.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/abstract_value.mli b/src/plugins/value/values/abstract_value.mli
index bd42be08f83..05e465434ff 100644
--- a/src/plugins/value/values/abstract_value.mli
+++ b/src/plugins/value/values/abstract_value.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/cvalue_backward.ml b/src/plugins/value/values/cvalue_backward.ml
index c62d0748378..63d54e258d3 100644
--- a/src/plugins/value/values/cvalue_backward.ml
+++ b/src/plugins/value/values/cvalue_backward.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/cvalue_backward.mli b/src/plugins/value/values/cvalue_backward.mli
index 5eb0872b0e4..7118e2f14ac 100644
--- a/src/plugins/value/values/cvalue_backward.mli
+++ b/src/plugins/value/values/cvalue_backward.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/cvalue_forward.ml b/src/plugins/value/values/cvalue_forward.ml
index 91263cb3858..532fc15103f 100644
--- a/src/plugins/value/values/cvalue_forward.ml
+++ b/src/plugins/value/values/cvalue_forward.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/cvalue_forward.mli b/src/plugins/value/values/cvalue_forward.mli
index 07fb2ef7591..9a28e13333f 100644
--- a/src/plugins/value/values/cvalue_forward.mli
+++ b/src/plugins/value/values/cvalue_forward.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/location_lift.ml b/src/plugins/value/values/location_lift.ml
index 3ae974cdcb1..a952772571a 100644
--- a/src/plugins/value/values/location_lift.ml
+++ b/src/plugins/value/values/location_lift.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/location_lift.mli b/src/plugins/value/values/location_lift.mli
index 69b00baa7e9..2eae797b708 100644
--- a/src/plugins/value/values/location_lift.mli
+++ b/src/plugins/value/values/location_lift.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/main_locations.ml b/src/plugins/value/values/main_locations.ml
index 298f1b16986..7aab78471df 100644
--- a/src/plugins/value/values/main_locations.ml
+++ b/src/plugins/value/values/main_locations.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/main_locations.mli b/src/plugins/value/values/main_locations.mli
index 84f9bb50cce..43eea48d8f9 100644
--- a/src/plugins/value/values/main_locations.mli
+++ b/src/plugins/value/values/main_locations.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/main_values.ml b/src/plugins/value/values/main_values.ml
index 9218b0a03a3..b21f868739e 100644
--- a/src/plugins/value/values/main_values.ml
+++ b/src/plugins/value/values/main_values.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/main_values.mli b/src/plugins/value/values/main_values.mli
index 5b3ac9d1bb9..58c564b1f15 100644
--- a/src/plugins/value/values/main_values.mli
+++ b/src/plugins/value/values/main_values.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/numerors/numerors_arithmetics.ml b/src/plugins/value/values/numerors/numerors_arithmetics.ml
index d2cea72a638..85320659dbd 100644
--- a/src/plugins/value/values/numerors/numerors_arithmetics.ml
+++ b/src/plugins/value/values/numerors/numerors_arithmetics.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/numerors/numerors_arithmetics.mli b/src/plugins/value/values/numerors/numerors_arithmetics.mli
index 7fcad901cc4..2c628a6766f 100644
--- a/src/plugins/value/values/numerors/numerors_arithmetics.mli
+++ b/src/plugins/value/values/numerors/numerors_arithmetics.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/numerors/numerors_float.ml b/src/plugins/value/values/numerors/numerors_float.ml
index 5df291e63cf..b3816466d61 100644
--- a/src/plugins/value/values/numerors/numerors_float.ml
+++ b/src/plugins/value/values/numerors/numerors_float.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/numerors/numerors_float.mli b/src/plugins/value/values/numerors/numerors_float.mli
index 06bdbcb58bc..51119e835c2 100644
--- a/src/plugins/value/values/numerors/numerors_float.mli
+++ b/src/plugins/value/values/numerors/numerors_float.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/numerors/numerors_interval.ml b/src/plugins/value/values/numerors/numerors_interval.ml
index 1354d6dbc46..98d2563bc6b 100644
--- a/src/plugins/value/values/numerors/numerors_interval.ml
+++ b/src/plugins/value/values/numerors/numerors_interval.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/numerors/numerors_interval.mli b/src/plugins/value/values/numerors/numerors_interval.mli
index 1a4ea5b7545..453326ea424 100644
--- a/src/plugins/value/values/numerors/numerors_interval.mli
+++ b/src/plugins/value/values/numerors/numerors_interval.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/numerors/numerors_utils.ml b/src/plugins/value/values/numerors/numerors_utils.ml
index 41d0d26e91e..a58c8c8d170 100644
--- a/src/plugins/value/values/numerors/numerors_utils.ml
+++ b/src/plugins/value/values/numerors/numerors_utils.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/numerors/numerors_utils.mli b/src/plugins/value/values/numerors/numerors_utils.mli
index 4a2ad32e1d8..ac1f5ae3e0d 100644
--- a/src/plugins/value/values/numerors/numerors_utils.mli
+++ b/src/plugins/value/values/numerors/numerors_utils.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/numerors/numerors_value.ml b/src/plugins/value/values/numerors/numerors_value.ml
index 443a2dd4434..2832d06cb35 100644
--- a/src/plugins/value/values/numerors/numerors_value.ml
+++ b/src/plugins/value/values/numerors/numerors_value.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/numerors/numerors_value.mli b/src/plugins/value/values/numerors/numerors_value.mli
index 1a20cd917ed..7a9b334f2ec 100644
--- a/src/plugins/value/values/numerors/numerors_value.mli
+++ b/src/plugins/value/values/numerors/numerors_value.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/offsm_value.ml b/src/plugins/value/values/offsm_value.ml
index d6d7995ae35..b46b11002e8 100644
--- a/src/plugins/value/values/offsm_value.ml
+++ b/src/plugins/value/values/offsm_value.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/offsm_value.mli b/src/plugins/value/values/offsm_value.mli
index b99aabdacb0..b2a963bb838 100644
--- a/src/plugins/value/values/offsm_value.mli
+++ b/src/plugins/value/values/offsm_value.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/sign_value.ml b/src/plugins/value/values/sign_value.ml
index 1a119b74338..b9f59f90e27 100644
--- a/src/plugins/value/values/sign_value.ml
+++ b/src/plugins/value/values/sign_value.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/sign_value.mli b/src/plugins/value/values/sign_value.mli
index 94dd0faa838..6b65d1dd986 100644
--- a/src/plugins/value/values/sign_value.mli
+++ b/src/plugins/value/values/sign_value.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/value_product.ml b/src/plugins/value/values/value_product.ml
index 99d6ff34751..7e89f1fc751 100644
--- a/src/plugins/value/values/value_product.ml
+++ b/src/plugins/value/values/value_product.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/values/value_product.mli b/src/plugins/value/values/value_product.mli
index 4ac4f1fdc61..b3bda1aa499 100644
--- a/src/plugins/value/values/value_product.mli
+++ b/src/plugins/value/values/value_product.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value_types/cilE.ml b/src/plugins/value_types/cilE.ml
index 2eac416c71b..30bd4bf569d 100644
--- a/src/plugins/value_types/cilE.ml
+++ b/src/plugins/value_types/cilE.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value_types/cilE.mli b/src/plugins/value_types/cilE.mli
index c1618e8154b..f649b3afaec 100644
--- a/src/plugins/value_types/cilE.mli
+++ b/src/plugins/value_types/cilE.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value_types/cvalue.ml b/src/plugins/value_types/cvalue.ml
index 21270215c44..a545314edfe 100644
--- a/src/plugins/value_types/cvalue.ml
+++ b/src/plugins/value_types/cvalue.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value_types/cvalue.mli b/src/plugins/value_types/cvalue.mli
index 0b55de0ca3e..a5c93243c0b 100644
--- a/src/plugins/value_types/cvalue.mli
+++ b/src/plugins/value_types/cvalue.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value_types/function_Froms.ml b/src/plugins/value_types/function_Froms.ml
index 22972547f68..1828c61c02b 100644
--- a/src/plugins/value_types/function_Froms.ml
+++ b/src/plugins/value_types/function_Froms.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value_types/function_Froms.mli b/src/plugins/value_types/function_Froms.mli
index 621de68ad76..5ee9b0da8b6 100644
--- a/src/plugins/value_types/function_Froms.mli
+++ b/src/plugins/value_types/function_Froms.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value_types/inout_type.ml b/src/plugins/value_types/inout_type.ml
index 3d51f3fc5e6..195934ed5d1 100644
--- a/src/plugins/value_types/inout_type.ml
+++ b/src/plugins/value_types/inout_type.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value_types/inout_type.mli b/src/plugins/value_types/inout_type.mli
index 70cdd0134e6..b9d9b89ea38 100644
--- a/src/plugins/value_types/inout_type.mli
+++ b/src/plugins/value_types/inout_type.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value_types/precise_locs.ml b/src/plugins/value_types/precise_locs.ml
index d32bce7d3a8..63faec349a5 100644
--- a/src/plugins/value_types/precise_locs.ml
+++ b/src/plugins/value_types/precise_locs.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value_types/precise_locs.mli b/src/plugins/value_types/precise_locs.mli
index 84d1ab8c0b9..ba93233b11a 100644
--- a/src/plugins/value_types/precise_locs.mli
+++ b/src/plugins/value_types/precise_locs.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value_types/value_types.ml b/src/plugins/value_types/value_types.ml
index 4ad6d92e4a1..724f9d5b835 100644
--- a/src/plugins/value_types/value_types.ml
+++ b/src/plugins/value_types/value_types.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value_types/value_types.mli b/src/plugins/value_types/value_types.mli
index cdd8f86c51b..f3226b1161b 100644
--- a/src/plugins/value_types/value_types.mli
+++ b/src/plugins/value_types/value_types.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value_types/widen_type.ml b/src/plugins/value_types/widen_type.ml
index 92f57f012f4..b08263306f6 100644
--- a/src/plugins/value_types/widen_type.ml
+++ b/src/plugins/value_types/widen_type.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value_types/widen_type.mli b/src/plugins/value_types/widen_type.mli
index 087b1a15b91..57a6ae50df9 100644
--- a/src/plugins/value_types/widen_type.mli
+++ b/src/plugins/value_types/widen_type.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/Makefile.in b/src/plugins/variadic/Makefile.in
index 09aa6cf0ce8..cd2531c7381 100644
--- a/src/plugins/variadic/Makefile.in
+++ b/src/plugins/variadic/Makefile.in
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/variadic/Variadic.mli b/src/plugins/variadic/Variadic.mli
index 63877bb0923..6fc2387eec6 100644
--- a/src/plugins/variadic/Variadic.mli
+++ b/src/plugins/variadic/Variadic.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/classify.ml b/src/plugins/variadic/classify.ml
index 80b9c73dfc8..fbe8497770d 100644
--- a/src/plugins/variadic/classify.ml
+++ b/src/plugins/variadic/classify.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/configure.ac b/src/plugins/variadic/configure.ac
index d73ff9e14c8..efb25c160a0 100644
--- a/src/plugins/variadic/configure.ac
+++ b/src/plugins/variadic/configure.ac
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/variadic/environment.ml b/src/plugins/variadic/environment.ml
index c00e98d5d20..a7b9b7e3441 100644
--- a/src/plugins/variadic/environment.ml
+++ b/src/plugins/variadic/environment.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/extends.ml b/src/plugins/variadic/extends.ml
index 3cfcf413dd4..ad679c57857 100644
--- a/src/plugins/variadic/extends.ml
+++ b/src/plugins/variadic/extends.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/extends.mli b/src/plugins/variadic/extends.mli
index 901713d331e..41c562c705b 100644
--- a/src/plugins/variadic/extends.mli
+++ b/src/plugins/variadic/extends.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/format_parser.ml b/src/plugins/variadic/format_parser.ml
index 045e5621258..eba2d018d3d 100644
--- a/src/plugins/variadic/format_parser.ml
+++ b/src/plugins/variadic/format_parser.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/format_parser.mli b/src/plugins/variadic/format_parser.mli
index 10218a76d6b..f70f54a50cc 100644
--- a/src/plugins/variadic/format_parser.mli
+++ b/src/plugins/variadic/format_parser.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/format_pprint.ml b/src/plugins/variadic/format_pprint.ml
index 9f78468ae6b..18a9daf1f5b 100644
--- a/src/plugins/variadic/format_pprint.ml
+++ b/src/plugins/variadic/format_pprint.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/format_pprint.mli b/src/plugins/variadic/format_pprint.mli
index cf97574b1b2..8c90c8331cc 100644
--- a/src/plugins/variadic/format_pprint.mli
+++ b/src/plugins/variadic/format_pprint.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/format_string.ml b/src/plugins/variadic/format_string.ml
index f27b7431f4c..0497eb14be7 100644
--- a/src/plugins/variadic/format_string.ml
+++ b/src/plugins/variadic/format_string.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/format_typer.ml b/src/plugins/variadic/format_typer.ml
index e7f0ff59522..4dda0922241 100644
--- a/src/plugins/variadic/format_typer.ml
+++ b/src/plugins/variadic/format_typer.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/format_typer.mli b/src/plugins/variadic/format_typer.mli
index cb83a6fb9fb..264a2b7b899 100644
--- a/src/plugins/variadic/format_typer.mli
+++ b/src/plugins/variadic/format_typer.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/format_types.mli b/src/plugins/variadic/format_types.mli
index 3bd4808e612..92a84573f51 100644
--- a/src/plugins/variadic/format_types.mli
+++ b/src/plugins/variadic/format_types.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/generic.ml b/src/plugins/variadic/generic.ml
index 2964a64b648..556507ffe1f 100644
--- a/src/plugins/variadic/generic.ml
+++ b/src/plugins/variadic/generic.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/options.ml b/src/plugins/variadic/options.ml
index 352a1faf08f..9aef64f8ad3 100644
--- a/src/plugins/variadic/options.ml
+++ b/src/plugins/variadic/options.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/options.mli b/src/plugins/variadic/options.mli
index 66476a9af69..d5d963658af 100644
--- a/src/plugins/variadic/options.mli
+++ b/src/plugins/variadic/options.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/register.ml b/src/plugins/variadic/register.ml
index 73bf842cff4..63d76a324da 100644
--- a/src/plugins/variadic/register.ml
+++ b/src/plugins/variadic/register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/replacements.ml b/src/plugins/variadic/replacements.ml
index ff160320546..9c8a6d241b3 100644
--- a/src/plugins/variadic/replacements.ml
+++ b/src/plugins/variadic/replacements.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/replacements.mli b/src/plugins/variadic/replacements.mli
index 09539a4ab34..492ceb9cc11 100644
--- a/src/plugins/variadic/replacements.mli
+++ b/src/plugins/variadic/replacements.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/standard.ml b/src/plugins/variadic/standard.ml
index f2191e807b6..b454f7f11e4 100644
--- a/src/plugins/variadic/standard.ml
+++ b/src/plugins/variadic/standard.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/translate.ml b/src/plugins/variadic/translate.ml
index 04887ec9f26..7fbe6729bd9 100644
--- a/src/plugins/variadic/translate.ml
+++ b/src/plugins/variadic/translate.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/va_build.ml b/src/plugins/variadic/va_build.ml
index 2fd7c9f2603..b9d805e6c3c 100644
--- a/src/plugins/variadic/va_build.ml
+++ b/src/plugins/variadic/va_build.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/variadic/va_types.mli b/src/plugins/variadic/va_types.mli
index 54cf2034a83..46306d5736b 100644
--- a/src/plugins/variadic/va_types.mli
+++ b/src/plugins/variadic/va_types.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/AssignsCompleteness.ml b/src/plugins/wp/AssignsCompleteness.ml
index 25db9a6e85e..e3454c40692 100644
--- a/src/plugins/wp/AssignsCompleteness.ml
+++ b/src/plugins/wp/AssignsCompleteness.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/AssignsCompleteness.mli b/src/plugins/wp/AssignsCompleteness.mli
index 8fa55bec1d5..e76b56dfc4a 100644
--- a/src/plugins/wp/AssignsCompleteness.mli
+++ b/src/plugins/wp/AssignsCompleteness.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Auto.ml b/src/plugins/wp/Auto.ml
index 289a5769363..ee0fe1759f4 100644
--- a/src/plugins/wp/Auto.ml
+++ b/src/plugins/wp/Auto.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Auto.mli b/src/plugins/wp/Auto.mli
index 669b50df4c8..5b152472550 100644
--- a/src/plugins/wp/Auto.mli
+++ b/src/plugins/wp/Auto.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Cache.ml b/src/plugins/wp/Cache.ml
index afbda25944d..be67d7fbc64 100644
--- a/src/plugins/wp/Cache.ml
+++ b/src/plugins/wp/Cache.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Cache.mli b/src/plugins/wp/Cache.mli
index 62ce8ec540b..7e40ca25e52 100644
--- a/src/plugins/wp/Cache.mli
+++ b/src/plugins/wp/Cache.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/CfgCompiler.ml b/src/plugins/wp/CfgCompiler.ml
index 5c445134f3c..bd12d7d76ce 100644
--- a/src/plugins/wp/CfgCompiler.ml
+++ b/src/plugins/wp/CfgCompiler.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/CfgCompiler.mli b/src/plugins/wp/CfgCompiler.mli
index 18cae959177..5f931e50dfe 100644
--- a/src/plugins/wp/CfgCompiler.mli
+++ b/src/plugins/wp/CfgCompiler.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Cfloat.ml b/src/plugins/wp/Cfloat.ml
index 27904b61625..5f5c5ad8df0 100644
--- a/src/plugins/wp/Cfloat.ml
+++ b/src/plugins/wp/Cfloat.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Cfloat.mli b/src/plugins/wp/Cfloat.mli
index c685e9139ea..3d605ec0411 100644
--- a/src/plugins/wp/Cfloat.mli
+++ b/src/plugins/wp/Cfloat.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Cint.ml b/src/plugins/wp/Cint.ml
index dbba575d2a0..a796a6045df 100644
--- a/src/plugins/wp/Cint.ml
+++ b/src/plugins/wp/Cint.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Cint.mli b/src/plugins/wp/Cint.mli
index 99820019697..b4868c855f4 100644
--- a/src/plugins/wp/Cint.mli
+++ b/src/plugins/wp/Cint.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Cleaning.ml b/src/plugins/wp/Cleaning.ml
index 51684610004..8307a1c8861 100644
--- a/src/plugins/wp/Cleaning.ml
+++ b/src/plugins/wp/Cleaning.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Cleaning.mli b/src/plugins/wp/Cleaning.mli
index e0f21dee6dd..4048aa51bff 100644
--- a/src/plugins/wp/Cleaning.mli
+++ b/src/plugins/wp/Cleaning.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Cmath.ml b/src/plugins/wp/Cmath.ml
index 96b326d43d9..bb51d8d1d63 100644
--- a/src/plugins/wp/Cmath.ml
+++ b/src/plugins/wp/Cmath.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Cmath.mli b/src/plugins/wp/Cmath.mli
index b20b1b7cf50..eea72f1e896 100644
--- a/src/plugins/wp/Cmath.mli
+++ b/src/plugins/wp/Cmath.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/CodeSemantics.ml b/src/plugins/wp/CodeSemantics.ml
index 487949a2712..2a089e418a4 100644
--- a/src/plugins/wp/CodeSemantics.ml
+++ b/src/plugins/wp/CodeSemantics.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/CodeSemantics.mli b/src/plugins/wp/CodeSemantics.mli
index f24b00de4bc..122552cdb98 100644
--- a/src/plugins/wp/CodeSemantics.mli
+++ b/src/plugins/wp/CodeSemantics.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Conditions.ml b/src/plugins/wp/Conditions.ml
index 1ff6550e705..f7386b5cf3b 100644
--- a/src/plugins/wp/Conditions.ml
+++ b/src/plugins/wp/Conditions.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Conditions.mli b/src/plugins/wp/Conditions.mli
index 3e6aa0e00a2..9920a7c62d5 100644
--- a/src/plugins/wp/Conditions.mli
+++ b/src/plugins/wp/Conditions.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Context.ml b/src/plugins/wp/Context.ml
index f1e2210e190..5cfc864f614 100644
--- a/src/plugins/wp/Context.ml
+++ b/src/plugins/wp/Context.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Context.mli b/src/plugins/wp/Context.mli
index bd44d7dd896..8c785d649f0 100644
--- a/src/plugins/wp/Context.mli
+++ b/src/plugins/wp/Context.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Cstring.ml b/src/plugins/wp/Cstring.ml
index 47574ee5837..d2fe872a4ec 100644
--- a/src/plugins/wp/Cstring.ml
+++ b/src/plugins/wp/Cstring.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Cstring.mli b/src/plugins/wp/Cstring.mli
index 13a49663e99..af4f5f6c0af 100644
--- a/src/plugins/wp/Cstring.mli
+++ b/src/plugins/wp/Cstring.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Cvalues.ml b/src/plugins/wp/Cvalues.ml
index 1e0e459349b..20c80248b99 100644
--- a/src/plugins/wp/Cvalues.ml
+++ b/src/plugins/wp/Cvalues.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Cvalues.mli b/src/plugins/wp/Cvalues.mli
index 85276cb8315..01fd0ed8bdf 100644
--- a/src/plugins/wp/Cvalues.mli
+++ b/src/plugins/wp/Cvalues.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Definitions.ml b/src/plugins/wp/Definitions.ml
index b8bd00cd0e6..31f11471323 100644
--- a/src/plugins/wp/Definitions.ml
+++ b/src/plugins/wp/Definitions.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Definitions.mli b/src/plugins/wp/Definitions.mli
index 4955747af42..36acb61bb5a 100644
--- a/src/plugins/wp/Definitions.mli
+++ b/src/plugins/wp/Definitions.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Factory.ml b/src/plugins/wp/Factory.ml
index 8fea80af863..cdb4593efb4 100644
--- a/src/plugins/wp/Factory.ml
+++ b/src/plugins/wp/Factory.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Factory.mli b/src/plugins/wp/Factory.mli
index 913d151300e..eef3a3a7ed5 100644
--- a/src/plugins/wp/Factory.mli
+++ b/src/plugins/wp/Factory.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Filtering.ml b/src/plugins/wp/Filtering.ml
index a85fd1ba447..bfa668f2ab6 100644
--- a/src/plugins/wp/Filtering.ml
+++ b/src/plugins/wp/Filtering.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Filtering.mli b/src/plugins/wp/Filtering.mli
index eb49f594fe7..dc2fd0907f9 100644
--- a/src/plugins/wp/Filtering.mli
+++ b/src/plugins/wp/Filtering.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Footprint.ml b/src/plugins/wp/Footprint.ml
index 0198e11baab..04438cad7bb 100644
--- a/src/plugins/wp/Footprint.ml
+++ b/src/plugins/wp/Footprint.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Footprint.mli b/src/plugins/wp/Footprint.mli
index 9e2e9a739a4..6a803dd964f 100644
--- a/src/plugins/wp/Footprint.mli
+++ b/src/plugins/wp/Footprint.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Generator.ml b/src/plugins/wp/Generator.ml
index 5fde9f3ba27..6273d95ac22 100644
--- a/src/plugins/wp/Generator.ml
+++ b/src/plugins/wp/Generator.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Generator.mli b/src/plugins/wp/Generator.mli
index 56822839e6f..146436a830a 100644
--- a/src/plugins/wp/Generator.mli
+++ b/src/plugins/wp/Generator.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiComposer.ml b/src/plugins/wp/GuiComposer.ml
index 143a4b10209..69f26e46f87 100644
--- a/src/plugins/wp/GuiComposer.ml
+++ b/src/plugins/wp/GuiComposer.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiComposer.mli b/src/plugins/wp/GuiComposer.mli
index 0da767fdef2..8859bd5847a 100644
--- a/src/plugins/wp/GuiComposer.mli
+++ b/src/plugins/wp/GuiComposer.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiConfig.ml b/src/plugins/wp/GuiConfig.ml
index 4e28f2e8957..1110ca3cdaf 100644
--- a/src/plugins/wp/GuiConfig.ml
+++ b/src/plugins/wp/GuiConfig.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiConfig.mli b/src/plugins/wp/GuiConfig.mli
index 9d912d61ffe..2deacd26956 100644
--- a/src/plugins/wp/GuiConfig.mli
+++ b/src/plugins/wp/GuiConfig.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiGoal.ml b/src/plugins/wp/GuiGoal.ml
index 324803ba844..f4ddd156c27 100644
--- a/src/plugins/wp/GuiGoal.ml
+++ b/src/plugins/wp/GuiGoal.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiGoal.mli b/src/plugins/wp/GuiGoal.mli
index 6c3c7f81ac2..b4ae60c3067 100644
--- a/src/plugins/wp/GuiGoal.mli
+++ b/src/plugins/wp/GuiGoal.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiList.ml b/src/plugins/wp/GuiList.ml
index 17d2f761fce..5bd26da272a 100644
--- a/src/plugins/wp/GuiList.ml
+++ b/src/plugins/wp/GuiList.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiList.mli b/src/plugins/wp/GuiList.mli
index 40c0ce443dd..9145d95ec95 100644
--- a/src/plugins/wp/GuiList.mli
+++ b/src/plugins/wp/GuiList.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiNavigator.ml b/src/plugins/wp/GuiNavigator.ml
index 5c04d8a2c0b..890ac610af8 100644
--- a/src/plugins/wp/GuiNavigator.ml
+++ b/src/plugins/wp/GuiNavigator.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiNavigator.mli b/src/plugins/wp/GuiNavigator.mli
index aff35692ff6..efc6964f8e4 100644
--- a/src/plugins/wp/GuiNavigator.mli
+++ b/src/plugins/wp/GuiNavigator.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiPanel.ml b/src/plugins/wp/GuiPanel.ml
index 320b6ed8d9d..aebf56abb66 100644
--- a/src/plugins/wp/GuiPanel.ml
+++ b/src/plugins/wp/GuiPanel.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiPanel.mli b/src/plugins/wp/GuiPanel.mli
index 8b631a0a1d1..8228c3661b1 100644
--- a/src/plugins/wp/GuiPanel.mli
+++ b/src/plugins/wp/GuiPanel.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiProof.ml b/src/plugins/wp/GuiProof.ml
index 244933459f1..70314a4e68e 100644
--- a/src/plugins/wp/GuiProof.ml
+++ b/src/plugins/wp/GuiProof.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiProof.mli b/src/plugins/wp/GuiProof.mli
index f82f6b0edef..b784c9e553d 100644
--- a/src/plugins/wp/GuiProof.mli
+++ b/src/plugins/wp/GuiProof.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiProver.ml b/src/plugins/wp/GuiProver.ml
index e89389d6cdf..2105cb52f79 100644
--- a/src/plugins/wp/GuiProver.ml
+++ b/src/plugins/wp/GuiProver.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiProver.mli b/src/plugins/wp/GuiProver.mli
index 6cc37b2e8be..3065fcd6751 100644
--- a/src/plugins/wp/GuiProver.mli
+++ b/src/plugins/wp/GuiProver.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiSequent.ml b/src/plugins/wp/GuiSequent.ml
index 8792a599e94..fdb29988b39 100644
--- a/src/plugins/wp/GuiSequent.ml
+++ b/src/plugins/wp/GuiSequent.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiSequent.mli b/src/plugins/wp/GuiSequent.mli
index d61727ffce9..c1b0a2a4f32 100644
--- a/src/plugins/wp/GuiSequent.mli
+++ b/src/plugins/wp/GuiSequent.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiSource.ml b/src/plugins/wp/GuiSource.ml
index 48daaecbb9b..93478aa4761 100644
--- a/src/plugins/wp/GuiSource.ml
+++ b/src/plugins/wp/GuiSource.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiSource.mli b/src/plugins/wp/GuiSource.mli
index a1fb0251ed1..41f9f46a589 100644
--- a/src/plugins/wp/GuiSource.mli
+++ b/src/plugins/wp/GuiSource.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiTactic.ml b/src/plugins/wp/GuiTactic.ml
index 550a6caed14..cd14d8126cf 100644
--- a/src/plugins/wp/GuiTactic.ml
+++ b/src/plugins/wp/GuiTactic.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/GuiTactic.mli b/src/plugins/wp/GuiTactic.mli
index 26ad3ff67a8..bd880f03e22 100644
--- a/src/plugins/wp/GuiTactic.mli
+++ b/src/plugins/wp/GuiTactic.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Lang.ml b/src/plugins/wp/Lang.ml
index 61a8123ba9d..4e5934aecd7 100644
--- a/src/plugins/wp/Lang.ml
+++ b/src/plugins/wp/Lang.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Lang.mli b/src/plugins/wp/Lang.mli
index 0b9750495aa..d712813651f 100644
--- a/src/plugins/wp/Lang.mli
+++ b/src/plugins/wp/Lang.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Layout.ml b/src/plugins/wp/Layout.ml
index e7246abceb4..f001bf763bb 100644
--- a/src/plugins/wp/Layout.ml
+++ b/src/plugins/wp/Layout.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Layout.mli b/src/plugins/wp/Layout.mli
index 32453d081f3..71bfa8c7ac9 100644
--- a/src/plugins/wp/Layout.mli
+++ b/src/plugins/wp/Layout.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Letify.ml b/src/plugins/wp/Letify.ml
index d45c2972b5e..5d26dea8e0d 100644
--- a/src/plugins/wp/Letify.ml
+++ b/src/plugins/wp/Letify.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Letify.mli b/src/plugins/wp/Letify.mli
index 87116a58b21..fc7d2f723d4 100644
--- a/src/plugins/wp/Letify.mli
+++ b/src/plugins/wp/Letify.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/LogicAssigns.ml b/src/plugins/wp/LogicAssigns.ml
index 05023456bac..e5f68039c69 100644
--- a/src/plugins/wp/LogicAssigns.ml
+++ b/src/plugins/wp/LogicAssigns.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/LogicAssigns.mli b/src/plugins/wp/LogicAssigns.mli
index fae1f554c4f..99b91b3f0d3 100644
--- a/src/plugins/wp/LogicAssigns.mli
+++ b/src/plugins/wp/LogicAssigns.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/LogicBuiltins.ml b/src/plugins/wp/LogicBuiltins.ml
index e0811424339..5808c304bcf 100644
--- a/src/plugins/wp/LogicBuiltins.ml
+++ b/src/plugins/wp/LogicBuiltins.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/LogicBuiltins.mli b/src/plugins/wp/LogicBuiltins.mli
index eb0c6d9045d..2ae96f291fc 100644
--- a/src/plugins/wp/LogicBuiltins.mli
+++ b/src/plugins/wp/LogicBuiltins.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/LogicCompiler.ml b/src/plugins/wp/LogicCompiler.ml
index 668d62a29af..292f232b0d5 100644
--- a/src/plugins/wp/LogicCompiler.ml
+++ b/src/plugins/wp/LogicCompiler.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/LogicCompiler.mli b/src/plugins/wp/LogicCompiler.mli
index c99371121b6..a93d2f9da01 100644
--- a/src/plugins/wp/LogicCompiler.mli
+++ b/src/plugins/wp/LogicCompiler.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/LogicSemantics.ml b/src/plugins/wp/LogicSemantics.ml
index 2f18879a02c..654ecfa161c 100644
--- a/src/plugins/wp/LogicSemantics.ml
+++ b/src/plugins/wp/LogicSemantics.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/LogicSemantics.mli b/src/plugins/wp/LogicSemantics.mli
index f50fa7e2782..464da213ab5 100644
--- a/src/plugins/wp/LogicSemantics.mli
+++ b/src/plugins/wp/LogicSemantics.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/LogicUsage.ml b/src/plugins/wp/LogicUsage.ml
index b3533aefe3d..97e58671da3 100644
--- a/src/plugins/wp/LogicUsage.ml
+++ b/src/plugins/wp/LogicUsage.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/LogicUsage.mli b/src/plugins/wp/LogicUsage.mli
index 3874d985157..ba9f38841c3 100644
--- a/src/plugins/wp/LogicUsage.mli
+++ b/src/plugins/wp/LogicUsage.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Makefile.in b/src/plugins/wp/Makefile.in
index e5d999ad78c..114eb12bfb2 100644
--- a/src/plugins/wp/Makefile.in
+++ b/src/plugins/wp/Makefile.in
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of WP plug-in of Frama-C.                           #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat a l'energie atomique et aux energies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/wp/Matrix.ml b/src/plugins/wp/Matrix.ml
index 4c4cdad80fc..3b1ca91772e 100644
--- a/src/plugins/wp/Matrix.ml
+++ b/src/plugins/wp/Matrix.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Matrix.mli b/src/plugins/wp/Matrix.mli
index 7ee7ac37f55..277f469bdda 100644
--- a/src/plugins/wp/Matrix.mli
+++ b/src/plugins/wp/Matrix.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/MemEmpty.ml b/src/plugins/wp/MemEmpty.ml
index 1edfc12dcab..b69ac15ba6b 100644
--- a/src/plugins/wp/MemEmpty.ml
+++ b/src/plugins/wp/MemEmpty.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/MemEmpty.mli b/src/plugins/wp/MemEmpty.mli
index 2da968fa507..34bd3d5c913 100644
--- a/src/plugins/wp/MemEmpty.mli
+++ b/src/plugins/wp/MemEmpty.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/MemLoader.ml b/src/plugins/wp/MemLoader.ml
index 9711954f9aa..d37bc22c74f 100644
--- a/src/plugins/wp/MemLoader.ml
+++ b/src/plugins/wp/MemLoader.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/MemLoader.mli b/src/plugins/wp/MemLoader.mli
index 706c697ee04..a9e1e89c988 100644
--- a/src/plugins/wp/MemLoader.mli
+++ b/src/plugins/wp/MemLoader.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/MemMemory.ml b/src/plugins/wp/MemMemory.ml
index 3455e01468d..cc27b7e46b1 100644
--- a/src/plugins/wp/MemMemory.ml
+++ b/src/plugins/wp/MemMemory.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/MemMemory.mli b/src/plugins/wp/MemMemory.mli
index 318d4483ddd..a9e0a79f381 100644
--- a/src/plugins/wp/MemMemory.mli
+++ b/src/plugins/wp/MemMemory.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/MemRegion.ml b/src/plugins/wp/MemRegion.ml
index c5a388526d6..2e654d549b7 100644
--- a/src/plugins/wp/MemRegion.ml
+++ b/src/plugins/wp/MemRegion.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/MemRegion.mli b/src/plugins/wp/MemRegion.mli
index 2da968fa507..34bd3d5c913 100644
--- a/src/plugins/wp/MemRegion.mli
+++ b/src/plugins/wp/MemRegion.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/MemTyped.ml b/src/plugins/wp/MemTyped.ml
index 224fdad715b..af0b4a9b0a5 100644
--- a/src/plugins/wp/MemTyped.ml
+++ b/src/plugins/wp/MemTyped.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/MemTyped.mli b/src/plugins/wp/MemTyped.mli
index 1f0c64d9513..f4b183d9241 100644
--- a/src/plugins/wp/MemTyped.mli
+++ b/src/plugins/wp/MemTyped.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/MemVar.ml b/src/plugins/wp/MemVar.ml
index ddaef66c490..2776f437fd7 100644
--- a/src/plugins/wp/MemVar.ml
+++ b/src/plugins/wp/MemVar.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/MemVar.mli b/src/plugins/wp/MemVar.mli
index 45c063aa9f4..41de1b22611 100644
--- a/src/plugins/wp/MemVar.mli
+++ b/src/plugins/wp/MemVar.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/MemZeroAlias.ml b/src/plugins/wp/MemZeroAlias.ml
index ebfae47bf09..d460cccd7f1 100644
--- a/src/plugins/wp/MemZeroAlias.ml
+++ b/src/plugins/wp/MemZeroAlias.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/MemZeroAlias.mli b/src/plugins/wp/MemZeroAlias.mli
index 2da968fa507..34bd3d5c913 100644
--- a/src/plugins/wp/MemZeroAlias.mli
+++ b/src/plugins/wp/MemZeroAlias.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/MemoryContext.ml b/src/plugins/wp/MemoryContext.ml
index b9074b52fab..e337a196331 100644
--- a/src/plugins/wp/MemoryContext.ml
+++ b/src/plugins/wp/MemoryContext.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/MemoryContext.mli b/src/plugins/wp/MemoryContext.mli
index 95cb1638ff8..c0698fa9ea1 100644
--- a/src/plugins/wp/MemoryContext.mli
+++ b/src/plugins/wp/MemoryContext.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Mstate.ml b/src/plugins/wp/Mstate.ml
index 682744de3ff..4bf5971e1de 100644
--- a/src/plugins/wp/Mstate.ml
+++ b/src/plugins/wp/Mstate.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Mstate.mli b/src/plugins/wp/Mstate.mli
index 0133d75c44b..b2ff770e42c 100644
--- a/src/plugins/wp/Mstate.mli
+++ b/src/plugins/wp/Mstate.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Passive.ml b/src/plugins/wp/Passive.ml
index d4f2f14be65..90f0d8dd947 100644
--- a/src/plugins/wp/Passive.ml
+++ b/src/plugins/wp/Passive.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Passive.mli b/src/plugins/wp/Passive.mli
index 26ce6569a67..0f36df7e0c3 100644
--- a/src/plugins/wp/Passive.mli
+++ b/src/plugins/wp/Passive.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Pcfg.ml b/src/plugins/wp/Pcfg.ml
index d837200d523..d85f26a5de8 100644
--- a/src/plugins/wp/Pcfg.ml
+++ b/src/plugins/wp/Pcfg.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Pcfg.mli b/src/plugins/wp/Pcfg.mli
index 7420c3fe331..c00306ff4c1 100644
--- a/src/plugins/wp/Pcfg.mli
+++ b/src/plugins/wp/Pcfg.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Pcond.ml b/src/plugins/wp/Pcond.ml
index c3fe43ec6ea..eab22c58d4b 100644
--- a/src/plugins/wp/Pcond.ml
+++ b/src/plugins/wp/Pcond.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Pcond.mli b/src/plugins/wp/Pcond.mli
index cb7c4c44b6f..593ad81ed4e 100644
--- a/src/plugins/wp/Pcond.mli
+++ b/src/plugins/wp/Pcond.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Plang.ml b/src/plugins/wp/Plang.ml
index c9344db308b..5f2fac2bd00 100644
--- a/src/plugins/wp/Plang.ml
+++ b/src/plugins/wp/Plang.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Plang.mli b/src/plugins/wp/Plang.mli
index e1bcff3f22f..8bb4335527b 100644
--- a/src/plugins/wp/Plang.mli
+++ b/src/plugins/wp/Plang.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/ProofEngine.ml b/src/plugins/wp/ProofEngine.ml
index 714b1709980..fc339fef85e 100644
--- a/src/plugins/wp/ProofEngine.ml
+++ b/src/plugins/wp/ProofEngine.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/ProofEngine.mli b/src/plugins/wp/ProofEngine.mli
index 764064f9df9..d4932440aee 100644
--- a/src/plugins/wp/ProofEngine.mli
+++ b/src/plugins/wp/ProofEngine.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/ProofScript.ml b/src/plugins/wp/ProofScript.ml
index 4ad9bd70305..3e0bcc83cc2 100644
--- a/src/plugins/wp/ProofScript.ml
+++ b/src/plugins/wp/ProofScript.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/ProofScript.mli b/src/plugins/wp/ProofScript.mli
index 4b5bcbf97f6..b129ecbd392 100644
--- a/src/plugins/wp/ProofScript.mli
+++ b/src/plugins/wp/ProofScript.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/ProofSession.ml b/src/plugins/wp/ProofSession.ml
index 05e69ee8fa4..106f45f28e3 100644
--- a/src/plugins/wp/ProofSession.ml
+++ b/src/plugins/wp/ProofSession.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/ProofSession.mli b/src/plugins/wp/ProofSession.mli
index fa686725ec6..86372425758 100644
--- a/src/plugins/wp/ProofSession.mli
+++ b/src/plugins/wp/ProofSession.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/ProverCoq.ml b/src/plugins/wp/ProverCoq.ml
index ea01cad796b..f261a580dd7 100644
--- a/src/plugins/wp/ProverCoq.ml
+++ b/src/plugins/wp/ProverCoq.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/ProverCoq.mli b/src/plugins/wp/ProverCoq.mli
index 5e0f94b63ef..35287cc6260 100644
--- a/src/plugins/wp/ProverCoq.mli
+++ b/src/plugins/wp/ProverCoq.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/ProverErgo.ml b/src/plugins/wp/ProverErgo.ml
index b5a32ca5d3a..f217f28fc42 100644
--- a/src/plugins/wp/ProverErgo.ml
+++ b/src/plugins/wp/ProverErgo.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/ProverErgo.mli b/src/plugins/wp/ProverErgo.mli
index 96f2d912b74..6355a6e1b81 100644
--- a/src/plugins/wp/ProverErgo.mli
+++ b/src/plugins/wp/ProverErgo.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/ProverScript.ml b/src/plugins/wp/ProverScript.ml
index e5fb8cc0b8f..42df16bc22d 100644
--- a/src/plugins/wp/ProverScript.ml
+++ b/src/plugins/wp/ProverScript.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/ProverScript.mli b/src/plugins/wp/ProverScript.mli
index b89e4a896ca..773bd4f8456 100644
--- a/src/plugins/wp/ProverScript.mli
+++ b/src/plugins/wp/ProverScript.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/ProverSearch.ml b/src/plugins/wp/ProverSearch.ml
index 85abe2d171a..a1fc5c156ef 100644
--- a/src/plugins/wp/ProverSearch.ml
+++ b/src/plugins/wp/ProverSearch.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/ProverSearch.mli b/src/plugins/wp/ProverSearch.mli
index b99ca1ce85c..8dc1f1391a5 100644
--- a/src/plugins/wp/ProverSearch.mli
+++ b/src/plugins/wp/ProverSearch.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/ProverTask.ml b/src/plugins/wp/ProverTask.ml
index 724cb237f7c..1811bf0a2bb 100644
--- a/src/plugins/wp/ProverTask.ml
+++ b/src/plugins/wp/ProverTask.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/ProverTask.mli b/src/plugins/wp/ProverTask.mli
index f964e61ea10..8cbbe52fa0e 100644
--- a/src/plugins/wp/ProverTask.mli
+++ b/src/plugins/wp/ProverTask.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/ProverWhy3.ml b/src/plugins/wp/ProverWhy3.ml
index ed48014f562..26880047e34 100644
--- a/src/plugins/wp/ProverWhy3.ml
+++ b/src/plugins/wp/ProverWhy3.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/ProverWhy3.mli b/src/plugins/wp/ProverWhy3.mli
index e29b681ff44..fd73c828c1b 100644
--- a/src/plugins/wp/ProverWhy3.mli
+++ b/src/plugins/wp/ProverWhy3.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/RefUsage.ml b/src/plugins/wp/RefUsage.ml
index 148ae72e4c4..d3e123821a5 100644
--- a/src/plugins/wp/RefUsage.ml
+++ b/src/plugins/wp/RefUsage.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/RefUsage.mli b/src/plugins/wp/RefUsage.mli
index 641101e08ed..988103efebf 100644
--- a/src/plugins/wp/RefUsage.mli
+++ b/src/plugins/wp/RefUsage.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Region.ml b/src/plugins/wp/Region.ml
index 0de209c12f6..2804b6041e3 100644
--- a/src/plugins/wp/Region.ml
+++ b/src/plugins/wp/Region.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Region.mli b/src/plugins/wp/Region.mli
index c7d34917284..04d12a7abcb 100644
--- a/src/plugins/wp/Region.mli
+++ b/src/plugins/wp/Region.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/RegionAccess.ml b/src/plugins/wp/RegionAccess.ml
index 4f87b246b7f..066f2675a40 100644
--- a/src/plugins/wp/RegionAccess.ml
+++ b/src/plugins/wp/RegionAccess.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/RegionAccess.mli b/src/plugins/wp/RegionAccess.mli
index 7a935536b97..d07562a1f93 100644
--- a/src/plugins/wp/RegionAccess.mli
+++ b/src/plugins/wp/RegionAccess.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/RegionAnalysis.ml b/src/plugins/wp/RegionAnalysis.ml
index fddc83013dd..4a0e8616936 100644
--- a/src/plugins/wp/RegionAnalysis.ml
+++ b/src/plugins/wp/RegionAnalysis.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/RegionAnalysis.mli b/src/plugins/wp/RegionAnalysis.mli
index 7b360f8d78e..504f60b509a 100644
--- a/src/plugins/wp/RegionAnalysis.mli
+++ b/src/plugins/wp/RegionAnalysis.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/RegionAnnot.ml b/src/plugins/wp/RegionAnnot.ml
index 6f602b86bc7..deab22ad92f 100644
--- a/src/plugins/wp/RegionAnnot.ml
+++ b/src/plugins/wp/RegionAnnot.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/RegionAnnot.mli b/src/plugins/wp/RegionAnnot.mli
index 32666eda01b..e6e0bde006a 100644
--- a/src/plugins/wp/RegionAnnot.mli
+++ b/src/plugins/wp/RegionAnnot.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/RegionDump.ml b/src/plugins/wp/RegionDump.ml
index 8537b8dd21e..37b36fb17f9 100644
--- a/src/plugins/wp/RegionDump.ml
+++ b/src/plugins/wp/RegionDump.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/RegionDump.mli b/src/plugins/wp/RegionDump.mli
index d332b9cb40c..96fd42d464c 100644
--- a/src/plugins/wp/RegionDump.mli
+++ b/src/plugins/wp/RegionDump.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Repr.ml b/src/plugins/wp/Repr.ml
index b06be4ac2af..aed726f4c5c 100644
--- a/src/plugins/wp/Repr.ml
+++ b/src/plugins/wp/Repr.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Repr.mli b/src/plugins/wp/Repr.mli
index f4abddf3d44..80a900c4a4e 100644
--- a/src/plugins/wp/Repr.mli
+++ b/src/plugins/wp/Repr.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Sigma.ml b/src/plugins/wp/Sigma.ml
index bb4a82b2798..603540c0223 100644
--- a/src/plugins/wp/Sigma.ml
+++ b/src/plugins/wp/Sigma.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Sigma.mli b/src/plugins/wp/Sigma.mli
index d943753eaf0..f3bceffb2a0 100644
--- a/src/plugins/wp/Sigma.mli
+++ b/src/plugins/wp/Sigma.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Sigs.ml b/src/plugins/wp/Sigs.ml
index 5474a05068c..9321b09c0df 100644
--- a/src/plugins/wp/Sigs.ml
+++ b/src/plugins/wp/Sigs.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Splitter.ml b/src/plugins/wp/Splitter.ml
index 2ae3208e7b0..5d1d8518919 100644
--- a/src/plugins/wp/Splitter.ml
+++ b/src/plugins/wp/Splitter.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Splitter.mli b/src/plugins/wp/Splitter.mli
index 6604b2fcd7d..e8bd2cdde62 100644
--- a/src/plugins/wp/Splitter.mli
+++ b/src/plugins/wp/Splitter.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/StmtSemantics.ml b/src/plugins/wp/StmtSemantics.ml
index 5466a629e8d..b9b9e3afead 100644
--- a/src/plugins/wp/StmtSemantics.ml
+++ b/src/plugins/wp/StmtSemantics.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/StmtSemantics.mli b/src/plugins/wp/StmtSemantics.mli
index 1d58cbbf8a1..a16c15f2ff3 100644
--- a/src/plugins/wp/StmtSemantics.mli
+++ b/src/plugins/wp/StmtSemantics.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Strategy.ml b/src/plugins/wp/Strategy.ml
index cf232eaa0dc..88ed2a43670 100644
--- a/src/plugins/wp/Strategy.ml
+++ b/src/plugins/wp/Strategy.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Strategy.mli b/src/plugins/wp/Strategy.mli
index a598910025a..6bf3468c8ff 100644
--- a/src/plugins/wp/Strategy.mli
+++ b/src/plugins/wp/Strategy.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacArray.ml b/src/plugins/wp/TacArray.ml
index 963a9e7b289..a019c529594 100644
--- a/src/plugins/wp/TacArray.ml
+++ b/src/plugins/wp/TacArray.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacArray.mli b/src/plugins/wp/TacArray.mli
index 2646d8cd8ce..64bd23ba620 100644
--- a/src/plugins/wp/TacArray.mli
+++ b/src/plugins/wp/TacArray.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacBitrange.ml b/src/plugins/wp/TacBitrange.ml
index 5e1552cb9a8..3bf028ce766 100644
--- a/src/plugins/wp/TacBitrange.ml
+++ b/src/plugins/wp/TacBitrange.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacBitrange.mli b/src/plugins/wp/TacBitrange.mli
index 80f7d300357..f5860490a69 100644
--- a/src/plugins/wp/TacBitrange.mli
+++ b/src/plugins/wp/TacBitrange.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacBittest.ml b/src/plugins/wp/TacBittest.ml
index 86fb2f62723..e46016ae364 100644
--- a/src/plugins/wp/TacBittest.ml
+++ b/src/plugins/wp/TacBittest.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacBittest.mli b/src/plugins/wp/TacBittest.mli
index 47296a7f6b6..1a2ef6466d9 100644
--- a/src/plugins/wp/TacBittest.mli
+++ b/src/plugins/wp/TacBittest.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacBitwised.ml b/src/plugins/wp/TacBitwised.ml
index 70892de3a04..aba8d792d84 100644
--- a/src/plugins/wp/TacBitwised.ml
+++ b/src/plugins/wp/TacBitwised.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacBitwised.mli b/src/plugins/wp/TacBitwised.mli
index 2213b94fea8..c669d3bbf4c 100644
--- a/src/plugins/wp/TacBitwised.mli
+++ b/src/plugins/wp/TacBitwised.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacChoice.ml b/src/plugins/wp/TacChoice.ml
index 42b7975dbea..31f3ee05e0c 100644
--- a/src/plugins/wp/TacChoice.ml
+++ b/src/plugins/wp/TacChoice.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacChoice.mli b/src/plugins/wp/TacChoice.mli
index 560d8a5c448..3a17e409332 100644
--- a/src/plugins/wp/TacChoice.mli
+++ b/src/plugins/wp/TacChoice.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacCompound.ml b/src/plugins/wp/TacCompound.ml
index c97dc9b3e49..e4fe08b7833 100644
--- a/src/plugins/wp/TacCompound.ml
+++ b/src/plugins/wp/TacCompound.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacCompound.mli b/src/plugins/wp/TacCompound.mli
index b34e26ba492..771441a22cd 100644
--- a/src/plugins/wp/TacCompound.mli
+++ b/src/plugins/wp/TacCompound.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacCongruence.ml b/src/plugins/wp/TacCongruence.ml
index e07026c423d..3641f4387e5 100644
--- a/src/plugins/wp/TacCongruence.ml
+++ b/src/plugins/wp/TacCongruence.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacCongruence.mli b/src/plugins/wp/TacCongruence.mli
index 56d9015a035..3b0359b4d01 100644
--- a/src/plugins/wp/TacCongruence.mli
+++ b/src/plugins/wp/TacCongruence.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacCut.ml b/src/plugins/wp/TacCut.ml
index 679aed4d4cb..16f3233837d 100644
--- a/src/plugins/wp/TacCut.ml
+++ b/src/plugins/wp/TacCut.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacCut.mli b/src/plugins/wp/TacCut.mli
index 59e7015606d..952a048bcb2 100644
--- a/src/plugins/wp/TacCut.mli
+++ b/src/plugins/wp/TacCut.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacFilter.ml b/src/plugins/wp/TacFilter.ml
index 10048bc2725..bf7340bc36c 100644
--- a/src/plugins/wp/TacFilter.ml
+++ b/src/plugins/wp/TacFilter.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacFilter.mli b/src/plugins/wp/TacFilter.mli
index 9959c157443..d359707edb1 100644
--- a/src/plugins/wp/TacFilter.mli
+++ b/src/plugins/wp/TacFilter.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacHavoc.ml b/src/plugins/wp/TacHavoc.ml
index 294c706e6b6..785aebf8552 100644
--- a/src/plugins/wp/TacHavoc.ml
+++ b/src/plugins/wp/TacHavoc.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacHavoc.mli b/src/plugins/wp/TacHavoc.mli
index de44ed3601e..c635ced8f83 100644
--- a/src/plugins/wp/TacHavoc.mli
+++ b/src/plugins/wp/TacHavoc.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacInduction.ml b/src/plugins/wp/TacInduction.ml
index 630d6be6e53..982d6e13094 100644
--- a/src/plugins/wp/TacInduction.ml
+++ b/src/plugins/wp/TacInduction.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacInduction.mli b/src/plugins/wp/TacInduction.mli
index 21c817a0b33..acb995cfaca 100644
--- a/src/plugins/wp/TacInduction.mli
+++ b/src/plugins/wp/TacInduction.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacInstance.ml b/src/plugins/wp/TacInstance.ml
index 15f5064f7a9..5fe1df23175 100644
--- a/src/plugins/wp/TacInstance.ml
+++ b/src/plugins/wp/TacInstance.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacInstance.mli b/src/plugins/wp/TacInstance.mli
index bcb0952d218..c359d24a010 100644
--- a/src/plugins/wp/TacInstance.mli
+++ b/src/plugins/wp/TacInstance.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacLemma.ml b/src/plugins/wp/TacLemma.ml
index 5a36bffa186..5e9ebe63af4 100644
--- a/src/plugins/wp/TacLemma.ml
+++ b/src/plugins/wp/TacLemma.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacLemma.mli b/src/plugins/wp/TacLemma.mli
index 4237f57f9e4..cf8e2dd5356 100644
--- a/src/plugins/wp/TacLemma.mli
+++ b/src/plugins/wp/TacLemma.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacNormalForm.ml b/src/plugins/wp/TacNormalForm.ml
index 96c72b45f64..f7e78a43906 100644
--- a/src/plugins/wp/TacNormalForm.ml
+++ b/src/plugins/wp/TacNormalForm.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacNormalForm.mli b/src/plugins/wp/TacNormalForm.mli
index 8e777478a18..9ef7c104e8d 100644
--- a/src/plugins/wp/TacNormalForm.mli
+++ b/src/plugins/wp/TacNormalForm.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacOverflow.ml b/src/plugins/wp/TacOverflow.ml
index 77ec8bf51a6..906c596c61a 100644
--- a/src/plugins/wp/TacOverflow.ml
+++ b/src/plugins/wp/TacOverflow.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacOverflow.mli b/src/plugins/wp/TacOverflow.mli
index b7259a84441..d4ecfbfe545 100644
--- a/src/plugins/wp/TacOverflow.mli
+++ b/src/plugins/wp/TacOverflow.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacRange.ml b/src/plugins/wp/TacRange.ml
index f3faab1ac9f..ef88d017296 100644
--- a/src/plugins/wp/TacRange.ml
+++ b/src/plugins/wp/TacRange.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacRange.mli b/src/plugins/wp/TacRange.mli
index c9d7a5092bf..cc44eed144c 100644
--- a/src/plugins/wp/TacRange.mli
+++ b/src/plugins/wp/TacRange.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacRewrite.ml b/src/plugins/wp/TacRewrite.ml
index 4ba8c620992..d784e380c48 100644
--- a/src/plugins/wp/TacRewrite.ml
+++ b/src/plugins/wp/TacRewrite.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacRewrite.mli b/src/plugins/wp/TacRewrite.mli
index d7bedadf436..1965dbefad6 100644
--- a/src/plugins/wp/TacRewrite.mli
+++ b/src/plugins/wp/TacRewrite.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacSequence.ml b/src/plugins/wp/TacSequence.ml
index 1c711e93757..8a0dbdeea4c 100644
--- a/src/plugins/wp/TacSequence.ml
+++ b/src/plugins/wp/TacSequence.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacSequence.mli b/src/plugins/wp/TacSequence.mli
index 51e970bdaf1..c856be94028 100644
--- a/src/plugins/wp/TacSequence.mli
+++ b/src/plugins/wp/TacSequence.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacShift.ml b/src/plugins/wp/TacShift.ml
index 825a0388254..4745ccdd8d8 100644
--- a/src/plugins/wp/TacShift.ml
+++ b/src/plugins/wp/TacShift.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacShift.mli b/src/plugins/wp/TacShift.mli
index fd73e92e9b7..ae596d5530c 100644
--- a/src/plugins/wp/TacShift.mli
+++ b/src/plugins/wp/TacShift.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacSplit.ml b/src/plugins/wp/TacSplit.ml
index 5b53076bb48..57e324288d6 100644
--- a/src/plugins/wp/TacSplit.ml
+++ b/src/plugins/wp/TacSplit.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacSplit.mli b/src/plugins/wp/TacSplit.mli
index 87012107ced..998c110fd01 100644
--- a/src/plugins/wp/TacSplit.mli
+++ b/src/plugins/wp/TacSplit.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacUnfold.ml b/src/plugins/wp/TacUnfold.ml
index 281aa810b0b..fd4f9e3a3b9 100644
--- a/src/plugins/wp/TacUnfold.ml
+++ b/src/plugins/wp/TacUnfold.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/TacUnfold.mli b/src/plugins/wp/TacUnfold.mli
index 1d7e68405c2..c515745963a 100644
--- a/src/plugins/wp/TacUnfold.mli
+++ b/src/plugins/wp/TacUnfold.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Tactical.ml b/src/plugins/wp/Tactical.ml
index 2cd4ff603fd..036c2a3e730 100644
--- a/src/plugins/wp/Tactical.ml
+++ b/src/plugins/wp/Tactical.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Tactical.mli b/src/plugins/wp/Tactical.mli
index 320881d5c5b..4ed8400c730 100644
--- a/src/plugins/wp/Tactical.mli
+++ b/src/plugins/wp/Tactical.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/VC.ml b/src/plugins/wp/VC.ml
index 65a60848639..b614862c03b 100644
--- a/src/plugins/wp/VC.ml
+++ b/src/plugins/wp/VC.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/VC.mli b/src/plugins/wp/VC.mli
index f073fffb021..3410ae50f5b 100644
--- a/src/plugins/wp/VC.mli
+++ b/src/plugins/wp/VC.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/VCS.ml b/src/plugins/wp/VCS.ml
index 3451cbacab7..05aacf11a7c 100644
--- a/src/plugins/wp/VCS.ml
+++ b/src/plugins/wp/VCS.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/VCS.mli b/src/plugins/wp/VCS.mli
index 270095ceaad..f45575f2b6d 100644
--- a/src/plugins/wp/VCS.mli
+++ b/src/plugins/wp/VCS.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Vlist.ml b/src/plugins/wp/Vlist.ml
index 40238be85bd..493022e5bf1 100644
--- a/src/plugins/wp/Vlist.ml
+++ b/src/plugins/wp/Vlist.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Vlist.mli b/src/plugins/wp/Vlist.mli
index a957d15f7b9..2d0b63892ff 100644
--- a/src/plugins/wp/Vlist.mli
+++ b/src/plugins/wp/Vlist.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Vset.ml b/src/plugins/wp/Vset.ml
index 1539c2cb6a5..29dd98f83d7 100644
--- a/src/plugins/wp/Vset.ml
+++ b/src/plugins/wp/Vset.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Vset.mli b/src/plugins/wp/Vset.mli
index a529cac3078..3d1487c85d9 100644
--- a/src/plugins/wp/Vset.mli
+++ b/src/plugins/wp/Vset.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Warning.ml b/src/plugins/wp/Warning.ml
index 00664bb1670..31d8ddebeb0 100644
--- a/src/plugins/wp/Warning.ml
+++ b/src/plugins/wp/Warning.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Warning.mli b/src/plugins/wp/Warning.mli
index e6c0bdbb4c0..b6c5ca5b46f 100644
--- a/src/plugins/wp/Warning.mli
+++ b/src/plugins/wp/Warning.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Why3Provers.ml b/src/plugins/wp/Why3Provers.ml
index 19e8070cf06..8c7ffc09a9b 100644
--- a/src/plugins/wp/Why3Provers.ml
+++ b/src/plugins/wp/Why3Provers.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/Why3Provers.mli b/src/plugins/wp/Why3Provers.mli
index 1098dc55906..d92226ec8eb 100644
--- a/src/plugins/wp/Why3Provers.mli
+++ b/src/plugins/wp/Why3Provers.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/WpTac.ml b/src/plugins/wp/WpTac.ml
index 4d630865f91..339d9c368a1 100644
--- a/src/plugins/wp/WpTac.ml
+++ b/src/plugins/wp/WpTac.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/WpTac.mli b/src/plugins/wp/WpTac.mli
index 412504a7746..43bfb497720 100644
--- a/src/plugins/wp/WpTac.mli
+++ b/src/plugins/wp/WpTac.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/calculus.ml b/src/plugins/wp/calculus.ml
index ba69ffcc2a1..ffc8d50d665 100644
--- a/src/plugins/wp/calculus.ml
+++ b/src/plugins/wp/calculus.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/calculus.mli b/src/plugins/wp/calculus.mli
index 81bb30a5bea..ad5bc86fb0c 100644
--- a/src/plugins/wp/calculus.mli
+++ b/src/plugins/wp/calculus.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/cfgDump.ml b/src/plugins/wp/cfgDump.ml
index 6091b24dc5a..84a6852f17d 100644
--- a/src/plugins/wp/cfgDump.ml
+++ b/src/plugins/wp/cfgDump.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/cfgDump.mli b/src/plugins/wp/cfgDump.mli
index b7f98a64cee..8a56875a653 100644
--- a/src/plugins/wp/cfgDump.mli
+++ b/src/plugins/wp/cfgDump.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/cfgWP.ml b/src/plugins/wp/cfgWP.ml
index 10e8f697cc3..ec5e67757db 100644
--- a/src/plugins/wp/cfgWP.ml
+++ b/src/plugins/wp/cfgWP.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/cfgWP.mli b/src/plugins/wp/cfgWP.mli
index c32185d195a..ee6bb78f295 100644
--- a/src/plugins/wp/cfgWP.mli
+++ b/src/plugins/wp/cfgWP.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/cil2cfg.ml b/src/plugins/wp/cil2cfg.ml
index c4ee31c13b2..15d56049af7 100644
--- a/src/plugins/wp/cil2cfg.ml
+++ b/src/plugins/wp/cil2cfg.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/cil2cfg.mli b/src/plugins/wp/cil2cfg.mli
index 808e3b6cfc6..087824dfa25 100644
--- a/src/plugins/wp/cil2cfg.mli
+++ b/src/plugins/wp/cil2cfg.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/clabels.ml b/src/plugins/wp/clabels.ml
index f9e26a0db02..afd2335229e 100644
--- a/src/plugins/wp/clabels.ml
+++ b/src/plugins/wp/clabels.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/clabels.mli b/src/plugins/wp/clabels.mli
index 33812ec5f13..90e9318ddee 100644
--- a/src/plugins/wp/clabels.mli
+++ b/src/plugins/wp/clabels.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/configure.ac b/src/plugins/wp/configure.ac
index fd5332ac585..90dcf3ec7df 100644
--- a/src/plugins/wp/configure.ac
+++ b/src/plugins/wp/configure.ac
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of WP plug-in of Frama-C.                           #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat a l'energie atomique et aux energies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/wp/ctypes.ml b/src/plugins/wp/ctypes.ml
index 245096cde6f..63239988fce 100644
--- a/src/plugins/wp/ctypes.ml
+++ b/src/plugins/wp/ctypes.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/ctypes.mli b/src/plugins/wp/ctypes.mli
index c6dbf0bd409..9f5705f8886 100644
--- a/src/plugins/wp/ctypes.mli
+++ b/src/plugins/wp/ctypes.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/driver.mli b/src/plugins/wp/driver.mli
index 0e1e72b19c1..8618ed20962 100644
--- a/src/plugins/wp/driver.mli
+++ b/src/plugins/wp/driver.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/driver.mll b/src/plugins/wp/driver.mll
index 9e4d708e493..8404774fb29 100644
--- a/src/plugins/wp/driver.mll
+++ b/src/plugins/wp/driver.mll
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/dyncall.ml b/src/plugins/wp/dyncall.ml
index c36678ec31d..9916a6db668 100644
--- a/src/plugins/wp/dyncall.ml
+++ b/src/plugins/wp/dyncall.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/dyncall.mli b/src/plugins/wp/dyncall.mli
index 232a75911b6..13ef1d0f78d 100644
--- a/src/plugins/wp/dyncall.mli
+++ b/src/plugins/wp/dyncall.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/filter_axioms.ml b/src/plugins/wp/filter_axioms.ml
index e694556ff63..ebb9ebb4d09 100644
--- a/src/plugins/wp/filter_axioms.ml
+++ b/src/plugins/wp/filter_axioms.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/filter_axioms.mli b/src/plugins/wp/filter_axioms.mli
index ebe1115a3f2..5a43ee006d8 100644
--- a/src/plugins/wp/filter_axioms.mli
+++ b/src/plugins/wp/filter_axioms.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/intro_wp.txt b/src/plugins/wp/intro_wp.txt
index c70805e48cf..3de2d7cdce6 100644
--- a/src/plugins/wp/intro_wp.txt
+++ b/src/plugins/wp/intro_wp.txt
@@ -2,7 +2,7 @@
 #*                                                                        #
 #*  This file is part of WP plug-in of Frama-C.                           #
 #*                                                                        #
-#*  Copyright (C) 2007-2020                                               #
+#*  Copyright (C) 2007-2021                                               #
 #*    CEA (Commissariat a l'energie atomique et aux energies              #
 #*         alternatives)                                                  #
 #*                                                                        #
diff --git a/src/plugins/wp/mcfg.ml b/src/plugins/wp/mcfg.ml
index 873001be1eb..0562e0f4b4c 100644
--- a/src/plugins/wp/mcfg.ml
+++ b/src/plugins/wp/mcfg.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/normAtLabels.ml b/src/plugins/wp/normAtLabels.ml
index 197b12f9685..d6d49358da4 100644
--- a/src/plugins/wp/normAtLabels.ml
+++ b/src/plugins/wp/normAtLabels.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/normAtLabels.mli b/src/plugins/wp/normAtLabels.mli
index 0dd24f82545..800b10b7e4d 100644
--- a/src/plugins/wp/normAtLabels.mli
+++ b/src/plugins/wp/normAtLabels.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/proof.ml b/src/plugins/wp/proof.ml
index 795ac2b5270..f7f06f01564 100644
--- a/src/plugins/wp/proof.ml
+++ b/src/plugins/wp/proof.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/proof.mli b/src/plugins/wp/proof.mli
index 141a790d1c6..17b88dd6f51 100644
--- a/src/plugins/wp/proof.mli
+++ b/src/plugins/wp/proof.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/prover.ml b/src/plugins/wp/prover.ml
index 87fc5241966..addb11faabb 100644
--- a/src/plugins/wp/prover.ml
+++ b/src/plugins/wp/prover.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/prover.mli b/src/plugins/wp/prover.mli
index 32e1ca6ff6a..ba40150716a 100644
--- a/src/plugins/wp/prover.mli
+++ b/src/plugins/wp/prover.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/register.ml b/src/plugins/wp/register.ml
index 89998c9ea08..d1528afaf90 100644
--- a/src/plugins/wp/register.ml
+++ b/src/plugins/wp/register.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/rformat.mli b/src/plugins/wp/rformat.mli
index 1da4c78ff62..8d8d0d35afc 100644
--- a/src/plugins/wp/rformat.mli
+++ b/src/plugins/wp/rformat.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/rformat.mll b/src/plugins/wp/rformat.mll
index 06f4e6b9d85..4117744544f 100644
--- a/src/plugins/wp/rformat.mll
+++ b/src/plugins/wp/rformat.mll
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/script.mli b/src/plugins/wp/script.mli
index 7a47759945e..41093e8c3a2 100644
--- a/src/plugins/wp/script.mli
+++ b/src/plugins/wp/script.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/script.mll b/src/plugins/wp/script.mll
index 9a1adf7fadb..64b5c882648 100644
--- a/src/plugins/wp/script.mll
+++ b/src/plugins/wp/script.mll
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/Makefile.coqwp b/src/plugins/wp/share/Makefile.coqwp
index 1525326a902..9bdd3d154b0 100644
--- a/src/plugins/wp/share/Makefile.coqwp
+++ b/src/plugins/wp/share/Makefile.coqwp
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of WP plug-in of Frama-C.                           #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat a l'energie atomique et aux energies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/wp/share/Makefile.resources b/src/plugins/wp/share/Makefile.resources
index 97246b7f9af..4fea780bb2a 100644
--- a/src/plugins/wp/share/Makefile.resources
+++ b/src/plugins/wp/share/Makefile.resources
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of WP plug-in of Frama-C.                           #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat a l'energie atomique et aux energies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/src/plugins/wp/share/coqwp/ArcTrigo.v b/src/plugins/wp/share/coqwp/ArcTrigo.v
index eefdcd01b86..81d15dc5970 100644
--- a/src/plugins/wp/share/coqwp/ArcTrigo.v
+++ b/src/plugins/wp/share/coqwp/ArcTrigo.v
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/coqwp/Bits.v b/src/plugins/wp/share/coqwp/Bits.v
index 47a2966d2f7..1719d23083d 100644
--- a/src/plugins/wp/share/coqwp/Bits.v
+++ b/src/plugins/wp/share/coqwp/Bits.v
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/coqwp/Cbits.v b/src/plugins/wp/share/coqwp/Cbits.v
index 438b0fd0085..bc0e6351cc5 100644
--- a/src/plugins/wp/share/coqwp/Cbits.v
+++ b/src/plugins/wp/share/coqwp/Cbits.v
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/coqwp/Cfloat.v b/src/plugins/wp/share/coqwp/Cfloat.v
index 51107bea476..ce093bced71 100644
--- a/src/plugins/wp/share/coqwp/Cfloat.v
+++ b/src/plugins/wp/share/coqwp/Cfloat.v
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/coqwp/Cint.v b/src/plugins/wp/share/coqwp/Cint.v
index 12ed20f8bf8..65230d29467 100644
--- a/src/plugins/wp/share/coqwp/Cint.v
+++ b/src/plugins/wp/share/coqwp/Cint.v
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/coqwp/Cmath.v b/src/plugins/wp/share/coqwp/Cmath.v
index 075b632df47..ee47145352a 100644
--- a/src/plugins/wp/share/coqwp/Cmath.v
+++ b/src/plugins/wp/share/coqwp/Cmath.v
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/coqwp/ExpLog.v b/src/plugins/wp/share/coqwp/ExpLog.v
index 6ec0186856c..6222a341b51 100644
--- a/src/plugins/wp/share/coqwp/ExpLog.v
+++ b/src/plugins/wp/share/coqwp/ExpLog.v
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/coqwp/Memory.v b/src/plugins/wp/share/coqwp/Memory.v
index ff59f9557f9..6531b0b6e35 100644
--- a/src/plugins/wp/share/coqwp/Memory.v
+++ b/src/plugins/wp/share/coqwp/Memory.v
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/coqwp/Qed.v b/src/plugins/wp/share/coqwp/Qed.v
index f81df6ef717..6b05b6fa139 100644
--- a/src/plugins/wp/share/coqwp/Qed.v
+++ b/src/plugins/wp/share/coqwp/Qed.v
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/coqwp/Qedlib.v b/src/plugins/wp/share/coqwp/Qedlib.v
index 79fd44f4594..cfc75c42aa4 100644
--- a/src/plugins/wp/share/coqwp/Qedlib.v
+++ b/src/plugins/wp/share/coqwp/Qedlib.v
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/coqwp/Square.v b/src/plugins/wp/share/coqwp/Square.v
index 09b83d1c067..6f523341b40 100644
--- a/src/plugins/wp/share/coqwp/Square.v
+++ b/src/plugins/wp/share/coqwp/Square.v
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/coqwp/Vlist.v b/src/plugins/wp/share/coqwp/Vlist.v
index f91fabec5d1..0c9d9696545 100644
--- a/src/plugins/wp/share/coqwp/Vlist.v
+++ b/src/plugins/wp/share/coqwp/Vlist.v
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/coqwp/Vset.v b/src/plugins/wp/share/coqwp/Vset.v
index ac183b13d65..69b73d2055b 100644
--- a/src/plugins/wp/share/coqwp/Vset.v
+++ b/src/plugins/wp/share/coqwp/Vset.v
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/coqwp/Zbits.v b/src/plugins/wp/share/coqwp/Zbits.v
index 66404ac8a9e..47d1d590a36 100644
--- a/src/plugins/wp/share/coqwp/Zbits.v
+++ b/src/plugins/wp/share/coqwp/Zbits.v
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/ergo/ArcTrigo.mlw b/src/plugins/wp/share/ergo/ArcTrigo.mlw
index b9f4532a53a..e2640273c38 100644
--- a/src/plugins/wp/share/ergo/ArcTrigo.mlw
+++ b/src/plugins/wp/share/ergo/ArcTrigo.mlw
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/ergo/Cbits.mlw b/src/plugins/wp/share/ergo/Cbits.mlw
index 7652d082269..fc3e1ca738f 100644
--- a/src/plugins/wp/share/ergo/Cbits.mlw
+++ b/src/plugins/wp/share/ergo/Cbits.mlw
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/ergo/Cfloat.mlw b/src/plugins/wp/share/ergo/Cfloat.mlw
index 3885af62d02..8767b09720c 100644
--- a/src/plugins/wp/share/ergo/Cfloat.mlw
+++ b/src/plugins/wp/share/ergo/Cfloat.mlw
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/ergo/Cint.mlw b/src/plugins/wp/share/ergo/Cint.mlw
index 581338d4e5d..7dab2653490 100644
--- a/src/plugins/wp/share/ergo/Cint.mlw
+++ b/src/plugins/wp/share/ergo/Cint.mlw
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/ergo/Cmath.mlw b/src/plugins/wp/share/ergo/Cmath.mlw
index 923a8063d21..137cf15a396 100644
--- a/src/plugins/wp/share/ergo/Cmath.mlw
+++ b/src/plugins/wp/share/ergo/Cmath.mlw
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/ergo/ExpLog.mlw b/src/plugins/wp/share/ergo/ExpLog.mlw
index 7e95d78dbc1..c71d17e18b0 100644
--- a/src/plugins/wp/share/ergo/ExpLog.mlw
+++ b/src/plugins/wp/share/ergo/ExpLog.mlw
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/ergo/Memory.mlw b/src/plugins/wp/share/ergo/Memory.mlw
index a08ecfc4176..32ac4406cf9 100644
--- a/src/plugins/wp/share/ergo/Memory.mlw
+++ b/src/plugins/wp/share/ergo/Memory.mlw
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/ergo/Qed.mlw b/src/plugins/wp/share/ergo/Qed.mlw
index d4723076886..08a3998f07c 100644
--- a/src/plugins/wp/share/ergo/Qed.mlw
+++ b/src/plugins/wp/share/ergo/Qed.mlw
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/ergo/Square.mlw b/src/plugins/wp/share/ergo/Square.mlw
index c65d85c3902..3a1f199e50e 100644
--- a/src/plugins/wp/share/ergo/Square.mlw
+++ b/src/plugins/wp/share/ergo/Square.mlw
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/ergo/Vlist.mlw b/src/plugins/wp/share/ergo/Vlist.mlw
index cc9bbd9c39b..c10ced2bdb5 100644
--- a/src/plugins/wp/share/ergo/Vlist.mlw
+++ b/src/plugins/wp/share/ergo/Vlist.mlw
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/ergo/Vset.mlw b/src/plugins/wp/share/ergo/Vset.mlw
index ee4d55cfc4a..250caa04958 100644
--- a/src/plugins/wp/share/ergo/Vset.mlw
+++ b/src/plugins/wp/share/ergo/Vset.mlw
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/install.ml b/src/plugins/wp/share/install.ml
index 5172ab4010d..a3e637acfd3 100644
--- a/src/plugins/wp/share/install.ml
+++ b/src/plugins/wp/share/install.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/why3/frama_c_wp/cbits.mlw b/src/plugins/wp/share/why3/frama_c_wp/cbits.mlw
index b711c846e5b..7207fa0d437 100644
--- a/src/plugins/wp/share/why3/frama_c_wp/cbits.mlw
+++ b/src/plugins/wp/share/why3/frama_c_wp/cbits.mlw
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/why3/frama_c_wp/cfloat.mlw b/src/plugins/wp/share/why3/frama_c_wp/cfloat.mlw
index 3f1bc5eb1b7..f61f6896b93 100644
--- a/src/plugins/wp/share/why3/frama_c_wp/cfloat.mlw
+++ b/src/plugins/wp/share/why3/frama_c_wp/cfloat.mlw
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/why3/frama_c_wp/cint.mlw b/src/plugins/wp/share/why3/frama_c_wp/cint.mlw
index 969326b6fe9..81147fd6677 100644
--- a/src/plugins/wp/share/why3/frama_c_wp/cint.mlw
+++ b/src/plugins/wp/share/why3/frama_c_wp/cint.mlw
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/why3/frama_c_wp/cmath.mlw b/src/plugins/wp/share/why3/frama_c_wp/cmath.mlw
index 10179658f09..495ac75347b 100644
--- a/src/plugins/wp/share/why3/frama_c_wp/cmath.mlw
+++ b/src/plugins/wp/share/why3/frama_c_wp/cmath.mlw
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/why3/frama_c_wp/memory.mlw b/src/plugins/wp/share/why3/frama_c_wp/memory.mlw
index 49a5e3e6850..c508fdae443 100644
--- a/src/plugins/wp/share/why3/frama_c_wp/memory.mlw
+++ b/src/plugins/wp/share/why3/frama_c_wp/memory.mlw
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/why3/frama_c_wp/qed.mlw b/src/plugins/wp/share/why3/frama_c_wp/qed.mlw
index 8992dc01542..883fadf1759 100644
--- a/src/plugins/wp/share/why3/frama_c_wp/qed.mlw
+++ b/src/plugins/wp/share/why3/frama_c_wp/qed.mlw
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/why3/frama_c_wp/vlist.mlw b/src/plugins/wp/share/why3/frama_c_wp/vlist.mlw
index 1e52645ed43..bd284ae9a6e 100644
--- a/src/plugins/wp/share/why3/frama_c_wp/vlist.mlw
+++ b/src/plugins/wp/share/why3/frama_c_wp/vlist.mlw
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/why3/frama_c_wp/vset.mlw b/src/plugins/wp/share/why3/frama_c_wp/vset.mlw
index d18a7ffa8a4..041a3c46142 100644
--- a/src/plugins/wp/share/why3/frama_c_wp/vset.mlw
+++ b/src/plugins/wp/share/why3/frama_c_wp/vset.mlw
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/share/wp.driver b/src/plugins/wp/share/wp.driver
index 2fb2f16fed1..8024f1f67fb 100644
--- a/src/plugins/wp/share/wp.driver
+++ b/src/plugins/wp/share/wp.driver
@@ -2,7 +2,7 @@
 /*                                                                        */
 /*  This file is part of WP plug-in of Frama-C.                           */
 /*                                                                        */
-/*  Copyright (C) 2007-2020                                               */
+/*  Copyright (C) 2007-2021                                               */
 /*    CEA (Commissariat a l'energie atomique et aux energies              */
 /*         alternatives)                                                  */
 /*                                                                        */
diff --git a/src/plugins/wp/wpAnnot.ml b/src/plugins/wp/wpAnnot.ml
index c6ff88f1a14..95d36b84350 100644
--- a/src/plugins/wp/wpAnnot.ml
+++ b/src/plugins/wp/wpAnnot.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wpAnnot.mli b/src/plugins/wp/wpAnnot.mli
index a005a5d2c36..0fcc0b671b7 100644
--- a/src/plugins/wp/wpAnnot.mli
+++ b/src/plugins/wp/wpAnnot.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wpContext.ml b/src/plugins/wp/wpContext.ml
index acc32631cad..0205b6529d5 100644
--- a/src/plugins/wp/wpContext.ml
+++ b/src/plugins/wp/wpContext.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wpContext.mli b/src/plugins/wp/wpContext.mli
index a52c5af5f7f..cf3576f7847 100644
--- a/src/plugins/wp/wpContext.mli
+++ b/src/plugins/wp/wpContext.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wpPropId.ml b/src/plugins/wp/wpPropId.ml
index 90595b12758..e764ce6e12f 100644
--- a/src/plugins/wp/wpPropId.ml
+++ b/src/plugins/wp/wpPropId.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wpPropId.mli b/src/plugins/wp/wpPropId.mli
index 29098180bbe..0d380c56617 100644
--- a/src/plugins/wp/wpPropId.mli
+++ b/src/plugins/wp/wpPropId.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wpRTE.ml b/src/plugins/wp/wpRTE.ml
index a6bc0690c67..e7f12fe261c 100644
--- a/src/plugins/wp/wpRTE.ml
+++ b/src/plugins/wp/wpRTE.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wpRTE.mli b/src/plugins/wp/wpRTE.mli
index 86ce77c668a..8ecce6a0d77 100644
--- a/src/plugins/wp/wpRTE.mli
+++ b/src/plugins/wp/wpRTE.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wpReached.ml b/src/plugins/wp/wpReached.ml
index 549725d8cf1..a52a93aec86 100644
--- a/src/plugins/wp/wpReached.ml
+++ b/src/plugins/wp/wpReached.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wpReached.mli b/src/plugins/wp/wpReached.mli
index 2ef8a243c65..77a7bfa2297 100644
--- a/src/plugins/wp/wpReached.mli
+++ b/src/plugins/wp/wpReached.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wpReport.ml b/src/plugins/wp/wpReport.ml
index d555742566b..24da407425c 100644
--- a/src/plugins/wp/wpReport.ml
+++ b/src/plugins/wp/wpReport.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wpReport.mli b/src/plugins/wp/wpReport.mli
index ea669c6cc78..67b9c05f6fc 100644
--- a/src/plugins/wp/wpReport.mli
+++ b/src/plugins/wp/wpReport.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wpStrategy.ml b/src/plugins/wp/wpStrategy.ml
index bace35e939a..f4e12f47e74 100644
--- a/src/plugins/wp/wpStrategy.ml
+++ b/src/plugins/wp/wpStrategy.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wpStrategy.mli b/src/plugins/wp/wpStrategy.mli
index 8f30ea928ce..d69d701af37 100644
--- a/src/plugins/wp/wpStrategy.mli
+++ b/src/plugins/wp/wpStrategy.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wpTarget.ml b/src/plugins/wp/wpTarget.ml
index 470ab2a0982..38014551a42 100644
--- a/src/plugins/wp/wpTarget.ml
+++ b/src/plugins/wp/wpTarget.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wpTarget.mli b/src/plugins/wp/wpTarget.mli
index 22cc8ce147b..8d687c60f67 100644
--- a/src/plugins/wp/wpTarget.mli
+++ b/src/plugins/wp/wpTarget.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wp_error.ml b/src/plugins/wp/wp_error.ml
index f8f1cf78807..82f25036f48 100644
--- a/src/plugins/wp/wp_error.ml
+++ b/src/plugins/wp/wp_error.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wp_error.mli b/src/plugins/wp/wp_error.mli
index e694acd7fbd..ca6092bbd6f 100644
--- a/src/plugins/wp/wp_error.mli
+++ b/src/plugins/wp/wp_error.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wp_parameters.ml b/src/plugins/wp/wp_parameters.ml
index d7b3d0fe369..96bdd3930df 100644
--- a/src/plugins/wp/wp_parameters.ml
+++ b/src/plugins/wp/wp_parameters.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wp_parameters.mli b/src/plugins/wp/wp_parameters.mli
index c8f5803dd2f..a7ce251dd60 100644
--- a/src/plugins/wp/wp_parameters.mli
+++ b/src/plugins/wp/wp_parameters.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wpo.ml b/src/plugins/wp/wpo.ml
index bed4b06b77b..1490b3613eb 100644
--- a/src/plugins/wp/wpo.ml
+++ b/src/plugins/wp/wpo.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wpo.mli b/src/plugins/wp/wpo.mli
index fa6d1c337f4..f2c11d5a791 100644
--- a/src/plugins/wp/wpo.mli
+++ b/src/plugins/wp/wpo.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wprop.ml b/src/plugins/wp/wprop.ml
index dbe9169dad0..f181c043b8e 100644
--- a/src/plugins/wp/wprop.ml
+++ b/src/plugins/wp/wprop.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/wp/wprop.mli b/src/plugins/wp/wprop.mli
index fe1b5b02fc1..f4635fc3ffa 100644
--- a/src/plugins/wp/wprop.mli
+++ b/src/plugins/wp/wprop.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of WP plug-in of Frama-C.                           *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat a l'energie atomique et aux energies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
-- 
GitLab


From d786a55663afde62abc08b65b7a0a947fb1fb9d7 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Mon, 8 Feb 2021 18:52:49 +0100
Subject: [PATCH 101/141] [headers] headache does not like empty files

---
 src/plugins/dive/Dive.mli                | 2 ++
 src/plugins/dive/server_interface.mli    | 2 ++
 src/plugins/studia/studia_request.mli    | 2 ++
 src/plugins/value/api/values_request.mli | 2 ++
 4 files changed, 8 insertions(+)

diff --git a/src/plugins/dive/Dive.mli b/src/plugins/dive/Dive.mli
index cce51dc83ef..fa8a4b16cfb 100644
--- a/src/plugins/dive/Dive.mli
+++ b/src/plugins/dive/Dive.mli
@@ -19,3 +19,5 @@
 (*  for more details (enclosed in the file licenses/LGPLv2.1).            *)
 (*                                                                        *)
 (**************************************************************************)
+
+(* This plugin does not export anything to the OCaml API. *)
diff --git a/src/plugins/dive/server_interface.mli b/src/plugins/dive/server_interface.mli
index cce51dc83ef..c639db5ea04 100644
--- a/src/plugins/dive/server_interface.mli
+++ b/src/plugins/dive/server_interface.mli
@@ -19,3 +19,5 @@
 (*  for more details (enclosed in the file licenses/LGPLv2.1).            *)
 (*                                                                        *)
 (**************************************************************************)
+
+(* Dive API for the server. Nothing is exported. *)
diff --git a/src/plugins/studia/studia_request.mli b/src/plugins/studia/studia_request.mli
index cce51dc83ef..6f3514109ea 100644
--- a/src/plugins/studia/studia_request.mli
+++ b/src/plugins/studia/studia_request.mli
@@ -19,3 +19,5 @@
 (*  for more details (enclosed in the file licenses/LGPLv2.1).            *)
 (*                                                                        *)
 (**************************************************************************)
+
+(* Studia API for Frama-C server. Nothing is exported. *)
diff --git a/src/plugins/value/api/values_request.mli b/src/plugins/value/api/values_request.mli
index cce51dc83ef..006a2946711 100644
--- a/src/plugins/value/api/values_request.mli
+++ b/src/plugins/value/api/values_request.mli
@@ -19,3 +19,5 @@
 (*  for more details (enclosed in the file licenses/LGPLv2.1).            *)
 (*                                                                        *)
 (**************************************************************************)
+
+(* Eva API to Frama-C server. Nothing is exported. *)
-- 
GitLab


From 0fcba4c5926393ec83c3c5dcfef2c6dfccc02cb3 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Mon, 8 Feb 2021 19:04:23 +0100
Subject: [PATCH 102/141] [headers] proper header handling for Python scripts

---
 headers/headache_config.txt                  |  7 +++++++
 headers/header_spec.txt                      | 22 ++++++++++----------
 share/analysis-scripts/benchmark_database.py |  2 +-
 share/analysis-scripts/find_fun.py           |  2 +-
 share/analysis-scripts/frama_c_results.py    |  2 +-
 share/analysis-scripts/git_utils.py          |  2 +-
 share/analysis-scripts/list_files.py         |  2 +-
 share/analysis-scripts/make_template.py      |  2 +-
 share/analysis-scripts/make_wrapper.py       |  2 +-
 share/analysis-scripts/normalize_jcdb.py     |  2 +-
 share/analysis-scripts/results_display.py    |  2 +-
 share/analysis-scripts/summary.py            |  2 +-
 12 files changed, 28 insertions(+), 21 deletions(-)

diff --git a/headers/headache_config.txt b/headers/headache_config.txt
index 969d2cf1381..f27199a3b4e 100644
--- a/headers/headache_config.txt
+++ b/headers/headache_config.txt
@@ -136,6 +136,13 @@
 ##############
 | ".*\.el" -> frame open: ";" line: ";" close:";"
 
+##########
+# Python #
+##########
+
+| ".*\.py" -> frame open: "#" line: "#" close:"#"
+| ".*\.py" -> skip multiline_match: "#!.*" multiline_match: "#-\*-.*"
+
 ##############
 # Misc files #
 ##############
diff --git a/headers/header_spec.txt b/headers/header_spec.txt
index 35a58061a50..44f5948ae50 100644
--- a/headers/header_spec.txt
+++ b/headers/header_spec.txt
@@ -113,28 +113,28 @@ ptests/.merlin: .ignore
 ptests/ptests.ml: CEA_LGPL
 share/_frama-c: CEA_LGPL
 share/analysis-scripts/analysis.mk: CEA_LGPL
-share/analysis-scripts/benchmark_database.py: .ignore
+share/analysis-scripts/benchmark_database.py: CEA_LGPL
 share/analysis-scripts/clone.sh: .ignore
 share/analysis-scripts/creduce.sh: CEA_LGPL
 share/analysis-scripts/epilogue.mk: CEA_LGPL
 share/analysis-scripts/fc_stubs.c: .ignore
-share/analysis-scripts/frama_c_results.py: .ignore
+share/analysis-scripts/frama_c_results.py: CEA_LGPL
 share/analysis-scripts/cmd-dep.sh: .ignore
 share/analysis-scripts/concat-csv.sh: .ignore
-share/analysis-scripts/find_fun.py: .ignore
+share/analysis-scripts/find_fun.py: CEA_LGPL
 share/analysis-scripts/flamegraph.pl: CDDL
 share/analysis-scripts/function_finder.py: .ignore
-share/analysis-scripts/git_utils.py: .ignore
-share/analysis-scripts/list_files.py: .ignore
-share/analysis-scripts/list_functions.ml: .ignore
-share/analysis-scripts/make_template.py: .ignore
-share/analysis-scripts/make_wrapper.py: .ignore
-share/analysis-scripts/normalize_jcdb.py: .ignore
+share/analysis-scripts/git_utils.py: CEA_LGPL
+share/analysis-scripts/list_files.py: CEA_LGPL
+share/analysis-scripts/list_functions.ml: CEA_LGPL
+share/analysis-scripts/make_template.py: CEA_LGPL
+share/analysis-scripts/make_wrapper.py: CEA_LGPL
+share/analysis-scripts/normalize_jcdb.py: CEA_LGPL
 share/analysis-scripts/parse-coverage.sh: .ignore
 share/analysis-scripts/prologue.mk: CEA_LGPL
 share/analysis-scripts/README.md: .ignore
-share/analysis-scripts/results_display.py: .ignore
-share/analysis-scripts/summary.py: .ignore
+share/analysis-scripts/results_display.py: CEA_LGPL
+share/analysis-scripts/summary.py: CEA_LGPL
 share/analysis-scripts/template.mk: .ignore
 share/compliance/c11_functions.json: .ignore
 share/compliance/c11_headers.json: .ignore
diff --git a/share/analysis-scripts/benchmark_database.py b/share/analysis-scripts/benchmark_database.py
index 53ee4452c23..fa577c5de75 100644
--- a/share/analysis-scripts/benchmark_database.py
+++ b/share/analysis-scripts/benchmark_database.py
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/analysis-scripts/find_fun.py b/share/analysis-scripts/find_fun.py
index 7324da49ef2..18588b293bd 100755
--- a/share/analysis-scripts/find_fun.py
+++ b/share/analysis-scripts/find_fun.py
@@ -4,7 +4,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/analysis-scripts/frama_c_results.py b/share/analysis-scripts/frama_c_results.py
index 0519eda8ecc..9f2847b63f9 100644
--- a/share/analysis-scripts/frama_c_results.py
+++ b/share/analysis-scripts/frama_c_results.py
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/analysis-scripts/git_utils.py b/share/analysis-scripts/git_utils.py
index 38e8ac9cd25..9714a3b1e3a 100644
--- a/share/analysis-scripts/git_utils.py
+++ b/share/analysis-scripts/git_utils.py
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/analysis-scripts/list_files.py b/share/analysis-scripts/list_files.py
index 68457003603..ac822030be8 100755
--- a/share/analysis-scripts/list_files.py
+++ b/share/analysis-scripts/list_files.py
@@ -4,7 +4,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/analysis-scripts/make_template.py b/share/analysis-scripts/make_template.py
index c39b82bd4f4..c986e4551c4 100755
--- a/share/analysis-scripts/make_template.py
+++ b/share/analysis-scripts/make_template.py
@@ -4,7 +4,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/analysis-scripts/make_wrapper.py b/share/analysis-scripts/make_wrapper.py
index 07c314b9d8a..ac42c8d36bf 100755
--- a/share/analysis-scripts/make_wrapper.py
+++ b/share/analysis-scripts/make_wrapper.py
@@ -4,7 +4,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/analysis-scripts/normalize_jcdb.py b/share/analysis-scripts/normalize_jcdb.py
index c578730c143..319a52d252a 100755
--- a/share/analysis-scripts/normalize_jcdb.py
+++ b/share/analysis-scripts/normalize_jcdb.py
@@ -4,7 +4,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/analysis-scripts/results_display.py b/share/analysis-scripts/results_display.py
index 61339bfc021..62ba7aa7976 100644
--- a/share/analysis-scripts/results_display.py
+++ b/share/analysis-scripts/results_display.py
@@ -2,7 +2,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
diff --git a/share/analysis-scripts/summary.py b/share/analysis-scripts/summary.py
index c3b309e80e0..9718a7ddbe4 100755
--- a/share/analysis-scripts/summary.py
+++ b/share/analysis-scripts/summary.py
@@ -4,7 +4,7 @@
 #                                                                        #
 #  This file is part of Frama-C.                                         #
 #                                                                        #
-#  Copyright (C) 2007-2020                                               #
+#  Copyright (C) 2007-2021                                               #
 #    CEA (Commissariat à l'énergie atomique et aux énergies              #
 #         alternatives)                                                  #
 #                                                                        #
-- 
GitLab


From 5725a12cb5a948e03c584f6c8a3bb33ca14aa577 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Mon, 8 Feb 2021 19:21:58 +0100
Subject: [PATCH 103/141] [ci] rely on distributed headache, not internal one.

---
 nix/default.nix | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/nix/default.nix b/nix/default.nix
index 9ca06758301..5e3ef8515c6 100644
--- a/nix/default.nix
+++ b/nix/default.nix
@@ -74,8 +74,12 @@ rec {
   lint = mk_deriv {
         name = "frama-c-lint";
         inherit src;
-        buildInputs = (mk_buildInputs { opamPackages = [ { name = "ocp-indent"; constraint = "=1.7.0"; } ];} )
-                      ++ [ pkgs.bc plugins.headache.installed ];
+        buildInputs =
+          (mk_buildInputs {
+            opamPackages = [
+              { name = "ocp-indent"; constraint = "=1.7.0"; }
+              { name = "headache"; constraint = "=1.05"; }
+            ];} );
         outputs = [ "out" ];
         postPatch = ''
                patchShebangs .
@@ -120,7 +124,11 @@ rec {
   build-distrib-tarball = mk_deriv {
         name = "frama-c-build-distrib-tarball";
         inherit src;
-        buildInputs = buildInputs ++ [ plugins.headache.installed ];
+        buildInputs =
+          (mk_buildInputs {
+            opamPackages = [
+              { name = "headache"; constraint = "=1.05"; }
+            ];} );
         outputs = [ "out" ];
         postPatch = ''
                patchShebangs .
-- 
GitLab


From 3a2a62a3083f63fd0c5fad4a83812d5d61802ca1 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Tue, 9 Feb 2021 08:49:41 +0100
Subject: [PATCH 104/141] [MdR] remove obsolete LICENSE file, from when the
 plug-in wasn't distributed

---
 src/plugins/markdown-report/LICENSE | 9 ---------
 1 file changed, 9 deletions(-)
 delete mode 100644 src/plugins/markdown-report/LICENSE

diff --git a/src/plugins/markdown-report/LICENSE b/src/plugins/markdown-report/LICENSE
deleted file mode 100644
index a2c9b3c9fe9..00000000000
--- a/src/plugins/markdown-report/LICENSE
+++ /dev/null
@@ -1,9 +0,0 @@
-Files in this directory are part of the MarkDown Report Frama-C plug-in.
-
-Copyright (C) 2007-2020
-  CEA (Commissariat à l'énergie atomique et aux énergies
-       alternatives)
-
-All rights reserved.
-Contact CEA LIST for licensing.
-
-- 
GitLab


From 73cf78a5e51a106757aa43f5abf906a72514b2c7 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Tue, 9 Feb 2021 11:17:57 +0100
Subject: [PATCH 105/141] [ci] update frama-ci revision

---
 nix/frama-ci.nix | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/nix/frama-ci.nix b/nix/frama-ci.nix
index 3e705a8ac18..1baced43d4c 100644
--- a/nix/frama-ci.nix
+++ b/nix/frama-ci.nix
@@ -5,8 +5,8 @@ let
     src = builtins.fetchGit {
             "url" = "https://bobot:${password}@git.frama-c.com/frama-c/Frama-CI.git";
             "name" = "Frama-CI";
-            "rev" = "01d423ae0e14b2d0d41e952d261aa859b2a3855e";
-            "ref" = "master";
+            "rev" = "5b4f8aca5b8b93a69d8e6f8904bdd457e4d0edd2";
+            "ref" = "feature/headers/2021";
     };
  in
  {
-- 
GitLab


From d5d3ffd7aee67ef81f325a1ea315aa8e95ed8f63 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Mon, 15 Feb 2021 17:45:11 +0100
Subject: [PATCH 106/141] [ci] bump frama-ci rev

---
 nix/frama-ci.nix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nix/frama-ci.nix b/nix/frama-ci.nix
index 1baced43d4c..e2fc225275a 100644
--- a/nix/frama-ci.nix
+++ b/nix/frama-ci.nix
@@ -5,7 +5,7 @@ let
     src = builtins.fetchGit {
             "url" = "https://bobot:${password}@git.frama-c.com/frama-c/Frama-CI.git";
             "name" = "Frama-CI";
-            "rev" = "5b4f8aca5b8b93a69d8e6f8904bdd457e4d0edd2";
+            "rev" = "614b8c3f2be697384626581d84836d7a41dc6c38";
             "ref" = "feature/headers/2021";
     };
  in
-- 
GitLab


From 7325f5b3c43f310e8c4c252a447dafc4bd71a5fc Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Tue, 16 Feb 2021 08:58:13 +0100
Subject: [PATCH 107/141] [ci] add missing dependency to lint target

---
 nix/default.nix | 1 +
 1 file changed, 1 insertion(+)

diff --git a/nix/default.nix b/nix/default.nix
index 5e3ef8515c6..6b45d562bcc 100644
--- a/nix/default.nix
+++ b/nix/default.nix
@@ -76,6 +76,7 @@ rec {
         inherit src;
         buildInputs =
           (mk_buildInputs {
+            nixPackages = [ pkgs.bc ];
             opamPackages = [
               { name = "ocp-indent"; constraint = "=1.7.0"; }
               { name = "headache"; constraint = "=1.05"; }
-- 
GitLab


From 6dd62079dd092dab27896e4021bea6841e8c9b79 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Wed, 17 Feb 2021 11:43:24 +0100
Subject: [PATCH 108/141] =?UTF-8?q?[man]=20update=20URL=20of=20Frama-C=20B?=
 =?UTF-8?q?TS,=20bump=20=C2=A9=20year=20and=20move=20to=20CC-BY-SA=20licen?=
 =?UTF-8?q?ce?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 man/frama-c.1        | 250 ++++++++++++++++++++-----------------------
 man/frama-c.1.header |  21 +---
 man/frama-c.1.md     |   6 +-
 3 files changed, 126 insertions(+), 151 deletions(-)

diff --git a/man/frama-c.1 b/man/frama-c.1
index 5fd39c4a751..5ee7b85ce79 100644
--- a/man/frama-c.1
+++ b/man/frama-c.1
@@ -1,31 +1,20 @@
 .\"------------------------------------------------------------------------
 .\"                                                                        
-.\"  This file is part of Frama-C.                                         
+.\"  This file is part of Frama-C documentation                            
 .\"                                                                        
 .\"  Copyright (C) 2007-2021                                               
 .\"    CEA (Commissariat à l'énergie atomique et aux énergies              
 .\"         alternatives)                                                  
 .\"                                                                        
-.\"  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).            
-.\"                                                                        
-.\"------------------------------------------------------------------------
+.\"  you can redistribute it and/or modify it under the terms of the
+.\"  CC-BY-SA 4.0 license
 
 .\" DO NOT EDIT THIS FILE!
 .\" This man file has been generated from a Markdown file (frama-c.1.md)
 .\" using pandoc 2.0 or newer. To modify this file, edit the Markdown file
 .\" and run `make man/frama-c.1`.
 
-.TH FRAMA-C 1 2021-01-07
+.TH FRAMA-C 1 2021-10-07
 .SH NAME
 .PP
 frama-c[.byte] - a static analyzer for C programs
@@ -85,16 +74,16 @@ Most options that take no parameter have a corresponding
 option which has the opposite effect.
 .SS Help options
 .TP
-.B -help
+-help
 gives a short usage notice.
 .TP
-.B -kernel-help
+-kernel-help
 prints the list of options recognized by Frama-C\[cq]s kernel
 .TP
-.B -explain
+-explain
 prints a help message for each other option given on the command line
 .TP
-.B -verbose \f[I]n\f[R]
+-verbose \f[I]n\f[R]
 sets verbosity level.
 Defaults to 1.
 Setting it to 0 will output less progress messages.
@@ -103,37 +92,35 @@ This level can also be set on a per-\f[I]plugin\f[R] basis, with option
 Verbosity level of the kernel can be controlled with option
 \f[B]-kernel-verbose\f[R] \f[I]n\f[R].
 .TP
-.B -debug \f[I]n\f[R]
+-debug \f[I]n\f[R]
 sets debugging level.
 Defaults to 0, meaning no debugging messages.
 This option has the same per-plugin (and kernel) specializations as
 \f[B]-verbose\f[R].
 .TP
-.B -quiet
+-quiet
 sets verbosity and debugging level to 0.
 .SS Options controlling Frama-C\[cq]s kernel
 .TP
-.B -absolute-valid-range \f[I]min-max\f[R]
+-absolute-valid-range \f[I]min-max\f[R]
 considers that all numerical addresses in the range \f[I]min-max\f[R]
 are valid.
 Bounds are parsed as OCaml integer constants.
 By default, all numerical addresses are considered invalid.
 .TP
-.B -add-path \f[I]p1[,p2[\&...,pn]]\f[R]
+-add-path \f[I]p1[,p2[\&...,pn]]\f[R]
 adds directories \f[I]p1\f[R] through \f[I]pn\f[R] to the list of
 directories in which plugins are searched.
 .TP
-.B \-add\-symbolic\-path \f[I]p1:n1[,p2:n2[\&...,pn:nn]]\f[]
-replaces each path \f[I]pi\f[] with the name \f[I]ni\f[] when displaying
-file locations in messages.
-.RS
-.RE
+-add-symbolic-path \f[I]p1:n1[,p2:n2[\&...,pn:nn]]\f[R]
+replaces each path \f[I]pi\f[R] with the name \f[I]ni\f[R] when
+displaying file locations in messages.
 .TP
-.B [-no]-aggressive-merging
+[-no]-aggressive-merging
 merges function definitions modulo renaming.
 Defaults to no.
 .TP
-.B [-no]-allow-duplication
+[-no]-allow-duplication
 allows duplication of small blocks during normalization of tests and
 loops.
 Otherwise, normalization uses labels and gotos.
@@ -141,53 +128,53 @@ Bigger blocks and blocks with non-trivial control flow are never
 duplicated.
 Defaults to yes.
 .TP
-.B [-no]-annot
+[-no]-annot
 reads ACSL annotations.
 This is the default.
 Annotations are pre-processed by default.
 Use -no-pp-annot if you don\[cq]t want to expand macros in annotations.
 .TP
-.B -autocomplete \f[I]p1,\&...,pn\f[R]
+-autocomplete \f[I]p1,\&...,pn\f[R]
 lists the options of plugins \f[I]p1,\&...,pn\f[R] in a format suitable
 for autocompletion scripts.
 .TP
-.B -big-ints-hex \f[I]max\f[R]
+-big-ints-hex \f[I]max\f[R]
 integers larger than \f[I]max\f[R] are displayed in hexadecimal (by
 default, all integers are displayed in decimal).
 .TP
-.B -check
+-check
 performs integrity checks on the internal AST (for developers only).
 .TP
-.B [-no]-asm-contracts
+[-no]-asm-contracts
 generates contracts for assembly code written according to gcc\[cq]s
 extended syntax.
 Defaults to yes.
 .TP
-.B [-no]-asm-contracts-auto-validate
+[-no]-asm-contracts-auto-validate
 automatically marks contracts generated from asm as valid.
 Defaults to no.
 .TP
-.B -c11
+-c11
 enables (partial) C11 compatibility, e.g.\ typedef redefinitions.
 Defaults to no.
 .TP
-.B [-no]-collapse-call-cast
+[-no]-collapse-call-cast
 allows implicit cast between the value returned by a function and the
 lvalue it is assigned to.
 Otherwise, a temporary variable is used and the cast is made explicit.
 Defaults to yes.
 .TP
-.B [-no]-constfold
+[-no]-constfold
 folds all syntactically constant expressions in the code before
 analyses.
 Defaults to no.
 .TP
-.B -const-readonly
+-const-readonly
 variables with const qualifier must be actually constant.
 Defaults to yes.
 The opposite option is \f[B]-unsafe-writable\f[R].
 .TP
-.B [-no]-continue-annot-error
+[-no]-continue-annot-error
 when analyzing an annotation, the default behavior (the \f[B]-no\f[R]
 version of this option) when a typechecking error occurs is to reject
 the source file as is the case for typechecking errors within the C
@@ -201,7 +188,7 @@ code are still fatal, though).
 \f[B]Deprecated\f[R]: use \f[B]-kernel-warn-key annot-error\f[R]
 instead.
 .TP
-.B -cpp-command \f[I]cmd\f[R]
+-cpp-command \f[I]cmd\f[R]
 uses \f[I]cmd\f[R] as the command to pre-process C files.
 Defaults to the \f[B]CPP\f[R] environment variable or to
 .RS
@@ -221,7 +208,7 @@ to mark the position of \f[I]\f[R] and \f[I]\f[R] respectively.
 Note that this option is often better replaced by
 \f[B]-cpp-extra-args\f[R].
 .TP
-.B -cpp-extra-args \f[I]args\f[R]
+-cpp-extra-args \f[I]args\f[R]
 gives additional arguments to the pre-processor.
 Pre-processing annotations is done in two separate pre-processing
 stages.
@@ -233,18 +220,18 @@ pre-processed.
 should not be used twice (such as additional include directives or macro
 definitions) must thus go there instead of \f[B]-cpp-command\f[R].
 .TP
-.B -cpp-extra-args-per-file \f[I]file1:args1,\&...,filen:argsn\f[R]
+-cpp-extra-args-per-file \f[I]file1:args1,\&...,filen:argsn\f[R]
 like \f[B]-cpp-extra-args\f[R], but the arguments only apply to the
 specified files.
 .TP
-.B [-no]-cpp-frama-c-compliant
+[-no]-cpp-frama-c-compliant
 indicates that the chosen preprocessor complies to some Frama-C
 requirements, such as accepting the same set of options as GNU cpp, and
 accepting architecture-specific options such as -m32/-m64.
 Default values depend on the installed preprocessor at configure time.
 See also \f[B]-pp-annot\f[R].
 .TP
-.B [-no]-autoload-plugins
+[-no]-autoload-plugins
 when on, load all the dynamic plugins found in the search path (see
 \f[B]-print-plugin-path\f[R] for more information on the default search
 path).
@@ -252,28 +239,28 @@ Otherwise, only plugins requested by \f[B]-load-module\f[R] will be
 loaded.
 Defaults to on.
 .TP
-.B -enums \f[I]repr\f[R]
+-enums \f[I]repr\f[R]
 choose the way the representation of enumerated types is determined.
 \f[B]frama-c -enums help\f[R] gives the list of available options.
 Default is \f[B]gcc-enums\f[R].
 .TP
-.B -float-digits \f[I]n\f[R]
+-float-digits \f[I]n\f[R]
 when outputting floating-point numbers, display \f[I]n\f[R] digits.
 Defaults to 12.
 .TP
-.B -float-flush-to-zero
+-float-flush-to-zero
 floating point operations flush to zero.
 .TP
-.B -float-hex
+-float-hex
 display floats as hexadecimal.
 .TP
-.B -float-normal
+-float-normal
 display floats with the standard OCaml routine.
 .TP
-.B -float-relative
+-float-relative
 display float intervals as [ \f[I]lower_bound\f[R]++\f[I]width\f[R] ].
 .TP
-.B [-no]-frama-c-stdlib
+[-no]-frama-c-stdlib
 adds \f[B]-I$FRAMAC_SHARE/libc\f[R] to the options given to the cpp
 command.
 If \f[B]-cpp-frama-c-compliant\f[R] is not false, also adds
@@ -281,7 +268,7 @@ If \f[B]-cpp-frama-c-compliant\f[R] is not false, also adds
 header files.
 Defaults to yes.
 .TP
-.B -implicit-function-declaration \f[I]action\f[R]
+-implicit-function-declaration \f[I]action\f[R]
 warns or aborts when a function is called before it has been declared.
 \f[I]action\f[R] can be one of \f[B]ignore\f[R], \f[B]warn\f[R], or
 \f[B]error\f[R].
@@ -292,34 +279,34 @@ Defaults to \f[B]warn\f[R].
 \f[B]Deprecated\f[R]: use \f[B]-kernel-warn-key
 typing:implicit-function-declaration\f[R] instead.
 .TP
-.B -initialized-padding-locals
+-initialized-padding-locals
 implicit initialization of locals sets padding bits to 0.
 If false, padding bits are left uninitialized.
 Defaults to yes.
 .TP
-.B -inline-calls \f[I]f1,\&...,fn\f[R]
+-inline-calls \f[I]f1,\&...,fn\f[R]
 syntactically inlines calls to functions \f[I]f1,\&...,fn\f[R].
 Use \f[B]\[at]inline\f[R] to select all functions with attribute
 \f[I]inline\f[R].
 Recursive functions are inlined only at the first level.
 Calls via function pointers are not inlined.
 .TP
-.B -journal-disable
+-journal-disable
 do not output a journal of the current session.
 See \f[B]-journal-enable\f[R].
 .TP
-.B -journal-enable
+-journal-enable
 on by default, dumps a journal of all the actions performed during the
 current Frama-C session in the form of an OCaml script that can be
 replayed with \f[B]-load-script\f[R].
 The name of the script can be set with the \f[B]-journal-name\f[R]
 option.
 .TP
-.B -journal-name \f[I]name\f[R]
+-journal-name \f[I]name\f[R]
 sets the name of the journal file (without the \f[I].ml\f[R] extension).
 Defaults to \f[B]frama_c_journal\f[R].
 .TP
-.B -json-compilation-database \f[I]path\f[R]
+-json-compilation-database \f[I]path\f[R]
 use \f[I]path\f[R] as a JSON compilation database (see
 <https://clang.llvm.org/docs/JSONCompilationDatabase.html> for more
 information): each file preprocessed by Frama-C will include
@@ -329,21 +316,21 @@ If \f[I]path\f[R] is a directory, use
 \f[B]<path>/compile_commands.json\f[R].
 Disabled by default.
 .TP
-.B [-no]-keep-comments
+[-no]-keep-comments
 tries to preserve comments when pretty-printing the source code.
 Defaults to no.
 .TP
-.B [-no]-keep-switch
+[-no]-keep-switch
 when \f[B]-simplify-cfg\f[R] is set, keeps switch statements.
 Defaults to no.
 .TP
-.B -keep-unused-specified-functions
+-keep-unused-specified-functions
 see \f[B]-remove-unused-specified-functions\f[R].
 .TP
-.B -keep-unused-types
+-keep-unused-types
 see \f[B]-remove-unused-types\f[R].
 .TP
-.B -kernel-log \f[I]kind:file\f[R]
+-kernel-log \f[I]kind:file\f[R]
 copies log messages from the Frama-C\[cq]s kernel to file.
 \f[I]kind\f[R] specifies which kinds of messages to be copied
 (e.g.\ \f[B]w\f[R] for warnings, \f[B]e\f[R] for errors, etc.).
@@ -351,7 +338,7 @@ See \f[B]-kernel-help\f[R] for more details.
 Can also be set on a per-plugin basis, with option
 -\f[I]<plugin>\f[R]-\f[B]log\f[R].
 .TP
-.B -kernel-msg-key \f[I]k1,\&...,kn\f[R]
+-kernel-msg-key \f[I]k1,\&...,kn\f[R]
 controls the emission of messages based on categories.
 Use \f[B]-kernel-msg-key help\f[R] to get a list of available
 categories, and \f[B]-kernel-msg-key=\[lq]*\[rq]\f[R] to control all
@@ -364,7 +351,7 @@ Can also be set on a per-plugin basis, with option
 -\f[I]<plugin>\f[R]-\f[B]msg-key\f[R].
 Note that each plugin has its own set of categories.
 .TP
-.B -kernel-warn-key \f[I]k1=a1,\&...,kn=an\f[R]
+-kernel-warn-key \f[I]k1=a1,\&...,kn=an\f[R]
 controls the emission of warnings based on categories: for each warning
 category \f[I]k\f[R], associate action \f[I]a\f[R].
 Use \f[B]-kernel-warn-key help\f[R] to get a list of available warning
@@ -376,36 +363,34 @@ Omitting the action is equivalent to setting it to \f[B]active\f[R].
 Warning categories can also be set on a per-plugin basis, with option
 -\f[I]<plugin>\f[R]\f[B]-warn-key\f[R].
 .TP
-.B [-no]-lib-entry
+[-no]-lib-entry
 indicates that the entry point is called during program execution.
 This implies in particular that global variables cannot be assumed to
 have their initial values.
 The default is \f[B]-no-lib-entry\f[R]: the entry point is also the
 starting point of the program and globals have their initial value.
 .TP
-.B -load \f[I]file\f[R]
+-load \f[I]file\f[R]
 loads the (previously saved) state contained in \f[I]file\f[R].
 .TP
-.B -load-module \f[I]SPEC\f[R]
+-load-module \f[I]SPEC\f[R]
 dynamically load OCaml plug-ins, modules and scripts.
 Each \f[I]SPEC\f[R] can be an OCaml source or object file, with or
 without extension, or a Findlib package.
 Loading order is preserved and additional dependencies can be listed in
 *\f[B].depend\f[R] files.
 .TP
-.B -load-script \f[I]SPEC\f[R]
+-load-script \f[I]SPEC\f[R]
 alias for option \f[B]-load-module\f[R].
 .TP
-.B -machdep \f[I]machine\f[R]
+-machdep \f[I]machine\f[R]
 uses \f[I]machine\f[R] as the current machine-dependent configuration
 (size of the various integer types, endiandness, \&...).
 The list of currently supported machines is available through option
 \f[I]-machdep help\f[R].
-Default is \f[B]x86_64\f[R].
-The environment variable FRAMAC_MACHDEP can be used to override the default
-value. The command line parameter still has priority over the default value.
+Default is \f[B]x86_32\f[R].
 .TP
-.B -main \f[I]f\f[R]
+-main \f[I]f\f[R]
 sets \f[I]f\f[R] as the entry point of the analysis.
 Defaults to \f[B]main\f[R].
 By default, it is considered as the starting point of the program under
@@ -413,24 +398,24 @@ analysis.
 Use \f[B]-lib-entry\f[R] if \f[I]f\f[R] is supposed to be called in the
 middle of an execution.
 .TP
-.B -obfuscate
+-obfuscate
 prints an obfuscated version of the code (where original identifiers are
 replaced by meaningless ones) and exits.
 The correspondence table between original and new symbols is kept at the
 beginning of the result.
 .TP
-.B -ocode \f[I]file\f[R]
+-ocode \f[I]file\f[R]
 redirects pretty-printed code to \f[I]file\f[R] instead of standard
 output.
 .TP
-.B [-no]-orig-name
+[-no]-orig-name
 During the normalization phase, some variables may get renamed when
 different variables with the same name can co-exist (e.g.\ a global
 variable and a formal parameter).
 When this option is on, a message is printed each time this occurs.
 Defaults to no.
 .TP
-.B [-no]-pp-annot
+[-no]-pp-annot
 pre-processes annotations.
 This is currently only possible when using gcc (or GNU cpp)
 pre-processor.
@@ -438,117 +423,117 @@ The default is to pre-process annotations when the default pre-processor
 is identified as GNU or GNU-like.
 See also \f[B]-cpp-frama-c-compliant\f[R].
 .TP
-.B [-no]-print
+[-no]-print
 pretty-prints the source code as normalized by CIL.
 Defaults to no.
 .TP
-.B -print-cpp-commands
+-print-cpp-commands
 outputs the preprocessing commands for all input files.
 .TP
-.B -print-config-json
+-print-config-json
 outputs extensive Frama-C configuration data in JSON format.
 .TP
-.B [-no]-print-libc
+[-no]-print-libc
 expands \f[B]#include\f[R] directives in the pretty-printed CIL code for
 files in the Frama-C standard library.
 Defaults to no.
 .TP
-.B -print-libpath
+-print-libpath
 outputs the directory where the Frama-C kernel library is installed.
 .TP
-.B -print-path
+-print-path
 alias of \f[B]-print-share-path\f[R].
 .TP
-.B -print-plugin-path
+-print-plugin-path
 outputs the directory where Frama-C searches its plugins (can be
 overridden by the \f[B]FRAMAC_PLUGIN\f[R] variable and the
 \f[B]-add-path\f[R] option).
 .TP
-.B -print-share-path
+-print-share-path
 outputs the directory where Frama-C stores its data (can be overridden
 by the \f[B]FRAMAC_SHARE\f[R] variable).
 .TP
-.B [-no]-remove-exn
+[-no]-remove-exn
 transforms throw and try/catch statements into normal C functions.
 Defaults to no, unless the input source language has an exception
 mechanism.
 .TP
-.B -remove-inlined \f[I]f1,\&...,fn\f[R]
+-remove-inlined \f[I]f1,\&...,fn\f[R]
 removes inlined functions \f[I]f1,\&...,fn\f[R] from the AST, which must
 have been given to \f[B]-inline-calls\f[R].
 Note: this option does not check if the given functions were fully
 inlined.
 .TP
-.B -remove-projects \f[I]p1,\&...,pn\f[R]
+-remove-projects \f[I]p1,\&...,pn\f[R]
 removes the given projects \f[I]p1,\&...,pn\f[R].
 \f[B]\[at]all_but_current\f[R] removes all projects but the current one.
 .TP
-.B -remove-unused-specified-functions
+-remove-unused-specified-functions
 keeps function prototypes that have an ACSL specification but are not
 used in the code.
 This is the default.
 Functions having the attribute \f[B]FRAMAC_BUILTIN\f[R] are always kept.
 .TP
-.B -remove-unused-types
+-remove-unused-types
 remove types and struct/union/enum declarations that are not referenced
 anywhere else in the code.
 This is the default.
 Use \f[B]-keep-unused-types\f[R] to keep these definitions.
 .TP
-.B -safe-arrays
+-safe-arrays
 for multidimensional arrays or arrays that are fields inside structs,
 assumes that all accesses must be in bound (set by default).
 The opposite option is \f[B]-unsafe-arrays\f[R].
 .TP
-.B -save \f[I]file\f[R]
+-save \f[I]file\f[R]
 saves Frama-C\[cq]s state into \f[I]file\f[R] after analyses have taken
 place.
 .TP
-.B -session \f[I]s\f[R]
+-session \f[I]s\f[R]
 sets \f[I]s\f[R] as the directory in which session files are searched.
 .TP
-.B [-no]-set-project-as-default
+[-no]-set-project-as-default
 the current project becomes the default one (and so future
 \f[B]-then\f[R] sequences are applied on it).
 Defaults to no.
 .TP
-.B [-no]-simplify-cfg
+[-no]-simplify-cfg
 removes \f[B]break\f[R], \f[B]continue\f[R] and \f[B]switch\f[R]
 statements before analyses.
 Defaults to no.
 .TP
-.B [-no]-simplify-trivial-loops
+[-no]-simplify-trivial-loops
 simplifies trivial loops such as \f[B]do \&... while (0)\f[R] loops.
 Defaults to yes.
 .TP
-.B -then
+-then
 allows one to compose analyses: a first run of Frama-C will occur with
 the options before \f[B]-then\f[R] and a second run will be done with
 the options after \f[B]-then\f[R] on the current project from the first
 run.
 .TP
-.B -then-last
+-then-last
 like \f[B]-then\f[R], but the second group of actions is executed on the
 last project created by a program transformer.
 .TP
-.B -then-on \f[I]prj\f[R]
+-then-on \f[I]prj\f[R]
 similar to \f[B]-then\f[R] except that the second run is performed in
 project \f[I]prj\f[R].
 If no such project exists, Frama-C exits with an error.
 .TP
-.B -then-replace
+-then-replace
 like \f[B]-then-last\f[R], but also removes the previous current
 project.
 .TP
-.B -time \f[I]file\f[R]
+-time \f[I]file\f[R]
 appends user time and date in the given file when Frama-C exits.
 .TP
-.B -typecheck
+-typecheck
 forces typechecking of the source files.
 This option is only relevant if no further analysis is requested (as
 typechecking will implicitly occur before the analysis is launched).
 .TP
-.B -ulevel \f[I]n\f[R]
+-ulevel \f[I]n\f[R]
 syntactically unroll loops \f[I]n\f[R] times before the analysis.
 This can be quite costly and some plugins (e.g.\ Eva) provide more
 efficient ways to perform the same thing.
@@ -557,7 +542,7 @@ This can also be activated on a per-loop basis via the \f[B]loop pragma
 unroll \f[R] directive.
 A negative value for \f[I]n\f[R] will inhibit such pragmas.
 .TP
-.B [-no]-ulevel-force
+[-no]-ulevel-force
 ignores \f[B]UNROLL\f[R] loop pragmas disabling unrolling.
 .PP
 [-no]-unicode outputs ACSL formulas with UTF-8 characters.
@@ -566,20 +551,20 @@ When given the \f[B]-no-unicode\f[R] option, Frama-C will use the ASCII
 version instead.
 See the ACSL manual for the correspondence.
 .TP
-.B -unsafe-arrays
+-unsafe-arrays
 see \f[B]-safe-arrays\f[R].
 .TP
-.B [-no]-unspecified-access
+[-no]-unspecified-access
 checks that read/write accesses occurring in an unspecified order
 (according to the C standard\[cq]s notion of sequence points) are
 performed on separate locations.
 With \f[B]-no-unspecified-access\f[R], assumes that it is always the
 case (this is the default).
 .TP
-.B -version
+-version
 outputs the version string of Frama-C.
 .TP
-.B -warn-decimal-float \f[I]freq\f[R]
+-warn-decimal-float \f[I]freq\f[R]
 warns when a floating-point constant cannot be exactly represented
 (e.g.\ 0.1).
 \f[I]freq\f[R] can be one of \f[B]none\f[R], \f[B]once\f[R], or
@@ -590,41 +575,41 @@ warns when a floating-point constant cannot be exactly represented
 \f[B]Deprecated\f[R]: use \f[B]-kernel-warn-key
 parser:decimal-float=once\f[R] (and variants) instead.
 .TP
-.B [-no]-warn-invalid-pointer
+[-no]-warn-invalid-pointer
 generate alarms for invalid pointer arithmetic.
 Defaults to no.
 .TP
-.B [-no]-warn-left-shift-negative
+[-no]-warn-left-shift-negative
 generate alarms for signed left shifts on negative values.
 Defaults to yes.
 .TP
-.B [-no]-warn-right-shift-negative
+[-no]-warn-right-shift-negative
 generate alarms for signed right shifts on negative values.
 Defaults to no.
 .TP
-.B [-no]-warn-pointer-downcast
+[-no]-warn-pointer-downcast
 generates alarms when the downcast of a pointer may exceed the
 destination range.
 Defaults to yes.
 .TP
-.B [-no]-warn-signed-downcast
+[-no]-warn-signed-downcast
 generates alarms when signed downcasts may exceed the destination range.
 Defaults to no.
 .TP
-.B [-no]-warn-signed-overflow
+[-no]-warn-signed-overflow
 generates alarms for signed operations that overflow.
 Defaults to yes.
 .TP
-.B [-no]-warn-unsigned-downcast
+[-no]-warn-unsigned-downcast
 generates alarms when unsigned downcasts may exceed the destination
 range.
 Defaults to no.
 .TP
-.B [-no]-warn-unsigned-overflow
+[-no]-warn-unsigned-overflow
 generates alarms for unsigned operations that overflow.
 Defaults to no.
 .TP
-.B [-no]-warn-invalid-bool
+[-no]-warn-invalid-bool
 generates alarms for reads of trap representations of _Bool lvalues.
 Defaults to yes.
 .SS Plugin-specific options
@@ -638,22 +623,22 @@ frama-c -plugin-help
 will give the list of options that are specific to the plugin.
 .SH EXIT STATUS
 .TP
-.B 0
+0
 Successful execution
 .TP
-.B 1
+1
 Invalid user input
 .TP
-.B 2
+2
 User interruption (kill or equivalent)
 .TP
-.B 3
+3
 Unimplemented feature
 .TP
-.B 4 5 6
+4 5 6
 Internal error
 .TP
-.B 125
+125
 Unknown error
 .PP
 Exit statuses greater than 2 can be considered as a bug (or a feature
@@ -664,21 +649,22 @@ Frama-C\[cq]s BTS (see below).
 It is possible to control the places where Frama-C looks for its files
 through the following variables.
 .TP
-.B FRAMAC_LIB
+FRAMAC_LIB
 The directory where kernel\[cq]s compiled interfaces are installed.
 .TP
-.B FRAMAC_PLUGIN
+FRAMAC_PLUGIN
 The directory where Frama-C can find standard plugins.
 If you wish to have plugins in several places, use \f[B]-add-path\f[R]
 instead.
 .TP
-.B FRAMAC_SHARE
+FRAMAC_SHARE
 The directory where Frama-C data (e.g.\ its version of the standard
 library) is installed.
 .SH SEE ALSO
 .PP
-Frama-C user manual: http://frama-c.com/download/frama-c-user-manual.pdf
+Frama-C user manual:
+https://frama-c.com/download/frama-c-user-manual.pdf
 .PP
-Frama-C homepage: http://frama-c.com
+Frama-C homepage: https://frama-c.com
 .PP
-Frama-C BTS: http://bts.frama-c.com
+Frama-C BTS: https://git.frama-c.com/pub/frama-c/issues
diff --git a/man/frama-c.1.header b/man/frama-c.1.header
index c70585242be..6468af74eb7 100644
--- a/man/frama-c.1.header
+++ b/man/frama-c.1.header
@@ -1,28 +1,17 @@
 .\"------------------------------------------------------------------------
 .\"                                                                        
-.\"  This file is part of Frama-C.                                         
+.\"  This file is part of Frama-C documentation                            
 .\"                                                                        
-.\"  Copyright (C) 2007-2020                                               
+.\"  Copyright (C) 2007-2021                                               
 .\"    CEA (Commissariat à l'énergie atomique et aux énergies              
 .\"         alternatives)                                                  
 .\"                                                                        
-.\"  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).            
-.\"                                                                        
-.\"------------------------------------------------------------------------
+.\"  you can redistribute it and/or modify it under the terms of the
+.\"  CC-BY-SA 4.0 license
 
 .\" DO NOT EDIT THIS FILE!
 .\" This man file has been generated from a Markdown file (frama-c.1.md)
 .\" using pandoc 2.0 or newer. To modify this file, edit the Markdown file
 .\" and run `make man/frama-c.1`.
 
-.TH FRAMA-C 1 2020-10-07
+.TH FRAMA-C 1 2021-10-07
diff --git a/man/frama-c.1.md b/man/frama-c.1.md
index 7f71c13c8b9..27543f73374 100644
--- a/man/frama-c.1.md
+++ b/man/frama-c.1.md
@@ -547,8 +547,8 @@ is installed.
 
 # SEE ALSO
 
-Frama-C user manual: http://frama-c.com/download/frama-c-user-manual.pdf
+Frama-C user manual: https://frama-c.com/download/frama-c-user-manual.pdf
 
-Frama-C homepage: http://frama-c.com
+Frama-C homepage: https://frama-c.com
 
-Frama-C BTS: http://bts.frama-c.com
+Frama-C BTS: https://git.frama-c.com/pub/frama-c/issues
-- 
GitLab


From 91f1e6da07a4b3e3d61fc7c6cde8fbca5c4951e8 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Wed, 17 Feb 2021 13:39:39 +0100
Subject: [PATCH 109/141] [man] simplify production of man/frama-c.1

---
 Makefile                |  4 ++--
 headers/header_spec.txt |  2 +-
 man/frama-c.1           |  6 ++++--
 man/frama-c.1.header    | 17 -----------------
 man/frama-c.1.md        | 22 ++++++++++++++++++++++
 5 files changed, 29 insertions(+), 22 deletions(-)
 delete mode 100644 man/frama-c.1.header

diff --git a/Makefile b/Makefile
index 43d9049ae82..e83a99de616 100644
--- a/Makefile
+++ b/Makefile
@@ -1634,10 +1634,10 @@ dots: $(ALL_CMO)
 	$(QUIET_MAKE) doc/call_graph.ps
 
 # pandoc is required to regenerate the manpage
-man/frama-c.1: man/frama-c.1.header man/frama-c.1.md
+man/frama-c.1: man/frama-c.1.md Makefile
 	$(PRINT) 'generating $@'
 	$(RM) $@
-	pandoc -s -t man -H $^ | tail -n +5 > man/frama-c.1
+	pandoc -s -t man $< > $@
 	$(CHMOD_RO) $@
 
 # Checking consistency with the current implementation
diff --git a/headers/header_spec.txt b/headers/header_spec.txt
index 44f5948ae50..412e563ceb4 100644
--- a/headers/header_spec.txt
+++ b/headers/header_spec.txt
@@ -106,7 +106,7 @@ licenses/CDDL-1.0: .ignore
 licenses/LGPLv2: .ignore
 licenses/LGPLv2.1: .ignore
 licenses/Q_MODIFIED_LICENSE: .ignore
-man/frama-c.1: CEA_LGPL
+man/frama-c.1: .ignore
 opam/opam: .ignore
 ptests/.gitignore: .ignore
 ptests/.merlin: .ignore
diff --git a/man/frama-c.1 b/man/frama-c.1
index 5ee7b85ce79..a0173eeecbf 100644
--- a/man/frama-c.1
+++ b/man/frama-c.1
@@ -1,3 +1,7 @@
+.\" Automatically generated by Pandoc 2.11.3
+.\"
+.TH "FRAMA-C" "1" "" "2021-02-16" ""
+.hy
 .\"------------------------------------------------------------------------
 .\"                                                                        
 .\"  This file is part of Frama-C documentation                            
@@ -13,8 +17,6 @@
 .\" This man file has been generated from a Markdown file (frama-c.1.md)
 .\" using pandoc 2.0 or newer. To modify this file, edit the Markdown file
 .\" and run `make man/frama-c.1`.
-
-.TH FRAMA-C 1 2021-10-07
 .SH NAME
 .PP
 frama-c[.byte] - a static analyzer for C programs
diff --git a/man/frama-c.1.header b/man/frama-c.1.header
deleted file mode 100644
index 6468af74eb7..00000000000
--- a/man/frama-c.1.header
+++ /dev/null
@@ -1,17 +0,0 @@
-.\"------------------------------------------------------------------------
-.\"                                                                        
-.\"  This file is part of Frama-C documentation                            
-.\"                                                                        
-.\"  Copyright (C) 2007-2021                                               
-.\"    CEA (Commissariat à l'énergie atomique et aux énergies              
-.\"         alternatives)                                                  
-.\"                                                                        
-.\"  you can redistribute it and/or modify it under the terms of the
-.\"  CC-BY-SA 4.0 license
-
-.\" DO NOT EDIT THIS FILE!
-.\" This man file has been generated from a Markdown file (frama-c.1.md)
-.\" using pandoc 2.0 or newer. To modify this file, edit the Markdown file
-.\" and run `make man/frama-c.1`.
-
-.TH FRAMA-C 1 2021-10-07
diff --git a/man/frama-c.1.md b/man/frama-c.1.md
index 27543f73374..5ed2c0f2b23 100644
--- a/man/frama-c.1.md
+++ b/man/frama-c.1.md
@@ -1,3 +1,25 @@
+---
+title: 'FRAMA-C(1) 2021-02-16'
+header-includes:
+- |
+  ```{=man}
+  .\"------------------------------------------------------------------------
+  .\"                                                                        
+  .\"  This file is part of Frama-C documentation                            
+  .\"                                                                        
+  .\"  Copyright (C) 2007-2021                                               
+  .\"    CEA (Commissariat à l'énergie atomique et aux énergies              
+  .\"         alternatives)                                                  
+  .\"                                                                        
+  .\"  you can redistribute it and/or modify it under the terms of the
+  .\"  CC-BY-SA 4.0 license
+
+  .\" DO NOT EDIT THIS FILE!
+  .\" This man file has been generated from a Markdown file (frama-c.1.md)
+  .\" using pandoc 2.0 or newer. To modify this file, edit the Markdown file
+  .\" and run `make man/frama-c.1`.
+  ```
+...
 # NAME
 
 frama-c[.byte] - a static analyzer for C programs
-- 
GitLab


From af70a04aa6501aa87f4421b33d8d8f99c850797f Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Wed, 17 Feb 2021 13:40:42 +0100
Subject: [PATCH 110/141] [Makefile] distribute cg_viewer.yes.ml even if
 current env does not have dgraph

---
 Makefile | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index e83a99de616..8ea18cfabc8 100644
--- a/Makefile
+++ b/Makefile
@@ -785,12 +785,11 @@ PLUGIN_DIR:=src/plugins/callgraph
 PLUGIN_CMO:= options journalize subgraph cg services uses register
 ifeq ($(HAS_DGRAPH),yes)
 PLUGIN_GUI_CMO:=cg_viewer
-PLUGIN_DISTRIB_EXTERNAL:=cg_viewer.yes.ml
 PLUGIN_GENERATED:=$(PLUGIN_DIR)/cg_viewer.ml
 else
 PLUGIN_GUI_CMO:=
-PLUGIN_DISTRIB_EXTERNAL:=cg_viewer.ml
 endif
+PLUGIN_DISTRIB_EXTERNAL:=cg_viewer.yes.ml
 PLUGIN_CMI:= callgraph_api
 PLUGIN_INTERNAL_TEST:=yes
 PLUGIN_TESTS_DIRS:=callgraph
-- 
GitLab


From 345e0e0c269d2b32ebc3b3f54fd3a5e2cdc57319 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Wed, 17 Feb 2021 14:07:43 +0100
Subject: [PATCH 111/141] .gitignore

---
 .gitignore | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.gitignore b/.gitignore
index 509b46e7ac9..10c4807deeb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -118,6 +118,11 @@ autom4te.cache
 /doc/code/qed
 /doc/code/wp
 
+/doc/developer/tutorial/viewcfg/src/META.frama-c-viewcfg
+/doc/developer/tutorial/viewcfg/src/Makefile
+/doc/developer/tutorial/viewcfg/src/gui/
+/doc/developer/tutorial/viewcfg/src/top/
+
 /doc/doxygen
 
 /doc/pdg/call-f.eps
-- 
GitLab


From d635d4a8d2f4acdc9ed58a757dc141a91b97f525 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Wed, 17 Feb 2021 15:37:24 +0100
Subject: [PATCH 112/141] [headers] No headers in tests

---
 tests/syntax/ghost_cv_var_decl.ml | 21 ---------------------
 1 file changed, 21 deletions(-)

diff --git a/tests/syntax/ghost_cv_var_decl.ml b/tests/syntax/ghost_cv_var_decl.ml
index 7d60ff48a6a..4f307bc08e3 100644
--- a/tests/syntax/ghost_cv_var_decl.ml
+++ b/tests/syntax/ghost_cv_var_decl.ml
@@ -1,24 +1,3 @@
-(**************************************************************************)
-(*                                                                        *)
-(*  This file is part of Frama-C.                                         *)
-(*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
-(*    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.                   *)
-(*                                                                        *)
-(**************************************************************************)
-
 open Cil_types
 
 let rec ghost_status fmt lval =
-- 
GitLab


From 3085bfa01dfa3e1abca23e647c967d48191160e4 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@m4x.org>
Date: Wed, 17 Feb 2021 16:57:22 +0100
Subject: [PATCH 113/141] [ci] use master branch of Frama-CI following merge

---
 nix/frama-ci.nix | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/nix/frama-ci.nix b/nix/frama-ci.nix
index e2fc225275a..9f7790b045b 100644
--- a/nix/frama-ci.nix
+++ b/nix/frama-ci.nix
@@ -5,8 +5,8 @@ let
     src = builtins.fetchGit {
             "url" = "https://bobot:${password}@git.frama-c.com/frama-c/Frama-CI.git";
             "name" = "Frama-CI";
-            "rev" = "614b8c3f2be697384626581d84836d7a41dc6c38";
-            "ref" = "feature/headers/2021";
+            "rev" = "78a52234efc6489f56ce927937e569e1a1476a7d";
+            "ref" = "master";
     };
  in
  {
-- 
GitLab


From 2fd32d157a61c85f18cc8ce80dc62a5a20541872 Mon Sep 17 00:00:00 2001
From: Virgile Prevosto <virgile.prevosto@cea.fr>
Date: Wed, 17 Feb 2021 18:18:33 +0100
Subject: [PATCH 114/141] Update nix/frama-ci.*

---
 nix/frama-ci.nix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nix/frama-ci.nix b/nix/frama-ci.nix
index 9f7790b045b..7cfc5f43524 100644
--- a/nix/frama-ci.nix
+++ b/nix/frama-ci.nix
@@ -5,7 +5,7 @@ let
     src = builtins.fetchGit {
             "url" = "https://bobot:${password}@git.frama-c.com/frama-c/Frama-CI.git";
             "name" = "Frama-CI";
-            "rev" = "78a52234efc6489f56ce927937e569e1a1476a7d";
+            "rev" = "285cc9569c1ae0bfadb51320ba7d1d4c73b6bba0";
             "ref" = "master";
     };
  in
-- 
GitLab


From f45e591d0d338c26d76e53cdd02fbae8d65e24d5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Loi=CC=88c=20Correnson?= <loic.correnson@cea.fr>
Date: Thu, 4 Feb 2021 17:47:17 +0100
Subject: [PATCH 115/141] [kernel] fusion of admit lemmas and axioms

---
 src/kernel_internals/parsing/logic_parser.mly |  8 +-
 src/kernel_internals/typing/mergecil.ml       | 18 ++--
 src/kernel_services/ast_data/cil_types.mli    |  5 +-
 src/kernel_services/ast_data/property.ml      | 53 +++--------
 src/kernel_services/ast_data/property.mli     |  9 --
 .../ast_data/property_status.ml               |  8 +-
 .../ast_printing/cil_printer.ml               | 11 ++-
 .../ast_printing/cil_types_debug.ml           |  4 +-
 .../ast_printing/description.ml               |  9 +-
 .../ast_printing/logic_print.ml               | 11 ++-
 src/kernel_services/ast_queries/cil.ml        |  6 +-
 .../ast_queries/cil_datatype.ml               |  8 +-
 src/kernel_services/ast_queries/filecheck.ml  |  2 +-
 .../ast_queries/logic_typing.ml               | 16 +---
 .../ast_queries/logic_utils.ml                | 10 +--
 src/kernel_services/parsetree/logic_ptree.mli | 13 ++-
 src/plugins/aorai/aorai_utils.ml              |  2 +-
 src/plugins/gui/design.ml                     | 11 +--
 src/plugins/gui/filetree.ml                   |  2 +-
 src/plugins/gui/history.ml                    |  4 +-
 src/plugins/gui/property_navigator.ml         |  1 -
 src/plugins/instantiate/stdlib/basic_alloc.ml |  4 +-
 src/plugins/markdown-report/sarif_gen.ml      |  3 +-
 src/plugins/metrics/metrics_cilast.ml         |  2 +-
 src/plugins/obfuscator/obfuscate.ml           |  7 +-
 src/plugins/report/classify.ml                |  2 +-
 src/plugins/server/kernel_properties.ml       |  6 +-
 src/plugins/value/gui_files/gui_eval.ml       |  2 +-
 src/plugins/wp/Cstring.ml                     |  2 +-
 src/plugins/wp/Cvalues.ml                     |  2 +-
 src/plugins/wp/Definitions.ml                 |  2 +-
 src/plugins/wp/Definitions.mli                |  2 +-
 src/plugins/wp/Generator.ml                   |  1 -
 src/plugins/wp/LogicCompiler.ml               | 10 +--
 src/plugins/wp/LogicUsage.ml                  | 42 ++++-----
 src/plugins/wp/LogicUsage.mli                 |  5 +-
 src/plugins/wp/MemLoader.ml                   |  8 +-
 src/plugins/wp/MemRegion.ml                   |  6 +-
 src/plugins/wp/MemTyped.ml                    | 16 ++--
 src/plugins/wp/ProverWhy3.ml                  | 11 +--
 src/plugins/wp/RefUsage.ml                    |  2 +-
 src/plugins/wp/cfgWP.ml                       |  2 +-
 src/plugins/wp/wpAnnot.ml                     |  2 +-
 src/plugins/wp/wpPropId.ml                    | 12 ++-
 src/plugins/wp/wpStrategy.ml                  |  2 +-
 tests/builtins/oracle/memcpy.res.oracle       | 52 +++++------
 tests/idct/oracle/ieee_1180_1990.res.oracle   | 90 +++++++++----------
 tests/rte/oracle/value_rte.res.oracle         | 60 ++++++-------
 tests/spec/add_global.ml                      |  6 +-
 .../oracle/axiom_redef_bts1005.res.oracle     |  2 +-
 50 files changed, 261 insertions(+), 313 deletions(-)

diff --git a/src/kernel_internals/parsing/logic_parser.mly b/src/kernel_internals/parsing/logic_parser.mly
index 5cdd093c879..f5b06f162b8 100644
--- a/src/kernel_internals/parsing/logic_parser.mly
+++ b/src/kernel_internals/parsing/logic_parser.mly
@@ -1699,15 +1699,15 @@ logic_def:
 | LEMMA poly_id COLON full_lexpr SEMICOLON
     { let (id,labels,tvars) = $2 in
       exit_type_variables_scope ();
-      LDlemma (id, false, labels, tvars, toplevel_pred Assert $4) }
+      LDlemma (id, labels, tvars, toplevel_pred Assert $4) }
 | CHECK_LEMMA poly_id COLON full_lexpr SEMICOLON
     { let (id,labels,tvars) = $2 in
       exit_type_variables_scope ();
-      LDlemma (id, false, labels, tvars, toplevel_pred Check $4) }
+      LDlemma (id, labels, tvars, toplevel_pred Check $4) }
 | ADMIT_LEMMA poly_id COLON full_lexpr SEMICOLON
     { let (id,labels,tvars) = $2 in
       exit_type_variables_scope ();
-      LDlemma (id, false, labels, tvars, toplevel_pred Admit $4) }
+      LDlemma (id, labels, tvars, toplevel_pred Admit $4) }
 | AXIOMATIC any_identifier LBRACE logic_decls RBRACE
     { LDaxiomatic($2,$4) }
 | TYPE poly_id_type_add_typename EQUAL typedef SEMICOLON
@@ -1780,7 +1780,7 @@ logic_decl:
 | AXIOM poly_id COLON full_lexpr SEMICOLON
     { let (id,labels,tvars) = $2 in
       exit_type_variables_scope ();
-      LDlemma (id, true, labels, tvars, toplevel_pred Assert $4) }
+      LDlemma (id, labels, tvars, toplevel_pred Admit $4) }
 ;
 
 logic_decl_loc:
diff --git a/src/kernel_internals/typing/mergecil.ml b/src/kernel_internals/typing/mergecil.ml
index 9f5080a17cf..7fe064e19d7 100644
--- a/src/kernel_internals/typing/mergecil.ml
+++ b/src/kernel_internals/typing/mergecil.ml
@@ -867,8 +867,8 @@ let rec global_annot_without_irrelevant_attributes ga =
   | Daxiomatic(n,l,attr,loc) ->
     Daxiomatic(n,List.map global_annot_without_irrelevant_attributes l,
                drop_attributes_for_merge attr,loc)
-  | Dlemma (id,ax,labs,typs,st,attr,loc) ->
-    Dlemma (id,ax,labs,typs,st,drop_attributes_for_merge attr,loc)
+  | Dlemma (id,labs,typs,st,attr,loc) ->
+    Dlemma (id,labs,typs,st,drop_attributes_for_merge attr,loc)
   | Dtype (lti,loc) ->
     Dtype (logic_type_info_without_irrelevant_attributes lti, loc)
   | Dextended (ext, attr, loc) ->
@@ -941,10 +941,10 @@ let rec global_annot_pass1 g = match g with
     ignore (PlainMerging.getNode ltEq ltSyn !currentFidx info.lt_name info
               (Some (l, !currentDeclIdx)))
 
-  | Dlemma (n,is_ax,labs,typs,st,attr,l) ->
+  | Dlemma (n,labs,typs,st,attr,l) ->
     CurrentLoc.set l;
     ignore (PlainMerging.getNode
-              llEq llSyn !currentFidx n (n,(is_ax,labs,typs,st,attr,l))
+              llEq llSyn !currentFidx n (n,(labs,typs,st,attr,l))
               (Some (l, !currentDeclIdx)))
   | Dextended(ext,_,l) ->
     CurrentLoc.set l;
@@ -1569,15 +1569,15 @@ let matchLogicLemma oldfidx (oldid, _ as oldnode) fidx (id, _ as node) =
   let oldlnode = PlainMerging.getNode llEq llSyn oldfidx oldid oldnode None in
   let lnode = PlainMerging.getNode llEq llSyn fidx id node None in
   if oldlnode != lnode then begin
-    let (oldid,(oldax,oldlabs,oldtyps,oldst,oldattr,oldloc)) = oldlnode.ndata in
+    let (oldid,(oldlabs,oldtyps,oldst,oldattr,oldloc)) = oldlnode.ndata in
     let oldfidx = oldlnode.nfidx in
-    let (id,(ax,labs,typs,st,attr,loc)) = lnode.ndata in
+    let (id,(labs,typs,st,attr,loc)) = lnode.ndata in
     let fidx = lnode.nfidx in
     let oldattr = drop_attributes_for_merge oldattr in
     let attr = drop_attributes_for_merge attr in
     if Logic_utils.is_same_global_annotation
-        (Dlemma (oldid,oldax,oldlabs,oldtyps,oldst,oldattr,oldloc))
-        (Dlemma (id,ax,labs,typs,st,attr,loc))
+        (Dlemma (oldid,oldlabs,oldtyps,oldst,oldattr,oldloc))
+        (Dlemma (id,labs,typs,st,attr,loc))
     then begin
       if oldfidx < fidx then
         lnode.nrep <- oldlnode.nrep
@@ -2375,7 +2375,7 @@ let rec logic_annot_pass2 ~in_axiomatic g a =
           mergePushGlobals g
       | Some _ -> ()
     end
-  | Dlemma (n,_,_,_,_,_,l) ->
+  | Dlemma (n,_,_,_,_,l) ->
     begin
       CurrentLoc.set l;
       match PlainMerging.findReplacement true llEq !currentFidx n with
diff --git a/src/kernel_services/ast_data/cil_types.mli b/src/kernel_services/ast_data/cil_types.mli
index 3e7cf2768e1..a4ee7f3882e 100644
--- a/src/kernel_services/ast_data/cil_types.mli
+++ b/src/kernel_services/ast_data/cil_types.mli
@@ -1827,10 +1827,9 @@ and global_annotation =
   | Daxiomatic of string * global_annotation list * attributes * location
   | Dtype of logic_type_info * location (** declaration of a logic type. *)
   | Dlemma of
-      string * bool * logic_label list * string list *
+      string * logic_label list * string list *
       toplevel_predicate * attributes * location
-  (** definition of a lemma. The boolean flag is [true] if the property should
-      be taken as an axiom and [false] if it must be proved.  *)
+  (** definition of all kinds of lemmas (axioms are admit lemmas).  *)
   | Dinvariant of logic_info * location
   (** global invariant. The predicate does not have any argument. *)
   | Dtype_annot of logic_info * location
diff --git a/src/kernel_services/ast_data/property.ml b/src/kernel_services/ast_data/property.ml
index 9d77b9fc6ce..26db9e82553 100644
--- a/src/kernel_services/ast_data/property.ml
+++ b/src/kernel_services/ast_data/property.ml
@@ -132,8 +132,6 @@ and identified_lemma = {
   il_loc : location
 }
 
-and identified_axiom = identified_lemma
-
 and identified_instance = {
   ii_kf : kernel_function;
   ii_stmt : stmt;
@@ -162,7 +160,6 @@ and identified_other = {
 and identified_property =
   | IPPredicate of identified_predicate
   | IPExtended of identified_extended
-  | IPAxiom of identified_axiom
   | IPAxiomatic of identified_axiomatic
   | IPLemma of identified_lemma
   | IPBehavior of identified_behavior
@@ -237,7 +234,6 @@ let get_kinstr = function
   | IPFrom {if_kinstr=ki}
   | IPReachable {ir_kinstr=ki}
   | IPDecrease {id_kinstr=ki} -> ki
-  | IPAxiom _
   | IPAxiomatic _
   | IPLemma _  -> Kglobal
   | IPOther {io_loc} -> ki_of_o_loc io_loc
@@ -265,7 +261,6 @@ let get_kf = function
   | IPFrom {if_kf=kf}
   | IPDecrease {id_kf=kf}
   | IPPropertyInstance {ii_kf=kf} -> Some kf
-  | IPAxiom _
   | IPAxiomatic _
   | IPLemma _ -> None
   | IPReachable {ir_kf} -> ir_kf
@@ -276,7 +271,6 @@ let get_kf = function
 let rec get_names = function
   | IPPredicate ip -> (Logic_const.pred_of_id_pred ip.ip_pred).pred_name
   | IPExtended { ie_ext = {ext_name = name} }
-  | IPAxiom { il_name = name }
   | IPAxiomatic { iax_name = name }
   | IPLemma { il_name = name }
   | IPBehavior { ib_bhv = {b_name = name} }
@@ -327,7 +321,6 @@ let rec location = function
      | _,(t :: _) -> t.it_content.term_loc)
   | IPFrom {if_from=(t, _)} -> t.it_content.term_loc
   | IPDecrease {id_variant=(t, _)} -> t.term_loc
-  | IPAxiom {il_loc} -> il_loc
   | IPAxiomatic {iax_props} ->
     (match iax_props with
      | [] -> Cil_datatype.Location.unknown
@@ -364,7 +357,6 @@ let get_behavior = function
   | IPAllocation {ial_bhv=Id_loop _}
   | IPAssigns {ias_bhv=Id_loop _}
   | IPFrom {if_bhv=Id_loop _}
-  | IPAxiom _
   | IPAxiomatic _
   | IPExtended _
   | IPLemma _
@@ -402,7 +394,7 @@ let rec has_status = function
   | IPCodeAnnot {ica_ca={annot_content}} -> has_status_ca annot_content
   | IPPropertyInstance {ii_ip} -> has_status ii_ip
   | IPOther _ | IPReachable _
-  | IPAxiom _ | IPAxiomatic _ | IPBehavior _
+  | IPAxiomatic _ | IPBehavior _
   | IPDisjoint _ | IPComplete _
   | IPAssigns _ | IPFrom _
   | IPAllocation _ | IPDecrease _ | IPLemma _
@@ -426,9 +418,12 @@ let rec pretty_ip fmt = function
       pretty_predicate_kind ip_kind
       Cil_printer.pp_identified_predicate ip_pred
   | IPExtended {ie_ext} -> Cil_printer.pp_extended fmt ie_ext
-  | IPAxiom {il_name} -> Format.fprintf fmt "axiom@ %s" il_name
   | IPAxiomatic {iax_name} -> Format.fprintf fmt "axiomatic@ %s" iax_name
-  | IPLemma {il_name} -> Format.fprintf fmt "lemma@ %s" il_name
+  | IPLemma {il_name; il_pred} ->
+    (match il_pred.tp_kind with
+     | Admit -> Format.fprintf fmt "axiom@ %s" il_name
+     | Assert -> Format.fprintf fmt "lemma@ %s" il_name
+     | Check -> Format.fprintf fmt "check lemma@ %s" il_name)
   | IPTypeInvariant {iti_name; iti_type} ->
     Format.fprintf fmt "invariant@ %s for type %a" iti_name
       Cil_printer.pp_typ iti_type
@@ -490,7 +485,6 @@ let rec hash_ip =
   in
   function
   | IPPredicate {ip_pred=x} -> Hashtbl.hash (1, x.ip_id)
-  | IPAxiom {il_name=x} -> Hashtbl.hash (2, (x:string))
   | IPAxiomatic {iax_name=x} -> Hashtbl.hash (3, (x:string))
   | IPLemma {il_name=x} -> Hashtbl.hash (4, (x:string))
   | IPCodeAnnot {ica_ca=ca} -> Hashtbl.hash (5, ca.annot_id)
@@ -531,7 +525,7 @@ let rec hash_ip =
   | IPExtended {ie_ext={ext_id}} -> Hashtbl.hash (18, ext_id)
 
 let reprs = [
-  IPAxiom {
+  IPLemma {
     il_name="";il_labels=[];il_args=[];
     il_pred=Logic_const.(toplevel_predicate ptrue);
     il_attrs=[];
@@ -581,7 +575,6 @@ include Datatype.Make_with_collections
         | IPPredicate {ip_pred=s1}, IPPredicate {ip_pred=s2} -> s1.ip_id = s2.ip_id
         | IPExtended {ie_ext={ext_id=i1}}, IPExtended {ie_ext={ext_id=i2}} ->
           Datatype.Int.equal i1 i2
-        | IPAxiom {il_name=s1}, IPAxiom {il_name=s2}
         | IPAxiomatic {iax_name=s1}, IPAxiomatic {iax_name=s2}
         | IPTypeInvariant {iti_name=s1}, IPTypeInvariant {iti_name=s2}
         | IPGlobalInvariant {igi_name=s1}, IPGlobalInvariant {igi_name=s2}
@@ -622,7 +615,7 @@ include Datatype.Make_with_collections
           IPPropertyInstance {ii_kf=kf2;ii_stmt=s2;ii_ip=ip2} ->
           Kernel_function.equal kf1 kf2 &&
           Stmt.equal s1 s2 && equal ip1 ip2
-        | (IPPredicate _ | IPAxiom _ | IPExtended _ | IPAxiomatic _ | IPLemma _
+        | (IPPredicate _ | IPExtended _ | IPAxiomatic _ | IPLemma _
           | IPCodeAnnot _ | IPComplete _ | IPDisjoint _ | IPAssigns _
           | IPFrom _ | IPDecrease _ | IPBehavior _ | IPReachable _
           | IPAllocation _ | IPOther _ | IPPropertyInstance _
@@ -681,7 +674,6 @@ include Datatype.Make_with_collections
             if n = 0 then Stdlib.compare ba1 ba2 else n
           else
             n
-        | IPAxiom {il_name=s1}, IPAxiom {il_name=s2}
         | IPAxiomatic {iax_name=s1}, IPAxiomatic {iax_name=s2}
         | IPTypeInvariant {iti_name=s1}, IPTypeInvariant {iti_name=s2}
         | IPGlobalInvariant {igi_name=s1}, IPGlobalInvariant {igi_name=s2}
@@ -701,14 +693,13 @@ include Datatype.Make_with_collections
             if c <> 0 then c else compare ip1 ip2
         | (IPPredicate _ | IPExtended _ | IPCodeAnnot _ | IPBehavior _ | IPComplete _ |
            IPDisjoint _ | IPAssigns _ | IPFrom _ | IPDecrease _ |
-           IPReachable _ | IPAxiom _ | IPAxiomatic _ | IPLemma _ |
+           IPReachable _ | IPAxiomatic _ | IPLemma _ |
            IPOther _ | IPAllocation _ | IPPropertyInstance _ |
            IPTypeInvariant _ | IPGlobalInvariant _) as x, y ->
           let nb = function
             | IPPredicate _ -> 1
             | IPAssigns _ -> 2
             | IPDecrease _ -> 3
-            | IPAxiom _ -> 4
             | IPAxiomatic _ -> 5
             | IPLemma _ -> 6
             | IPCodeAnnot _ -> 7
@@ -741,7 +732,6 @@ module Ordered_by_function = Datatype.Make_with_collections(
     let cmp_kind p1 p2 =
       let nb = function
         | IPAxiomatic _ -> 1
-        | IPAxiom _ -> 2
         | IPLemma _ -> 3
         | IPTypeInvariant _ -> 4
         | IPGlobalInvariant _ -> 5
@@ -772,8 +762,7 @@ module Ordered_by_function = Datatype.Make_with_collections(
     let rec cmp_same_kind p1 p2 =
       match (p1,p2) with
       | IPAxiomatic { iax_name = n1 }, IPAxiomatic { iax_name = n2 }
-      | IPAxiom { il_name = n1 }, IPAxiom { il_name = n2 }
-      | IPLemma { il_name = n1 }, IPAxiom { il_name = n2 }
+      | IPLemma { il_name = n1 }, IPLemma { il_name = n2 }
       | IPTypeInvariant { iti_name = n1 }, IPTypeInvariant { iti_name = n2 }
       | IPGlobalInvariant { igi_name = n1 },
         IPGlobalInvariant { igi_name = n2 }
@@ -859,7 +848,7 @@ let rec short_pretty fmt p = match p with
      | name :: _ -> Format.pp_print_string fmt name
      | [] -> pretty fmt p)
   | IPExtended {ie_ext={ext_name}} -> Format.pp_print_string fmt ext_name
-  | IPAxiom {il_name=n} | IPLemma {il_name=n}
+  | IPLemma {il_name=n}
   | IPTypeInvariant {iti_name=n} | IPGlobalInvariant {igi_name=n}
   | IPAxiomatic {iax_name=n} -> Format.pp_print_string fmt n
   | IPBehavior {ib_kf; ib_bhv={b_name}} ->
@@ -977,14 +966,6 @@ let rec pretty_debug fmt = function
       Cil_types_debug.pp_kinstr id_kinstr
       (Cil_types_debug.pp_option Cil_types_debug.pp_code_annotation) id_ca
       Cil_types_debug.pp_variant id_variant
-  | IPAxiom {il_name; il_labels; il_args; il_pred; il_attrs; il_loc} ->
-    Format.fprintf fmt "IPAxiom(%a,%a,%a,%a,%a,%a)"
-      Cil_types_debug.pp_string il_name
-      (Cil_types_debug.pp_list Cil_types_debug.pp_logic_label) il_labels
-      (Cil_types_debug.pp_list Cil_types_debug.pp_string) il_args
-      Cil_types_debug.pp_toplevel_predicate il_pred
-      Cil_types_debug.pp_attributes il_attrs
-      Cil_types_debug.pp_location il_loc
   | IPAxiomatic {iax_name; iax_props; iax_attrs} ->
     Format.fprintf fmt "IPAxiomatic(%a,%a,%a)"
       Cil_types_debug.pp_string iax_name
@@ -1178,8 +1159,6 @@ struct
       (kf_prefix kf) ^ "decr" ^ (variant_suffix variant)
     | IPDecrease {id_kf=kf; id_variant=variant} ->
       (kf_prefix kf) ^ "loop_term" ^ (variant_suffix variant)
-    | IPAxiom {il_name=name; il_pred} ->
-      Format.asprintf "axiom_%s%a" name pp_names il_pred.tp_statement.pred_name
     | IPAxiomatic {iax_name} -> "axiomatic_" ^ iax_name
     | IPLemma {il_name=name; il_pred} ->
       Format.asprintf "lemma_%s%a" name pp_names il_pred.tp_statement.pred_name
@@ -1391,8 +1370,7 @@ struct
     | IPReachable {ir_kf=Some kf; ir_kinstr=Kstmt s; ir_program_point=After} ->
       [ K kf ; A "reachable_after" ; S s ]
 
-    | IPAxiomatic _
-    | IPAxiom _ -> []
+    | IPAxiomatic _ -> []
     | IPLemma {il_name=name; il_pred=p} ->
       let a = prefix_with_kind p "lemma" in
       [ A a ; A name ; P p.tp_statement ]
@@ -1476,7 +1454,7 @@ let ip_reachable_ppt p =
   let ir_kinstr = get_kinstr p in
   let ir_program_point = match p with
     | IPPredicate {ip_kind=(PKRequires _ | PKAssumes _ | PKTerminates)}
-    | IPAxiom _ | IPAxiomatic _ | IPLemma _ | IPComplete _
+    | IPAxiomatic _ | IPLemma _ | IPComplete _
     | IPDisjoint _ | IPCodeAnnot _ | IPAllocation _
     | IPDecrease _ | IPPropertyInstance _ | IPOther _
     | IPTypeInvariant _ | IPGlobalInvariant _
@@ -1630,7 +1608,6 @@ let ip_of_spec kf st ~active s =
   @ (Option.to_list (ip_terminates_of_spec kf st s))
   @ (Option.to_list (ip_decreases_of_spec kf st s))
 
-let ip_axiom s = IPAxiom s
 let ip_lemma s = IPLemma s
 let ip_type_invariant s = IPTypeInvariant s
 let ip_global_invariant s = IPGlobalInvariant s
@@ -1684,9 +1661,7 @@ let ip_of_global_annotation a =
     | Daxiomatic(iax_name, l, iax_attrs, _) ->
       let iax_props = List.fold_left aux [] l in
       IPAxiomatic {iax_name; iax_props; iax_attrs} :: (iax_props @ acc)
-    | Dlemma(il_name, true, il_labels, il_args, il_pred, il_attrs, il_loc) ->
-      ip_axiom {il_name; il_labels; il_args; il_pred; il_attrs; il_loc} :: acc
-    | Dlemma(il_name, false, il_labels, il_args, il_pred, il_attrs, il_loc) ->
+    | Dlemma(il_name, il_labels, il_args, il_pred, il_attrs, il_loc) ->
       ip_lemma {il_name; il_labels; il_args; il_pred; il_attrs; il_loc} :: acc
     | Dinvariant(l, igi_loc) ->
       let igi_pred = match l.l_body with
diff --git a/src/kernel_services/ast_data/property.mli b/src/kernel_services/ast_data/property.mli
index ab15f381a1b..302cd0393e6 100644
--- a/src/kernel_services/ast_data/property.mli
+++ b/src/kernel_services/ast_data/property.mli
@@ -162,8 +162,6 @@ and identified_lemma = {
   il_loc : location
 }
 
-and identified_axiom = identified_lemma
-
 (** Specialization of a property at a given point, identified by a statement
     and a function, along with the predicate transposed at this point (if it
     can be) and the original property. *)
@@ -195,7 +193,6 @@ and identified_other = {
 and identified_property = private
   | IPPredicate of identified_predicate
   | IPExtended of identified_extended
-  | IPAxiom of identified_axiom
   | IPAxiomatic of identified_axiomatic
   | IPLemma of identified_lemma
   | IPBehavior of identified_behavior
@@ -477,12 +474,6 @@ val ip_property_instance:
   kernel_function -> stmt -> Cil_types.identified_predicate option ->
   identified_property -> identified_property
 
-(** Builds an IPAxiom.
-    @since Carbon-20110201
-    @modify Oxygen-20120901 takes an identified_axiom instead of a string
-*)
-val ip_axiom: identified_axiom -> identified_property
-
 (** Build an IPLemma.
     @since Nitrogen-20111001
     @modify Oxygen-20120901 takes an identified_lemma instead of a string
diff --git a/src/kernel_services/ast_data/property_status.ml b/src/kernel_services/ast_data/property_status.ml
index 82c81ac995e..62f5a05e48c 100644
--- a/src/kernel_services/ast_data/property_status.ml
+++ b/src/kernel_services/ast_data/property_status.ml
@@ -353,7 +353,6 @@ let is_admitted_code_annot = function
   | _ -> false
 
 let rec is_admitted = function
-  | Property.IPAxiom _  -> true
   | Property.IPPredicate ip -> ip.ip_pred.ip_content.tp_kind = Admit
   | IPLemma lemma -> lemma.il_pred.tp_kind = Admit
   | IPCodeAnnot ca -> is_admitted_code_annot ca.ica_ca.annot_content
@@ -519,8 +518,9 @@ and unsafe_emit_and_get e ~hyps ~auto ppt ?(distinct=false) s =
   | Property.IPPredicate _ | Property.IPCodeAnnot _ | Property.IPComplete _
   | Property.IPDisjoint _ | Property.IPAssigns _ | Property.IPFrom _
   | Property.IPAllocation _ | Property.IPDecrease _ | Property.IPBehavior _
-  | Property.IPAxiom _ | Property.IPAxiomatic _ | Property.IPLemma _
-  | Property.IPTypeInvariant _ | Property.IPGlobalInvariant _ | Property.IPExtended _ ->
+  | Property.IPAxiomatic _ | Property.IPLemma _
+  | Property.IPTypeInvariant _ | Property.IPGlobalInvariant _
+  | Property.IPExtended _ ->
     Kernel.fatal "unregistered property %a" Property.pretty ppt
 
 and logical_consequence e ppt hyps =
@@ -686,7 +686,7 @@ and get_status ?(must_register=true) ppt =
   | Property.IPPredicate _ | Property.IPCodeAnnot _ | Property.IPComplete _
   | Property.IPDisjoint _ | Property.IPAssigns _ | Property.IPFrom _
   | Property.IPDecrease _ | Property.IPAllocation _
-  | Property.IPAxiom _ | Property.IPAxiomatic _ | Property.IPLemma _
+  | Property.IPAxiomatic _ | Property.IPLemma _
   | Property.IPTypeInvariant _ | Property.IPGlobalInvariant _ ->
     Kernel.fatal "trying to get status of unregistered property `%a'.\n\
                   That is forbidden (kernel invariant broken)."
diff --git a/src/kernel_services/ast_printing/cil_printer.ml b/src/kernel_services/ast_printing/cil_printer.ml
index f3ee3536abe..c7e35880edb 100644
--- a/src/kernel_services/ast_printing/cil_printer.ml
+++ b/src/kernel_services/ast_printing/cil_printer.ml
@@ -3217,12 +3217,15 @@ class cil_printer () = object (self)
         self#logic_var pred.l_var_info
         self#predicate (pred_body pred.l_body);
       current_label <- old_label
-    | Dlemma(name, is_axiom, labels, tvars, pred, _attr, _) ->
+    | Dlemma(name, labels, tvars, pred, _attr, _) ->
       (* attributes are meant to be purely internal for now. *)
       let old_lab = current_label in
-      fprintf fmt "@[<hv 2>@[<hov 1>%a%a %a%a%a:@]@ %t%a;@]@\n"
-        self#pp_predicate_kind pred
-        self#pp_acsl_keyword (if is_axiom then "axiom" else "lemma")
+      fprintf fmt "@[<hv 2>@[<hov 1>%a %a%a%a:@]@ %t%a;@]@\n"
+        self#pp_acsl_keyword
+        (match pred.tp_kind with
+         | Admit -> "axiom"
+         | Assert -> "lemma"
+         | Check -> "check lemma")
         self#varname name
         self#labels labels
         self#polyTypePrms tvars
diff --git a/src/kernel_services/ast_printing/cil_types_debug.ml b/src/kernel_services/ast_printing/cil_types_debug.ml
index 326c95e4eab..be3bd2a0c38 100644
--- a/src/kernel_services/ast_printing/cil_types_debug.ml
+++ b/src/kernel_services/ast_printing/cil_types_debug.ml
@@ -1017,8 +1017,8 @@ and pp_global_annotation fmt = function
       pp_attributes attributes  pp_location location
   | Dtype(logic_type_info,location) ->
     Format.fprintf fmt "Dtype(%a,%a)"  pp_logic_type_info logic_type_info  pp_location location
-  | Dlemma(string,bool,logic_label_list,string_list,predicate,attributes,location) ->
-    Format.fprintf fmt "Dlemma(%a,%a,%a,%a,%a,%a,%a)"  pp_string string  pp_bool bool
+  | Dlemma(string,logic_label_list,string_list,predicate,attributes,location) ->
+    Format.fprintf fmt "Dlemma(%a,%a,%a,%a,%a,%a)"  pp_string string
       (pp_list pp_logic_label) logic_label_list (pp_list pp_string) string_list
       pp_toplevel_predicate predicate
       pp_attributes attributes  pp_location location
diff --git a/src/kernel_services/ast_printing/description.ml b/src/kernel_services/ast_printing/description.ml
index fc6ff06a00e..000cedcd25f 100644
--- a/src/kernel_services/ast_printing/description.ml
+++ b/src/kernel_services/ast_printing/description.ml
@@ -226,8 +226,11 @@ let pp_capitalize fmt s =
 let pp_acsl_extension fmt {ext_name} = pp_capitalize fmt ext_name
 
 let rec pp_prop kfopt kiopt kloc fmt = function
-  | IPAxiom {il_name=s} -> Format.fprintf fmt "Axiom '%s'" s
-  | IPLemma {il_name=s} -> Format.fprintf fmt "Lemma '%s'" s
+  | IPLemma {il_name=s; il_pred=p} ->
+    (match p.tp_kind with
+     | Admit -> Format.fprintf fmt "Axiom '%s'" s
+     | Assert -> Format.fprintf fmt "Lemma '%s'" s
+     | Check ->  Format.fprintf fmt "Check Lemma '%s'" s)
   | IPTypeInvariant {iti_name=s} -> Format.fprintf fmt "Type invariant '%s'" s
   | IPGlobalInvariant {igi_name=s} -> Format.fprintf fmt "Global invariant '%s'" s
   | IPAxiomatic {iax_name=s} -> Format.fprintf fmt "Axiomatic '%s'" s
@@ -500,7 +503,7 @@ let loop_order = function
 
 let rec ip_order = function
   | IPAxiomatic {iax_name=a} -> [I 0;S a]
-  | IPAxiom {il_name=a} | IPLemma {il_name=a} -> [I 1;S a]
+  | IPLemma {il_name=a} -> [I 1;S a]
   | IPOther {io_name=s;io_loc=OLContract kf} -> [I 3;F kf;S s]
   | IPOther {io_name=s;io_loc=OLStmt (kf, stmt)} -> [I 4;F kf;K (Kstmt stmt);S s]
   | IPOther {io_name=s;io_loc=OLGlob _} -> [I 5; S s]
diff --git a/src/kernel_services/ast_printing/logic_print.ml b/src/kernel_services/ast_printing/logic_print.ml
index ffd4b850dda..7f41c46efb2 100644
--- a/src/kernel_services/ast_printing/logic_print.ml
+++ b/src/kernel_services/ast_printing/logic_print.ml
@@ -364,13 +364,12 @@ let rec print_decl fmt d =
       (pp_list ~pre:"<@[" ~sep:",@ " ~suf:"@>}" pp_print_string) tvar
       (pp_list ~sep:",@ " print_typed_ident) prms
       (pp_list ~sep:"@\n" print_case) cases
-  | LDlemma(name,is_axiom,labels,tvar,body) ->
-    fprintf fmt "@[<2>%s%a@ %s%a%a:@ %a;@]"
+  | LDlemma(name,labels,tvar,body) ->
+    fprintf fmt "@[<2>%s@ %s%a%a:@ %a;@]"
       (match body.tp_kind with
-       | Assert -> ""
-       | Check ->  "check "
-       | Admit ->   "admit")
-      (pp_cond ~pr_false:"lemma" is_axiom) "axiom" name
+       | Admit ->   "axiom"
+       | Assert -> "lemma"
+       | Check ->  "check lemma") name
       (pp_list ~pre:"{@[" ~sep:",@ " ~suf:"@]}" pp_print_string) labels
       (pp_list ~pre:"<@[" ~sep:",@ " ~suf:"@>}" pp_print_string) tvar
       print_lexpr body.tp_statement
diff --git a/src/kernel_services/ast_queries/cil.ml b/src/kernel_services/ast_queries/cil.ml
index a23817a3be9..9989a671d83 100644
--- a/src/kernel_services/ast_queries/cil.ml
+++ b/src/kernel_services/ast_queries/cil.ml
@@ -2113,11 +2113,11 @@ and childrenAnnotation vis a =
            Logic_env.add_logic_type ti'.lt_name ti')
         vis#get_filling_actions;
     if ti' != ti then Dtype (ti',loc) else a
-  | Dlemma(s,is_axiom,labels,tvars,p,attr,loc) ->
+  | Dlemma(s,labels,tvars,p,attr,loc) ->
     let p' = visitCilToplevel_predicate vis p in
     let attr' = visitCilAttributes vis attr in
     if p' != p || attr != attr' then
-      Dlemma(s,is_axiom,labels,tvars,p',attr',loc)
+      Dlemma(s,labels,tvars,p',attr',loc)
     else a
   | Dinvariant (p,loc) ->
     let p' = visitCilLogicInfo vis p in
@@ -5373,7 +5373,7 @@ let global_annotation_attributes = function
   | Dvolatile (_,_,_,attrs,_) -> attrs
   | Daxiomatic (_,_,attrs,_) -> attrs
   | Dtype ({ lt_attr }, _) -> lt_attr
-  | Dlemma (_,_,_,_,_,attrs,_) -> attrs
+  | Dlemma (_,_,_,_,attrs,_) -> attrs
   | Dinvariant ({l_var_info = { lv_attr }}, _) -> lv_attr
   | Dtype_annot ({l_var_info = { lv_attr }}, _) -> lv_attr
   | Dmodel_annot ({ mi_attr }, _) -> mi_attr
diff --git a/src/kernel_services/ast_queries/cil_datatype.ml b/src/kernel_services/ast_queries/cil_datatype.ml
index f27558077f9..7da74e18a6b 100644
--- a/src/kernel_services/ast_queries/cil_datatype.ml
+++ b/src/kernel_services/ast_queries/cil_datatype.ml
@@ -1987,7 +1987,7 @@ module Global_annotation = struct
           | Dtype(t1,_), Dtype(t2,_) -> Logic_type_info.compare t1 t2
           | Dtype _, _ -> -1
           | _, Dtype _ -> 1
-          | Dlemma (l1,_,_,_,_,attr1,_), Dlemma(l2,_,_,_,_,attr2,_) ->
+          | Dlemma (l1,_,_,_,attr1,_), Dlemma(l2,_,_,_,attr2,_) ->
             let res = Datatype.String.compare l1 l2 in
             if res = 0 then Attributes.compare attr1 attr2 else res
           | Dlemma _, _ -> -1
@@ -2022,7 +2022,7 @@ module Global_annotation = struct
           (* Empty axiomatic is weird but authorized. *)
           | Daxiomatic (_,g::_,_,_) -> 5 * hash g
           | Dtype (t,_) -> 7 * Logic_type_info.hash t
-          | Dlemma(n,_,_,_,_,_,_) -> 11 * Datatype.String.hash n
+          | Dlemma(n,_,_,_,_,_) -> 11 * Datatype.String.hash n
           | Dinvariant(l,_) -> 13 * Logic_info.hash l
           | Dtype_annot(l,_) -> 17 * Logic_info.hash l
           | Dmodel_annot(l,_) -> 19 * Model_info.hash l
@@ -2036,7 +2036,7 @@ module Global_annotation = struct
     | Dfun_or_pred(_, loc)
     | Daxiomatic(_, _, _, loc)
     | Dtype (_, loc)
-    | Dlemma(_, _, _, _, _, _, loc)
+    | Dlemma(_, _, _, _, _, loc)
     | Dinvariant(_, loc)
     | Dtype_annot(_, loc) -> loc
     | Dmodel_annot(_, loc) -> loc
@@ -2048,7 +2048,7 @@ module Global_annotation = struct
     | Dfun_or_pred({ l_var_info = { lv_attr }}, _) -> lv_attr
     | Daxiomatic(_, _, attr, _) -> attr
     | Dtype ({lt_attr}, _) -> lt_attr
-    | Dlemma(_, _, _, _, _, attr, _) -> attr
+    | Dlemma(_, _, _, _, attr, _) -> attr
     | Dinvariant({ l_var_info = { lv_attr }}, _) -> lv_attr
     | Dtype_annot({ l_var_info = { lv_attr}}, _) -> lv_attr
     | Dmodel_annot({ mi_attr }, _) -> mi_attr
diff --git a/src/kernel_services/ast_queries/filecheck.ml b/src/kernel_services/ast_queries/filecheck.ml
index d3d0c5d68d3..d1fe96a93fe 100644
--- a/src/kernel_services/ast_queries/filecheck.ml
+++ b/src/kernel_services/ast_queries/filecheck.ml
@@ -1083,7 +1083,7 @@ module Base_checker = struct
                "field %s of type %a is not present in environment"
                mi.mi_name Printer.pp_typ mi.mi_base_type);
           Cil.DoChildren
-        | Dlemma(_,_,labels,_,_,_,_) ->
+        | Dlemma(_,labels,_,_,_,_) ->
           let old_labels = logic_labels in
           logic_labels <- labels @ logic_labels;
           Cil.DoChildrenPost (fun g -> logic_labels <- old_labels; g)
diff --git a/src/kernel_services/ast_queries/logic_typing.ml b/src/kernel_services/ast_queries/logic_typing.ml
index b317c5daf7a..ca5511407cf 100644
--- a/src/kernel_services/ast_queries/logic_typing.ml
+++ b/src/kernel_services/ast_queries/logic_typing.ml
@@ -4188,20 +4188,12 @@ struct
         C.error loc "Definition of %s is cyclic" s;
       my_info.lt_def <- tdef;
       Dtype (my_info,loc)
-    | LDlemma (x,is_axiom, labels, poly, {tp_kind = kind; tp_statement = e}) ->
+    | LDlemma (x,labels, poly, {tp_kind = kind; tp_statement = e}) ->
       if Logic_env.Lemmas.mem x then begin
         let old_def = Logic_env.Lemmas.find x in
         let old_loc = Cil_datatype.Global_annotation.loc old_def in
-        let is_axiom =
-          match old_def with
-          | Dlemma(_, is_axiom, _, _, _, _, _) -> is_axiom
-          | _ ->
-            Kernel.fatal ~current:true
-              "Logic_env.get_lemma must return Dlemma"
-        in
-        C.error loc "%s is already registered as %s (%a)"
-          x (if is_axiom then "axiom" else "lemma")
-          Cil_datatype.Location.pretty old_loc
+        C.error loc "lemma %s is already registered (%a)"
+          x Cil_datatype.Location.pretty old_loc
       end;
       let labels,env = annot_env loc labels poly in
       let p = Logic_const.toplevel_predicate ~kind (predicate env e) in
@@ -4209,7 +4201,7 @@ struct
         | None -> labels
         | Some lab -> [lab]
       in
-      let def = Dlemma (x,is_axiom, labels, poly,  p, [], loc) in
+      let def = Dlemma (x,labels, poly,  p, [], loc) in
       Logic_env.Lemmas.add x def;
       def
     | LDinvariant (s, e) ->
diff --git a/src/kernel_services/ast_queries/logic_utils.ml b/src/kernel_services/ast_queries/logic_utils.ml
index e6b2f808798..07fbd1f58c3 100644
--- a/src/kernel_services/ast_queries/logic_utils.ml
+++ b/src/kernel_services/ast_queries/logic_utils.ml
@@ -723,8 +723,8 @@ let rec add_attribute_glob_annot a g =
     Daxiomatic(n,List.map (add_attribute_glob_annot a) l,
                Cil.addAttribute a al,loc)
   | Dtype(ti,_) -> ti.lt_attr <- Cil.addAttribute a ti.lt_attr; g
-  | Dlemma(n,ax,labs,t,p,al,l) ->
-    Dlemma(n,ax,labs,t,p,Cil.addAttribute a al,l)
+  | Dlemma(n,labs,t,p,al,l) ->
+    Dlemma(n,labs,t,p,Cil.addAttribute a al,l)
   | Dmodel_annot (mi,_) -> mi.mi_attr <- Cil.addAttribute a mi.mi_attr; g
   | Dcustom_annot(c,n,al,l) -> Dcustom_annot(c,n,Cil.addAttribute a al, l)
   | Dextended (e,al,l) -> Dextended(e,Cil.addAttribute a al,l)
@@ -1233,9 +1233,9 @@ let rec is_same_global_annotation ga1 ga2 =
     id1 = id2 && is_same_list is_same_global_annotation ga1 ga2
     && is_same_attributes attr1 attr2
   | Dtype (t1,_), Dtype (t2,_) -> is_same_logic_type_info t1 t2
-  | Dlemma(n1,ax1,labs1,typs1,st1,attr1,_),
-    Dlemma(n2,ax2,labs2,typs2,st2,attr2,_) ->
-    is_same_string n1 n2 && ax1 = ax2 &&
+  | Dlemma(n1,labs1,typs1,st1,attr1,_),
+    Dlemma(n2,labs2,typs2,st2,attr2,_) ->
+    is_same_string n1 n2 &&
     is_same_list is_same_logic_label labs1 labs2 &&
     is_same_list (=) typs1 typs2 && is_same_toplevel_predicate st1 st2 &&
     is_same_attributes attr1 attr2
diff --git a/src/kernel_services/parsetree/logic_ptree.mli b/src/kernel_services/parsetree/logic_ptree.mli
index 9dabbc955a6..9077a2df55d 100644
--- a/src/kernel_services/parsetree/logic_ptree.mli
+++ b/src/kernel_services/parsetree/logic_ptree.mli
@@ -233,13 +233,12 @@ and decl_node =
         (** [LDinductive_def(name,labels,type_params, parameters, indcases)]
             represents an inductive definition of a new predicate.
          *)
-  | LDlemma of string * bool * string list * string list * toplevel_predicate
-      (** LDlemma(name,is_axiom,labels,type_params,property) represents
-          a lemma or an axiom [name].
-          [is_axiom] is true for an axiom and false for a lemma. [labels]
-          is the list of label arguments and
-          [type_params] the list of type parameters. Last, [property] is the
-          statement of the lemma.
+  | LDlemma of string * string list * string list * toplevel_predicate
+      (** LDlemma(name,labels,type_params,property) represents axioms and
+          lemmas. Axioms and admit lemmas are fusionned.
+          [labels] is the list of label arguments and
+          [type_params] the list of type parameters.
+          Last, [property] is the statement of the lemma.
        *)
   | LDaxiomatic of string * decl list
         (** [LDaxiomatic(id,decls)]
diff --git a/src/plugins/aorai/aorai_utils.ml b/src/plugins/aorai/aorai_utils.ml
index 7f82b59785a..940af733887 100644
--- a/src/plugins/aorai/aorai_utils.ml
+++ b/src/plugins/aorai/aorai_utils.ml
@@ -1080,7 +1080,7 @@ let mk_deterministic_lemma () =
     let prop = Logic_const.toplevel_predicate ~kind:Check prop in
     let name = state.Promelaast.name ^ "_deterministic_trans" in
     let lemma =
-      Dlemma (name, false, [label],[],prop,[],Cil_datatype.Location.unknown)
+      Dlemma (name, [label],[],prop,[],Cil_datatype.Location.unknown)
     in
     Annotations.add_global Aorai_option.emitter lemma
   in
diff --git a/src/plugins/gui/design.ml b/src/plugins/gui/design.ml
index 21ade2a5af1..dffb3997bbd 100644
--- a/src/plugins/gui/design.ml
+++ b/src/plugins/gui/design.ml
@@ -499,14 +499,15 @@ let to_do_on_select
         "This is a complete behaviors clause.@.%a@."
         pretty_predicate_status ip;
       main_ui#view_original (location ip)
-    | PIP(IPAxiom _ as ip) ->
-      main_ui#pretty_information "This is an axiom.@.";
-      main_ui#view_original (location ip)
     | PIP(IPAxiomatic _ as ip) ->
       main_ui#pretty_information "This is an axiomatic.@.";
       main_ui#view_original (location ip)
-    | PIP(IPLemma _ as ip) ->
-      main_ui#pretty_information "This is a lemma.@.";
+    | PIP(IPLemma { il_pred } as ip) ->
+      let kind = match il_pred.tp_kind with
+        | Admit -> "axiom"
+        | Assert -> "lemma"
+        | Check -> "check lemma" in
+      main_ui#pretty_information "This is a %s.@." kind;
       main_ui#view_original (location ip)
     | PIP(IPTypeInvariant _ as ip) ->
       main_ui#pretty_information "This is a type invariant.@.";
diff --git a/src/plugins/gui/filetree.ml b/src/plugins/gui/filetree.ml
index 48f9fe8717e..81a2d73fe34 100644
--- a/src/plugins/gui/filetree.ml
+++ b/src/plugins/gui/filetree.ml
@@ -316,7 +316,7 @@ module MYTREE = struct
     | Dvolatile _ -> Some "volatile clause"
     | Daxiomatic (s, _, _,_) -> Some (global_name s)
     | Dtype (lti, _) -> Some (global_name lti.lt_name)
-    | Dlemma (s, _, _, _, _, _,_) -> Some (global_name s)
+    | Dlemma (s, _, _, _, _,_) -> Some (global_name s)
     | Dinvariant (li, _) -> Some (global_name li.l_var_info.lv_name)
     | Dtype_annot (li, _) -> Some (global_name li.l_var_info.lv_name)
     | Dmodel_annot (mf, _) -> Some (global_name mf.mi_name)
diff --git a/src/plugins/gui/history.ml b/src/plugins/gui/history.ml
index 56b4f7dc99f..020611bec5b 100644
--- a/src/plugins/gui/history.ml
+++ b/src/plugins/gui/history.ml
@@ -224,8 +224,8 @@ let translate_history_elt old_helt =
          GAnnot(Dtype(               {lt_name = new_name},_)  ,        new_loc))
       | (GAnnot(Daxiomatic(          old_name,_,_,_),                  old_loc),
          GAnnot(Daxiomatic(          new_name,_,_,_),                  new_loc))
-      | (GAnnot(Dlemma(              old_name,_,_,_,_,_,_),            old_loc),
-         GAnnot(Dlemma(              new_name,_,_,_,_,_,_),            new_loc))
+      | (GAnnot(Dlemma(              old_name,_,_,_,_,_),              old_loc),
+         GAnnot(Dlemma(              new_name,_,_,_,_,_),              new_loc))
       | (GAnnot(Dfun_or_pred({l_var_info= {lv_name=old_name}},_),      old_loc),
          GAnnot(Dfun_or_pred({l_var_info= {lv_name=new_name}},_),      new_loc))
 
diff --git a/src/plugins/gui/property_navigator.ml b/src/plugins/gui/property_navigator.ml
index cbd09639a4b..cbc5a32e995 100644
--- a/src/plugins/gui/property_navigator.ml
+++ b/src/plugins/gui/property_navigator.ml
@@ -633,7 +633,6 @@ let make_panel (main_ui:main_window_extension_points) =
     | IPPredicate {ip_kind=PKEnsures _;ip_kinstr=Kstmt _} ->
       ensures.get() && stmtSpec.get()
     | IPPredicate {ip_kind = PKTerminates} -> terminates.get ()
-    | IPAxiom _ -> false
     | IPTypeInvariant _ -> typeInvariants.get()
     | IPGlobalInvariant _ -> globalInvariants.get()
     | IPAxiomatic _ -> axiomatic.get () && not (onlyCurrent.get ())
diff --git a/src/plugins/instantiate/stdlib/basic_alloc.ml b/src/plugins/instantiate/stdlib/basic_alloc.ml
index f2d749c5442..cdd690adab2 100644
--- a/src/plugins/instantiate/stdlib/basic_alloc.ml
+++ b/src/plugins/instantiate/stdlib/basic_alloc.ml
@@ -79,9 +79,9 @@ let make_axiomatic_is_allocable loc () =
   let cond = pand (prel (Rlt, t_i, zero), prel (Rgt, t_i, max)) in
   let app = pnot (papp (is_allocable,[label],[t_i])) in
   let prop = pforall ([lv_i], pimplies (cond, app)) in
-  let prop = Logic_const.toplevel_predicate prop in
+  let prop = Logic_const.toplevel_predicate ~kind:Admit prop in
   let gfun = Dfun_or_pred(is_allocable, loc) in
-  let axiom = Dlemma("never_allocable", true, [label],[],prop,[], loc) in
+  let axiom = Dlemma("never_allocable", [label],[],prop,[], loc) in
   ("dynamic_allocation", [gfun ; axiom]), [is_allocable]
 
 let get_is_allocable loc =
diff --git a/src/plugins/markdown-report/sarif_gen.ml b/src/plugins/markdown-report/sarif_gen.ml
index 7c9df870307..72f47dff5f7 100644
--- a/src/plugins/markdown-report/sarif_gen.ml
+++ b/src/plugins/markdown-report/sarif_gen.ml
@@ -149,8 +149,7 @@ let ip_is_in_libc ip =
       match ip with
       | IPAxiomatic {iax_attrs=attrs}
       | IPLemma {il_attrs=attrs}
-      | IPAxiom {il_attrs=attrs} ->
-        Cil.is_in_libc attrs
+        -> Cil.is_in_libc attrs
       | _ ->
         false
     end
diff --git a/src/plugins/metrics/metrics_cilast.ml b/src/plugins/metrics/metrics_cilast.ml
index bbc73b7f5df..246fa138aba 100644
--- a/src/plugins/metrics/metrics_cilast.ml
+++ b/src/plugins/metrics/metrics_cilast.ml
@@ -322,7 +322,7 @@ class slocVisitor ~libc : sloc_visitor = object(self)
         | Dvolatile (_, _, _, _, _) -> " (Volatile) "
         | Daxiomatic (s, _, _, _) -> s
         | Dtype (lti, _) ->  lti.lt_name
-        | Dlemma (ln, _, _, _, _, _, _) ->  ln
+        | Dlemma (ln, _, _, _, _, _) ->  ln
         | Dinvariant (toto, _) -> toto.l_var_info.lv_name
         | Dtype_annot (ta, _) -> ta.l_var_info.lv_name
         | Dmodel_annot (mi, _) -> mi.mi_name
diff --git a/src/plugins/obfuscator/obfuscate.ml b/src/plugins/obfuscator/obfuscate.ml
index 06708db6d2f..ee3739a068f 100644
--- a/src/plugins/obfuscator/obfuscate.ml
+++ b/src/plugins/obfuscator/obfuscate.ml
@@ -169,8 +169,11 @@ class visitor = object
     | Daxiomatic(str, _, _, _) ->
       warn "axiomatic" str;
       Cil.DoChildren
-    | Dlemma(str, axiom, _, _, _, _, _) ->
-      warn (if axiom then "axiom" else "lemma") str;
+    | Dlemma(str, _, _, { tp_kind }, _, _) ->
+      warn (match tp_kind with
+          | Admit -> "axiom"
+          | Assert -> "lemma"
+          | Check -> "check lemma") str;
       Cil.DoChildren
     | _ ->
       Cil.DoChildren
diff --git a/src/plugins/report/classify.ml b/src/plugins/report/classify.ml
index 08e198b764d..90b39dc974e 100644
--- a/src/plugins/report/classify.ml
+++ b/src/plugins/report/classify.ml
@@ -432,7 +432,7 @@ let rec monitored_property ip =
   | IPDisjoint _ -> true
   | IPReachable {ir_kf=None} -> false
   | IPReachable {ir_kf=Some _} -> true
-  | IPAxiomatic _ | IPAxiom _ -> false
+  | IPAxiomatic _ -> false
   | IPLemma _ -> true
   | IPTypeInvariant _ | IPGlobalInvariant _ -> true
   | IPOther _ -> true
diff --git a/src/plugins/server/kernel_properties.ml b/src/plugins/server/kernel_properties.ml
index cc2f4484a24..eeb81989c9d 100644
--- a/src/plugins/server/kernel_properties.ml
+++ b/src/plugins/server/kernel_properties.ml
@@ -82,6 +82,7 @@ struct
   let t_axiomatic = t_kind "axiomatic" "Axiomatic definitions"
   let t_axiom = t_kind "axiom" "Logical axiom"
   let t_lemma = t_kind "lemma" "Logical lemma"
+  let t_check_lemma = t_kind "check_lemma" "Logical check lemma"
 
   let p_ext = Enum.prefix kinds ~name:"ext" ~var:"<clause>"
       ~descr:(Md.plain "ACSL extension `<clause>`")
@@ -108,8 +109,9 @@ struct
       end
     | IPExtended { ie_ext={ ext_name } } -> Enum.instance p_ext ext_name
     | IPAxiomatic _ -> t_axiomatic
-    | IPAxiom _ -> t_axiom
-    | IPLemma _ -> t_lemma
+    | IPLemma { il_pred = { tp_kind = Admit } } -> t_axiom
+    | IPLemma { il_pred = { tp_kind = Assert } } -> t_lemma
+    | IPLemma { il_pred = { tp_kind = Check } } -> t_check_lemma
     | IPBehavior _ -> t_behavior
     | IPComplete _ -> t_complete
     | IPDisjoint _ -> t_disjoint
diff --git a/src/plugins/value/gui_files/gui_eval.ml b/src/plugins/value/gui_files/gui_eval.ml
index 37fcedc58ed..024d790a38d 100644
--- a/src/plugins/value/gui_files/gui_eval.ml
+++ b/src/plugins/value/gui_files/gui_eval.ml
@@ -41,7 +41,7 @@ let classify_pre_post kf ip =
   let open Property in
   match ip with
   | IPPredicate {ip_kind = PKEnsures (_, Normal)} -> Some (GL_Post kf)
-  | IPPredicate {ip_kind=PKEnsures _} | IPAxiom _ | IPAxiomatic _ | IPLemma _
+  | IPPredicate {ip_kind=PKEnsures _} | IPAxiomatic _ | IPLemma _
   | IPTypeInvariant _ | IPGlobalInvariant _
   | IPOther _ | IPCodeAnnot _ | IPAllocation _ | IPReachable _
   | IPExtended _
diff --git a/src/plugins/wp/Cstring.ml b/src/plugins/wp/Cstring.ml
index 47574ee5837..dffdaff92e3 100644
--- a/src/plugins/wp/Cstring.ml
+++ b/src/plugins/wp/Cstring.ml
@@ -76,7 +76,7 @@ module LIT = WpContext.Generator(STR)
         define_lemma {
           l_name = prefix ^ "_literal" ;
           l_cluster = cluster () ;
-          l_kind = `Axiom ;
+          l_kind = Admit ;
           l_types = 0 ;
           l_forall = [] ;
           l_triggers = [] ;
diff --git a/src/plugins/wp/Cvalues.ml b/src/plugins/wp/Cvalues.ml
index 1e0e459349b..a57d3cc264b 100644
--- a/src/plugins/wp/Cvalues.ml
+++ b/src/plugins/wp/Cvalues.ml
@@ -157,7 +157,7 @@ module OPAQUE_COMP_BYTES_LENGTH = WpContext.Generator(Cil_datatype.Compinfo)
         } ;
         let min_size = if Cil.acceptEmptyCompinfo () then e_zero else e_one in
         Definitions.define_lemma {
-          l_kind = `Axiom ; l_name ;
+          l_kind = Admit ; l_name ;
           l_types = 0 ; l_triggers = [] ; l_forall = [] ;
           l_cluster = Definitions.compinfo c ;
           l_lemma = Lang.F.(p_leq min_size (e_fun size []))
diff --git a/src/plugins/wp/Definitions.ml b/src/plugins/wp/Definitions.ml
index b8bd00cd0e6..21a016e7e19 100644
--- a/src/plugins/wp/Definitions.ml
+++ b/src/plugins/wp/Definitions.ml
@@ -53,7 +53,7 @@ type cluster = {
 and dlemma = {
   l_name  : string ;
   l_cluster : cluster ;
-  l_kind : lkind ;
+  l_kind : predicate_kind ;
   l_types : int ;
   l_forall : var list ;
   l_triggers : trigger list list (* OR of AND triggers *) ;
diff --git a/src/plugins/wp/Definitions.mli b/src/plugins/wp/Definitions.mli
index 4955747af42..6f944d798c4 100644
--- a/src/plugins/wp/Definitions.mli
+++ b/src/plugins/wp/Definitions.mli
@@ -48,7 +48,7 @@ type typedef = (tau,field,lfun) Qed.Engine.ftypedef
 type dlemma = {
   l_name  : string ;
   l_cluster : cluster ;
-  l_kind : lkind ;
+  l_kind : predicate_kind ;
   l_types : int ;
   l_forall : var list ;
   l_triggers : trigger list list ; (** OR of AND-triggers *)
diff --git a/src/plugins/wp/Generator.ml b/src/plugins/wp/Generator.ml
index 5fde9f3ba27..bbffa7962c7 100644
--- a/src/plugins/wp/Generator.ml
+++ b/src/plugins/wp/Generator.ml
@@ -71,7 +71,6 @@ let compute_ip cc ip =
       cc#compute
 
   | IPFrom _
-  | IPAxiom _
   | IPReachable _
   | IPPropertyInstance _
   | IPOther _
diff --git a/src/plugins/wp/LogicCompiler.ml b/src/plugins/wp/LogicCompiler.ml
index 668d62a29af..aaad8e31562 100644
--- a/src/plugins/wp/LogicCompiler.ml
+++ b/src/plugins/wp/LogicCompiler.ml
@@ -543,7 +543,7 @@ struct
             let trigger = Trigger.of_term result in
             Definitions.define_lemma {
               l_name = name ;
-              l_kind = `Axiom ;
+              l_kind = Admit ;
               l_types = ldef.d_types ;
               l_forall = ldef.d_params ;
               l_triggers = [[trigger]] ;
@@ -725,7 +725,7 @@ struct
     (* Re-compile final cases *)
     let cases = List.map
         (fun (case,labels,types,lemma) ->
-           compile_lemma cluster ~kind:`Axiom case types labels lemma)
+           compile_lemma cluster ~kind:Admit case types labels lemma)
         cases in
     Definitions.update_symbol { ldef with d_definition = Inductive cases } ;
     type_for_signature l ldef sigp (* sufficient *) ; SIG sigm
@@ -774,7 +774,7 @@ struct
                     {
                       l_name ;
                       l_types = 0 ;
-                      l_kind = `Axiom ;
+                      l_kind = Admit ;
                       l_triggers = [frame.triggers] ;
                       l_forall = vs ;
                       l_cluster = cluster ;
@@ -805,9 +805,9 @@ struct
       Wp_parameters.warning ~source:l.lem_position
         "Lemma '%s' has labels, consider using global invariant instead."
         l.lem_name ;
+    let { tp_kind = kind ; tp_statement = p } = l.lem_predicate in
     Definitions.define_lemma
-      (compile_lemma c ~kind:l.lem_kind
-         l.lem_name l.lem_types l.lem_labels l.lem_property)
+      (compile_lemma c ~kind l.lem_name l.lem_types l.lem_labels p)
 
   let define_axiomatic cluster ax =
     begin
diff --git a/src/plugins/wp/LogicUsage.ml b/src/plugins/wp/LogicUsage.ml
index b3533aefe3d..28bb84f9b84 100644
--- a/src/plugins/wp/LogicUsage.ml
+++ b/src/plugins/wp/LogicUsage.ml
@@ -57,15 +57,12 @@ let trim name =
 (* --- Definition Blocks                                                  --- *)
 (* -------------------------------------------------------------------------- *)
 
-type lkind = [ `Axiom | `Check | `Lemma ]
-
 type logic_lemma = {
   lem_name : string ;
-  lem_kind : lkind ;
   lem_position : Filepath.position ;
   lem_types : string list ;
   lem_labels : logic_label list ;
-  lem_property : predicate ;
+  lem_predicate : toplevel_predicate ;
   lem_depends : logic_lemma list ;
   (* global lemmas declared before in AST order (in reverse order) *)
   lem_attrs : attributes ;
@@ -194,30 +191,21 @@ let pp_profile fmt l =
 (* -------------------------------------------------------------------------- *)
 
 let ip_lemma l =
-  let open Property in
-  let mk_prop, kind =
-    match l.lem_kind with
-    | `Axiom -> Property.ip_axiom, Admit
-    | `Lemma -> Property.ip_lemma, Assert
-    | `Check -> Property.ip_lemma, Check
-  in
-  mk_prop
-    {il_name = l.lem_name; il_labels = l.lem_labels;
-     il_args = l.lem_types; il_loc = (l.lem_position, l.lem_position);
-     il_attrs = l.lem_attrs;
-     il_pred = Logic_const.toplevel_predicate ~kind l.lem_property}
+  Property.ip_lemma {
+    il_name = l.lem_name; il_labels = l.lem_labels;
+    il_args = l.lem_types; il_loc = (l.lem_position, l.lem_position);
+    il_attrs = l.lem_attrs;
+    il_pred = l.lem_predicate;
+  }
 
 let lemma_of_global ~context = function
-  | Dlemma(name,axiom,labels,types,pred,attrs,loc) ->
-      let kind = if axiom then `Axiom else
-        if pred.tp_kind = Check then `Check else `Lemma in
+  | Dlemma(name,labels,types,pred,attrs,loc) ->
       {
         lem_name = name ;
         lem_position = fst loc ;
         lem_types = types ;
         lem_labels = labels ;
-        lem_kind = kind ;
-        lem_property = pred.tp_statement ;
+        lem_predicate = pred ;
         lem_depends = context ;
         lem_attrs = attrs ;
       }
@@ -418,7 +406,7 @@ class visitor =
       | Dlemma _ ->
           let lem = lemma_of_global database.proofcontext global in
           register_lemma database self#section lem ;
-          if lem.lem_kind <> `Check then
+          if Logic_utils.use_predicate lem.lem_predicate.tp_kind then
             database.proofcontext <- lem :: database.proofcontext ;
           SkipChildren
 
@@ -556,12 +544,12 @@ let pp_decl fmt d l =
   end
 
 let pp_kind fmt = function
-  | `Axiom -> Format.pp_print_string fmt "axiom"
-  | `Lemma -> Format.pp_print_string fmt "lemma"
-  | `Check -> Format.pp_print_string fmt "check lemma"
+  | Admit -> Format.pp_print_string fmt "axiom"
+  | Assert -> Format.pp_print_string fmt "lemma"
+  | Check -> Format.pp_print_string fmt "check lemma"
 
 let pp_lemma fmt l =
-  Format.fprintf fmt " * %a '%s'@\n" pp_kind l.lem_kind l.lem_name
+  Format.fprintf fmt " * %a '%s'@\n" pp_kind l.lem_predicate.tp_kind l.lem_name
 
 let get_name l = compute () ; compute_logicname l
 
@@ -596,7 +584,7 @@ let dump () =
       SMap.iter
         (fun l (lem,s) ->
            Format.fprintf fmt " * %a '%s' in %a@\n"
-             pp_kind lem.lem_kind
+             pp_kind lem.lem_predicate.tp_kind
              l pp_section s)
         d.lemmas ;
       Format.fprintf fmt "-------------------------------------------------@." ;
diff --git a/src/plugins/wp/LogicUsage.mli b/src/plugins/wp/LogicUsage.mli
index 3874d985157..e1126b3fb07 100644
--- a/src/plugins/wp/LogicUsage.mli
+++ b/src/plugins/wp/LogicUsage.mli
@@ -30,15 +30,12 @@ open Clabels
 
 val basename : varinfo -> string (** Trims the original name *)
 
-type lkind = [ `Axiom | `Check | `Lemma ]
-
 type logic_lemma = {
   lem_name : string ;
-  lem_kind : lkind ;
   lem_position : Filepath.position ;
   lem_types : string list ;
   lem_labels : logic_label list ;
-  lem_property : predicate ;
+  lem_predicate : toplevel_predicate ;
   lem_depends : logic_lemma list ; (** in reverse order *)
   lem_attrs : attributes ;
 }
diff --git a/src/plugins/wp/MemLoader.ml b/src/plugins/wp/MemLoader.ml
index 9711954f9aa..da1ad868819 100644
--- a/src/plugins/wp/MemLoader.ml
+++ b/src/plugins/wp/MemLoader.ml
@@ -155,7 +155,7 @@ struct
                     prefix name Chunk.pretty chunk i in
                 let l_lemma = F.p_hyps conditions (p_equal value1 value2) in
                 Definitions.define_lemma {
-                  l_kind = `Axiom ;
+                  l_kind = Admit ;
                   l_name ; l_types = 0 ;
                   l_triggers ;
                   l_forall = F.p_vars l_lemma ;
@@ -293,7 +293,7 @@ struct
             d_cluster = cluster ;
           } ;
           Definitions.define_lemma {
-            l_kind = `Axiom ;
+            l_kind = Admit ;
             l_name = name ; l_types = 0 ;
             l_forall = F.p_vars lemma ;
             l_triggers = [[Trigger.of_term va]] ;
@@ -390,7 +390,7 @@ struct
           let is_init_r = M.is_init_range sigma obj loc e_one in
           let lemma = p_equiv is_init_p is_init_r in
           Definitions.define_lemma {
-            l_kind = `Axiom ;
+            l_kind = Admit ;
             l_name = name ^ "_range" ; l_types = 0 ;
             l_forall = params ;
             l_triggers = [] ;
@@ -438,7 +438,7 @@ struct
             let is_init_r = M.is_init_range sigma obj loc len in
             let lemma = p_equiv is_init_p is_init_r in
             Definitions.define_lemma {
-              l_kind = `Axiom ;
+              l_kind = Admit ;
               l_name = name ^ "_range" ; l_types = 0 ;
               l_forall = params ;
               l_triggers = [] ;
diff --git a/src/plugins/wp/MemRegion.ml b/src/plugins/wp/MemRegion.ml
index c5a388526d6..b30349a269d 100644
--- a/src/plugins/wp/MemRegion.ml
+++ b/src/plugins/wp/MemRegion.ml
@@ -193,14 +193,14 @@ let constructor ~basename ~params ~index ~addrof ~consistent =
       } ;
       Definitions.define_lemma {
         l_cluster = cluster ;
-        l_kind = `Axiom ;
+        l_kind = Admit ;
         l_name = Printf.sprintf "addrof_%s_%d" basename id ;
         l_forall = params ; l_types = 0 ; l_triggers = [] ;
         l_lemma = p_addrof ;
       } ;
       Definitions.define_lemma {
         l_cluster = cluster ;
-        l_kind = `Axiom ;
+        l_kind = Admit ;
         l_name = Printf.sprintf "consistent_%s_%d" basename id ;
         l_forall = params ; l_types = 0 ; l_triggers = [] ;
         l_lemma = p_consistent ;
@@ -208,7 +208,7 @@ let constructor ~basename ~params ~index ~addrof ~consistent =
       if p_index != F.p_true then
         Definitions.define_lemma {
           l_cluster = cluster ;
-          l_kind = `Axiom ;
+          l_kind = Admit ;
           l_name = Printf.sprintf "index_%s_%d" basename id ;
           l_forall = params @ [k] ; l_types = 0 ; l_triggers = [] ;
           l_lemma = p_index ;
diff --git a/src/plugins/wp/MemTyped.ml b/src/plugins/wp/MemTyped.ml
index 224fdad715b..8a0882ad86b 100644
--- a/src/plugins/wp/MemTyped.ml
+++ b/src/plugins/wp/MemTyped.ml
@@ -241,7 +241,7 @@ module OPAQUE_COMP_LENGTH = WpContext.Generator(Cil_datatype.Compinfo)
           d_definition = Logic result ;
         } ;
         Definitions.define_lemma {
-          l_kind = `Axiom ;
+          l_kind = Admit ;
           l_name = "Positive_Length_of_" ^ Lang.comp_id c ;
           l_types = 0 ; l_triggers = [] ; l_forall = [] ;
           l_cluster = Definitions.compinfo c ;
@@ -460,7 +460,7 @@ module STRING = WpContext.Generator(LITERAL)
         let alloc = F.e_get m base in (* The size is alloc-1 *)
         let sized = Cstring.str_len cst (F.e_add alloc F.e_minus_one) in
         Definitions.define_lemma {
-          l_kind = `Axiom ;
+          l_kind = Admit ;
           l_name = name ; l_types = 0 ;
           l_triggers = [] ; l_forall = [] ;
           l_lemma = p_forall [a] (p_imply m_linked sized) ;
@@ -471,7 +471,7 @@ module STRING = WpContext.Generator(LITERAL)
         let name = prefix ^ "_region" in
         let re = - Cstring.str_id cst in
         Definitions.define_lemma {
-          l_kind = `Axiom ;
+          l_kind = Admit ;
           l_name = name ; l_types = 0 ; l_triggers = [] ; l_forall = [] ;
           l_lemma = p_equal (e_fun f_region [base]) (e_int re) ;
           l_cluster = Cstring.cluster () ;
@@ -488,7 +488,7 @@ module STRING = WpContext.Generator(LITERAL)
         let v = F.e_get (e_var m) addr in
         let read = F.p_equal c v in
         Definitions.define_lemma {
-          l_kind = `Axiom ;
+          l_kind = Admit ;
           l_name = name ; l_types = 0 ; l_triggers = [] ;
           l_forall = [m;i] ;
           l_cluster = Cstring.cluster () ;
@@ -512,7 +512,7 @@ module STRING = WpContext.Generator(LITERAL)
         } ;
         Definitions.define_lemma {
           l_name = prefix ^ "_base" ;
-          l_kind = `Axiom ;
+          l_kind = Admit ;
           l_types = 0 ; l_triggers = [] ; l_forall = [] ;
           l_lemma = F.p_lt base F.e_zero ;
           l_cluster = Cstring.cluster () ;
@@ -546,7 +546,7 @@ module BASE = WpContext.Generator(Varinfo)
         let name = prefix ^ "_region" in
         let re = if x.vglob then 0 else if x.vformal then 1 else 2 in
         Definitions.define_lemma {
-          l_kind = `Axiom ;
+          l_kind = Admit ;
           l_name = name ; l_types = 0 ; l_triggers = [] ; l_forall = [] ;
           l_lemma = p_equal (e_fun f_region [base]) (e_int re) ;
           l_cluster = cluster_globals () ;
@@ -570,7 +570,7 @@ module BASE = WpContext.Generator(Varinfo)
             let m_linked = p_call p_linked [m] in
             let base_size = p_equal (F.e_get m base) size in
             Definitions.define_lemma {
-              l_kind = `Axiom ;
+              l_kind = Admit ;
               l_name = name ; l_types = 0 ;
               l_triggers = [] ; l_forall = [] ;
               l_lemma = p_forall [a] (p_imply m_linked base_size) ;
@@ -591,7 +591,7 @@ module BASE = WpContext.Generator(Varinfo)
             let m_init = p_call p_cinits [m] in
             let init_prop = p_forall [a] (p_imply m_init init_access) in
             Definitions.define_lemma {
-              l_kind = `Axiom ;
+              l_kind = Admit ;
               l_name = prefix ^ "_init" ; l_types = 0 ;
               l_triggers = [] ; l_forall = [] ;
               l_lemma = init_prop ;
diff --git a/src/plugins/wp/ProverWhy3.ml b/src/plugins/wp/ProverWhy3.ml
index ed48014f562..f2072313673 100644
--- a/src/plugins/wp/ProverWhy3.ml
+++ b/src/plugins/wp/ProverWhy3.ml
@@ -945,11 +945,12 @@ class visitor (ctx:context) c =
       id, t
 
     method on_dlemma l =
-      let kind = Why3.Decl.(if l.l_kind = `Axiom then Paxiom else Plemma) in
-      let cnv = empty_cnv ctx in
-      let id, t = self#make_lemma cnv l in
-      let decl = Why3.Decl.create_prop_decl kind id t in
-      ctx.th <- Why3.Theory.add_decl ~warn:false ctx.th decl
+      if l.l_kind <> Check then
+        let kind = Why3.Decl.(if l.l_kind = Admit then Paxiom else Plemma) in
+        let cnv = empty_cnv ctx in
+        let id, t = self#make_lemma cnv l in
+        let decl = Why3.Decl.create_prop_decl kind id t in
+        ctx.th <- Why3.Theory.add_decl ~warn:false ctx.th decl
 
     method on_dfun d =
       Wp_parameters.debug ~dkey:dkey_api "Define %a@." Lang.Fun.pretty d.d_lfun ;
diff --git a/src/plugins/wp/RefUsage.ml b/src/plugins/wp/RefUsage.ml
index 148ae72e4c4..7a7a7ac3eb8 100644
--- a/src/plugins/wp/RefUsage.ml
+++ b/src/plugins/wp/RefUsage.ml
@@ -735,7 +735,7 @@ let compute_usage () =
   (* Usage in lemmas *)
   let u_lemmas =
     LogicUsage.fold_lemmas
-      (fun l -> E.cup (pred (mk_ctx()) l.lem_property)) E.bot
+      (fun l -> E.cup (pred (mk_ctx()) l.lem_predicate.tp_statement)) E.bot
   in
   (* initial state by kf *)
   let usage = Globals.Functions.fold (fun kf env ->
diff --git a/src/plugins/wp/cfgWP.ml b/src/plugins/wp/cfgWP.ml
index 10e8f697cc3..1999e7ebb5f 100644
--- a/src/plugins/wp/cfgWP.ml
+++ b/src/plugins/wp/cfgWP.ml
@@ -1404,7 +1404,7 @@ struct
   let compile_lemma l = ignore (VCG.lemma l)
 
   let prove_lemma collection l =
-    if l.lem_kind <> `Axiom then
+    if Logic_utils.verify_predicate l.lem_predicate.tp_kind then
       begin
         let id = WpPropId.mk_lemma_id l in
         let def = VCG.lemma l in
diff --git a/src/plugins/wp/wpAnnot.ml b/src/plugins/wp/wpAnnot.ml
index c6ff88f1a14..3c4522ed465 100644
--- a/src/plugins/wp/wpAnnot.ml
+++ b/src/plugins/wp/wpAnnot.ml
@@ -1145,7 +1145,7 @@ let add_global_annotations annots =
           "Global invariant not handled yet ('%s' ignored)"
           linfo.l_var_info.lv_name;
         ()
-    | Dlemma (name,_,_,_,p,_,_) ->
+    | Dlemma (name,_,_,p,_,_) ->
         if use_predicate p.tp_kind then
           WpStrategy.add_axiom annots (LogicUsage.logic_lemma name)
 
diff --git a/src/plugins/wp/wpPropId.ml b/src/plugins/wp/wpPropId.ml
index 90595b12758..d97ec04e19b 100644
--- a/src/plugins/wp/wpPropId.ml
+++ b/src/plugins/wp/wpPropId.ml
@@ -513,7 +513,6 @@ let user_prop_names p =
   | IPFrom _
   | IPAllocation _
   | IPAxiomatic _
-  | IPAxiom _
   | IPBehavior _
   | IPReachable _
   | IPPropertyInstance _
@@ -684,7 +683,6 @@ let annot_hints hs = function
 
 let property_hints hs =
   let open Property in function
-    | IPAxiom  {il_name; il_pred}
     | IPLemma  {il_name; il_pred} ->
         List.iter (add_required hs) (il_name::il_pred.tp_statement.pred_name)
     | IPBehavior _ -> ()
@@ -981,6 +979,10 @@ let merge_assign_info a1 a2 = match a1,a2 with
       Wp_parameters.fatal "Several assigns ?"
 
 
+(* -------------------------------------------------------------------------- *)
+(* --- Axioms                                                             --- *)
+(* -------------------------------------------------------------------------- *)
+
 type axiom_info = prop_id * LogicUsage.logic_lemma
 
 let mk_axiom_info lemma =
@@ -988,11 +990,7 @@ let mk_axiom_info lemma =
 
 let pp_axiom_info fmt (id,thm) =
   Format.fprintf fmt "(@[%a:@ %a@])" pp_propid id
-    Printer.pp_predicate thm.LogicUsage.lem_property
-
-(* -------------------------------------------------------------------------- *)
-(* --- Prop Splitter                                                      --- *)
-(* -------------------------------------------------------------------------- *)
+    Printer.pp_predicate thm.LogicUsage.lem_predicate.tp_statement
 
 (* -------------------------------------------------------------------------- *)
 (* --- Prop Splitter                                                      --- *)
diff --git a/src/plugins/wp/wpStrategy.ml b/src/plugins/wp/wpStrategy.ml
index bace35e939a..0c597b73e43 100644
--- a/src/plugins/wp/wpStrategy.ml
+++ b/src/plugins/wp/wpStrategy.ml
@@ -675,7 +675,7 @@ let add_all_axioms tbl =
   let rec do_g g =
     match g with
     | Daxiomatic (_ax_name, globs,_,_) -> do_globs globs
-    | Dlemma (name,_,_,_,_,_,_) ->
+    | Dlemma (name,_,_,_,_,_) ->
         let lem = LogicUsage.logic_lemma name in
         add_axiom tbl lem
     | _ -> ()
diff --git a/tests/builtins/oracle/memcpy.res.oracle b/tests/builtins/oracle/memcpy.res.oracle
index dd7e4c0161b..2f999a73305 100644
--- a/tests/builtins/oracle/memcpy.res.oracle
+++ b/tests/builtins/oracle/memcpy.res.oracle
@@ -996,6 +996,32 @@
 --- Global Properties
 --------------------------------------------------------------------------------
 
+[  Valid  ] Axiomatic 'MemChr'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'MemCmp'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'MemSet'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'StrChr'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'StrCmp'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'StrLen'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'StrNCmp'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'WMemChr'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'WcsChr'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'WcsCmp'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'WcsLen'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'WcsNCmp'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'dynamic_allocation'
+            by Frama-C kernel.
 [ Extern  ] Axiom 'memchr_def'
             Unverifiable but considered Valid.
 [ Extern  ] Axiom 'memcmp_strlen_left'
@@ -1066,32 +1092,6 @@
             Unverifiable but considered Valid.
 [ Extern  ] Axiom 'wmemchr_def'
             Unverifiable but considered Valid.
-[  Valid  ] Axiomatic 'MemChr'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'MemCmp'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'MemSet'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'StrChr'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'StrCmp'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'StrLen'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'StrNCmp'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'WMemChr'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'WcsChr'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'WcsCmp'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'WcsLen'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'WcsNCmp'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'dynamic_allocation'
-            by Frama-C kernel.
 
 --------------------------------------------------------------------------------
 --- Properties of Function 'memcmp'
diff --git a/tests/idct/oracle/ieee_1180_1990.res.oracle b/tests/idct/oracle/ieee_1180_1990.res.oracle
index 6be9aa23457..02d4b53e0b8 100644
--- a/tests/idct/oracle/ieee_1180_1990.res.oracle
+++ b/tests/idct/oracle/ieee_1180_1990.res.oracle
@@ -1124,6 +1124,51 @@
 --- Global Properties
 --------------------------------------------------------------------------------
 
+[  Valid  ] Axiomatic 'GetsLength'
+            axiomatic GetsLength
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'MemChr'
+            axiomatic MemChr
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'MemCmp'
+            axiomatic MemCmp
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'MemSet'
+            axiomatic MemSet
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'StrChr'
+            axiomatic StrChr
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'StrCmp'
+            axiomatic StrCmp
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'StrLen'
+            axiomatic StrLen
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'StrNCmp'
+            axiomatic StrNCmp
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'WMemChr'
+            axiomatic WMemChr
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'WcsChr'
+            axiomatic WcsChr
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'WcsCmp'
+            axiomatic WcsCmp
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'WcsLen'
+            axiomatic WcsLen
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'WcsNCmp'
+            axiomatic WcsNCmp
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'format_length'
+            axiomatic format_length
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'pipe_streams'
+            axiomatic pipe_streams
+            by Frama-C kernel.
 [ Extern  ] Axiom 'memchr_def'
             axiom memchr_def
             Unverifiable but considered Valid.
@@ -1226,51 +1271,6 @@
 [ Extern  ] Axiom 'wmemchr_def'
             axiom wmemchr_def
             Unverifiable but considered Valid.
-[  Valid  ] Axiomatic 'GetsLength'
-            axiomatic GetsLength
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'MemChr'
-            axiomatic MemChr
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'MemCmp'
-            axiomatic MemCmp
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'MemSet'
-            axiomatic MemSet
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'StrChr'
-            axiomatic StrChr
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'StrCmp'
-            axiomatic StrCmp
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'StrLen'
-            axiomatic StrLen
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'StrNCmp'
-            axiomatic StrNCmp
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'WMemChr'
-            axiomatic WMemChr
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'WcsChr'
-            axiomatic WcsChr
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'WcsCmp'
-            axiomatic WcsCmp
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'WcsLen'
-            axiomatic WcsLen
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'WcsNCmp'
-            axiomatic WcsNCmp
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'format_length'
-            axiomatic format_length
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'pipe_streams'
-            axiomatic pipe_streams
-            by Frama-C kernel.
 
 --------------------------------------------------------------------------------
 --- Properties of Function 'remove'
diff --git a/tests/rte/oracle/value_rte.res.oracle b/tests/rte/oracle/value_rte.res.oracle
index 42a86c5e8f0..70d52622e99 100644
--- a/tests/rte/oracle/value_rte.res.oracle
+++ b/tests/rte/oracle/value_rte.res.oracle
@@ -49,6 +49,36 @@
 --- Global Properties
 --------------------------------------------------------------------------------
 
+[  Valid  ] Axiomatic 'GetsLength'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'MemChr'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'MemCmp'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'MemSet'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'StrChr'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'StrCmp'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'StrLen'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'StrNCmp'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'WMemChr'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'WcsChr'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'WcsCmp'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'WcsLen'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'WcsNCmp'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'format_length'
+            by Frama-C kernel.
+[  Valid  ] Axiomatic 'pipe_streams'
+            by Frama-C kernel.
 [ Extern  ] Axiom 'memchr_def'
             Unverifiable but considered Valid.
 [ Extern  ] Axiom 'memcmp_strlen_left'
@@ -117,36 +147,6 @@
             Unverifiable but considered Valid.
 [ Extern  ] Axiom 'wmemchr_def'
             Unverifiable but considered Valid.
-[  Valid  ] Axiomatic 'GetsLength'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'MemChr'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'MemCmp'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'MemSet'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'StrChr'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'StrCmp'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'StrLen'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'StrNCmp'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'WMemChr'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'WcsChr'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'WcsCmp'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'WcsLen'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'WcsNCmp'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'format_length'
-            by Frama-C kernel.
-[  Valid  ] Axiomatic 'pipe_streams'
-            by Frama-C kernel.
 
 --------------------------------------------------------------------------------
 --- Properties of Function 'remove'
diff --git a/tests/spec/add_global.ml b/tests/spec/add_global.ml
index 0a8f954137c..ddb4d762212 100644
--- a/tests/spec/add_global.ml
+++ b/tests/spec/add_global.ml
@@ -1,7 +1,7 @@
 open Cil_types
 
 let emitter =
-  Emitter.create "Fancy" [ Emitter.Global_annot ] ~correctness:[] ~tuning:[] 
+  Emitter.create "Fancy" [ Emitter.Global_annot ] ~correctness:[] ~tuning:[]
 
 class vis prj =
 object(self)
@@ -14,8 +14,8 @@ object(self)
         Daxiomatic
           ("MyAxiomatic",
            [ Dlemma(
-                 "myaxiom", true, [], [],
-                 Logic_const.(toplevel_predicate ptrue),
+                 "myaxiom", [], [],
+                 Logic_const.(toplevel_predicate ~kind:Admit ptrue),
                  [], Cil_datatype.Location.unknown)],
            [], Cil_datatype.Location.unknown)
       in
diff --git a/tests/spec/oracle/axiom_redef_bts1005.res.oracle b/tests/spec/oracle/axiom_redef_bts1005.res.oracle
index dd1cd99891e..d6bf2400ede 100644
--- a/tests/spec/oracle/axiom_redef_bts1005.res.oracle
+++ b/tests/spec/oracle/axiom_redef_bts1005.res.oracle
@@ -1,5 +1,5 @@
 [kernel] Parsing tests/spec/axiom_redef_bts1005.i (no preprocessing)
 [kernel:annot-error] tests/spec/axiom_redef_bts1005.i:5: Warning: 
-  inj1 is already registered as axiom (tests/spec/axiom_redef_bts1005.i:4). Ignoring global annotation
+  lemma inj1 is already registered (tests/spec/axiom_redef_bts1005.i:4). Ignoring global annotation
 /* Generated by Frama-C */
 
-- 
GitLab


From 93637166d5a2b551891ed70de19e43eaba1545dc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Loi=CC=88c=20Correnson?= <loic.correnson@cea.fr>
Date: Wed, 17 Feb 2021 19:11:58 +0100
Subject: [PATCH 116/141] [logic] pretty-printing predicate kinds

---
 Makefile                                      |  2 +-
 src/kernel_services/ast_data/property.ml      | 36 +++-----
 .../ast_printing/cil_printer.ml               | 85 ++++++++++++++-----
 .../ast_printing/cil_printer.mli              | 28 ++++++
 .../ast_printing/description.ml               |  9 +-
 .../ast_printing/logic_print.ml               | 28 ++----
 src/plugins/gui/design.ml                     |  7 +-
 src/plugins/obfuscator/obfuscate.ml           |  5 +-
 src/plugins/value/engine/transfer_logic.ml    |  4 +-
 src/plugins/value/legacy/eval_annots.ml       |  4 +-
 src/plugins/wp/LogicUsage.ml                  | 10 +--
 11 files changed, 127 insertions(+), 91 deletions(-)

diff --git a/Makefile b/Makefile
index 73227de03b3..177271d48bc 100644
--- a/Makefile
+++ b/Makefile
@@ -526,8 +526,8 @@ KERNEL_CMO=\
 	src/kernel_services/ast_printing/cil_descriptive_printer.cmo    \
 	src/kernel_services/parsetree/cabs.cmo                               \
 	src/kernel_services/parsetree/cabshelper.cmo                         \
-	src/kernel_services/ast_printing/logic_print.cmo                \
 	src/kernel_services/ast_queries/logic_utils.cmo              \
+	src/kernel_services/ast_printing/logic_print.cmo                \
 	src/kernel_internals/parsing/logic_parser.cmo                  \
 	src/kernel_internals/parsing/logic_lexer.cmo                   \
 	src/kernel_services/ast_queries/logic_typing.cmo             \
diff --git a/src/kernel_services/ast_data/property.ml b/src/kernel_services/ast_data/property.ml
index 26db9e82553..c4b3ce48fa4 100644
--- a/src/kernel_services/ast_data/property.ml
+++ b/src/kernel_services/ast_data/property.ml
@@ -420,10 +420,8 @@ let rec pretty_ip fmt = function
   | IPExtended {ie_ext} -> Cil_printer.pp_extended fmt ie_ext
   | IPAxiomatic {iax_name} -> Format.fprintf fmt "axiomatic@ %s" iax_name
   | IPLemma {il_name; il_pred} ->
-    (match il_pred.tp_kind with
-     | Admit -> Format.fprintf fmt "axiom@ %s" il_name
-     | Assert -> Format.fprintf fmt "lemma@ %s" il_name
-     | Check -> Format.fprintf fmt "check lemma@ %s" il_name)
+    Format.fprintf fmt "%a@ %s"
+      Cil_printer.pp_lemma_kind il_pred.tp_kind il_name
   | IPTypeInvariant {iti_name; iti_type} ->
     Format.fprintf fmt "invariant@ %s for type %a" iti_name
       Cil_printer.pp_typ iti_type
@@ -1135,11 +1133,10 @@ struct
       Format.asprintf  "%sextended%a" (extended_loc_prefix le) pp_names [ext_name]
     | IPCodeAnnot {ica_kf=kf; ica_ca=ca} ->
       let name = match ca.annot_content with
-        | AAssert (_, {tp_kind = Assert }) -> "assert"
-        | AAssert (_, {tp_kind = Check }) -> "check"
-        | AAssert (_, {tp_kind = Admit }) -> "admit"
-        | AInvariant (_,true,_) -> "loop_inv"
-        | AInvariant _ -> "inv"
+        | AAssert (_, {tp_kind}) -> Cil_printer.string_of_assert tp_kind
+        | AInvariant (_,loop,{tp_kind}) ->
+          let kw = if loop then "invariant" else "loop_invariant" in
+          Cil_printer.ident_of_predicate ~kw tp_kind
         | APragma _ -> "pragma"
         | AStmtSpec _ -> "contract"
         | AAssigns _ -> "assigns"
@@ -1161,7 +1158,9 @@ struct
       (kf_prefix kf) ^ "loop_term" ^ (variant_suffix variant)
     | IPAxiomatic {iax_name} -> "axiomatic_" ^ iax_name
     | IPLemma {il_name=name; il_pred} ->
-      Format.asprintf "lemma_%s%a" name pp_names il_pred.tp_statement.pred_name
+      Format.asprintf "%s_%s%a"
+        (Cil_printer.ident_of_lemma il_pred.tp_kind)
+        name pp_names il_pred.tp_statement.pred_name
     | IPTypeInvariant {iti_name; iti_pred} ->
       Format.asprintf "type_invariant_%s%a"
         iti_name pp_names iti_pred.pred_name
@@ -1169,10 +1168,10 @@ struct
       Format.asprintf "global_invariant_%s%a"
         igi_name pp_names igi_pred.pred_name
     | IPAllocation {ial_kf=kf; ial_kinstr=ki; ial_bhv=Id_contract (a,b)} ->
-      Format.asprintf "%s%s%a%salloc"
+      Format.asprintf "%s%s%a%sallocates"
         (kf_prefix kf) (ki_prefix ki) active_prefix a (behavior_prefix b)
     | IPAllocation {ial_kf=kf; ial_kinstr=Kstmt _; ial_bhv=Id_loop ca} ->
-      Format.asprintf "%sloop_alloc%a"
+      Format.asprintf "%sloop_allocates%a"
         (kf_prefix kf) pp_code_annot_names ca
     | IPAllocation _ -> assert false
     | IPAssigns {ias_kf=kf; ias_kinstr=ki; ias_bhv=Id_contract (a,b)} ->
@@ -1271,10 +1270,7 @@ struct
       add_part buffer p ; add_sep buffer ; add_parts buffer ps
 
   let prefix_with_kind tp name =
-    match tp.tp_kind with
-    | Assert -> name
-    | Check -> "check_" ^ name
-    | Admit -> "admit_" ^ name
+    Cil_printer.ident_of_predicate ~kw:name tp.tp_kind
 
   let rec parts_of_property ip : part list =
     match ip with
@@ -1334,11 +1330,7 @@ struct
                    ica_ca={annot_content=AExtended (_, _, {ext_name})}} ->
       [ K kf ; A ext_name ; S stmt ]
     | IPCodeAnnot {ica_kf=kf; ica_ca={annot_content=AAssert (_,p)}} ->
-      let a = match p.tp_kind with
-        | Assert -> "assert"
-        | Check -> "check"
-        | Admit -> "admit"
-      in
+      let a = Cil_printer.string_of_assert p.tp_kind in
       [K kf ; A a ; P p.tp_statement ]
     | IPCodeAnnot {ica_kf=kf; ica_ca={annot_content=AInvariant (_, true, p)}} ->
       let a = prefix_with_kind p "loop_invariant" in
@@ -1372,7 +1364,7 @@ struct
 
     | IPAxiomatic _ -> []
     | IPLemma {il_name=name; il_pred=p} ->
-      let a = prefix_with_kind p "lemma" in
+      let a = Cil_printer.ident_of_lemma p.tp_kind in
       [ A a ; A name ; P p.tp_statement ]
 
     | IPTypeInvariant {iti_name=name}
diff --git a/src/kernel_services/ast_printing/cil_printer.ml b/src/kernel_services/ast_printing/cil_printer.ml
index c7e35880edb..583f8298fc1 100644
--- a/src/kernel_services/ast_printing/cil_printer.ml
+++ b/src/kernel_services/ast_printing/cil_printer.ml
@@ -27,6 +27,53 @@ open Cil_datatype
 open Printer_api
 open Format
 
+let string_of_assert = function
+  | Assert -> "assert"
+  | Check -> "check"
+  | Admit -> "admit"
+
+let name_of_assert = function
+  | Assert -> "assertion"
+  | Check -> "check"
+  | Admit -> "admit"
+
+let string_of_lemma = function
+  | Assert -> "lemma"
+  | Check -> "check lemma"
+  | Admit -> "axiom"
+
+let ident_of_lemma = function
+  | Assert -> "lemma"
+  | Check -> "check_lemma"
+  | Admit -> "axiom"
+
+let string_of_predicate ~kw = function
+  | Assert -> kw
+  | Check -> "check " ^ kw
+  | Admit -> "admit " ^ kw
+
+let ident_of_predicate ~kw = function
+  | Assert -> kw
+  | Check -> "check_" ^ kw
+  | Admit -> "admit_" ^ kw
+
+let pp_assert_kind fmt kd = Format.pp_print_string fmt (string_of_assert kd)
+let pp_lemma_kind fmt kd = Format.pp_print_string fmt (string_of_lemma kd)
+let pp_predicate_kind ~kw fmt kd =
+  match kd with
+  | Assert -> Format.pp_print_string fmt kw
+  | Check ->
+    begin
+      Format.pp_print_string fmt "check " ;
+      Format.pp_print_string fmt kw ;
+    end
+  | Admit ->
+    begin
+      Format.pp_print_string fmt "admit " ;
+      Format.pp_print_string fmt kw ;
+    end
+
+
 module Extensions = struct
   let initialized = ref false
   let ref_print = ref (fun _ _ _ _ -> assert false)
@@ -2847,11 +2894,20 @@ class cil_printer () = object (self)
   method decreases fmt v = self#decrement "decreases" fmt v
   method variant fmt v = self#decrement "loop variant" fmt v
 
-  method private pp_predicate_kind fmt p =
-    match p.tp_kind with
+  method private pp_predicate_kind fmt = function
     | Assert -> ()
-    | Check -> fprintf fmt "%a " self#pp_acsl_keyword "check"
-    | Admit -> fprintf fmt "%a " self#pp_acsl_keyword "admit"
+    | Check -> self#pp_acsl_keyword fmt "check" ; pp_print_char fmt ' '
+    | Admit -> self#pp_acsl_keyword fmt "admit" ; pp_print_char fmt ' '
+
+  method private pp_lemma_kind fmt = function
+    | Assert -> self#pp_acsl_keyword fmt "lemma"
+    | Admit -> self#pp_acsl_keyword fmt "axiom"
+    | Check ->
+      begin
+        self#pp_acsl_keyword fmt "check" ;
+        pp_print_char fmt ' ' ;
+        self#pp_acsl_keyword fmt "lemma" ;
+      end
 
   method assumes fmt p =
     fprintf fmt "@[<hov 2>%a@ %a;@]"
@@ -2860,7 +2916,7 @@ class cil_printer () = object (self)
 
   method requires fmt p =
     fprintf fmt "@[<hov 2>%a%a@ %a;@]"
-      self#pp_predicate_kind p.ip_content
+      self#pp_predicate_kind p.ip_content.tp_kind
       self#pp_acsl_keyword "requires"
       self#identified_predicate p
 
@@ -2873,7 +2929,7 @@ class cil_printer () = object (self)
   method post_cond fmt (k,p) =
     let kw = get_termination_kind_name k in
     fprintf fmt "@[<hov 2>%a%a@ %a;@]"
-      self#pp_predicate_kind p.ip_content
+      self#pp_predicate_kind p.ip_content.tp_kind
       self#pp_acsl_keyword kw
       self#identified_predicate p
 
@@ -3086,14 +3142,9 @@ class cil_printer () = object (self)
     in
     match ca.annot_content with
     | AAssert (behav,p) ->
-      let kw = match p.tp_kind with
-        | Assert -> "assert"
-        | Check ->  "check"
-        | Admit ->  "admit"
-      in
       fprintf fmt "@[%a%a@ %a;@]"
         pp_for_behavs behav
-        self#pp_acsl_keyword kw
+        self#pp_acsl_keyword (string_of_assert p.tp_kind)
         self#predicate p.tp_statement
     | APragma (Slice_pragma sp) ->
       fprintf fmt "@[%a@ %a;@]"
@@ -3122,13 +3173,13 @@ class cil_printer () = object (self)
     | AInvariant(behav,true, i) ->
       fprintf fmt "@[<2>%a%a%a@ %a;@]"
         pp_for_behavs behav
-        self#pp_predicate_kind i
+        self#pp_predicate_kind i.tp_kind
         self#pp_acsl_keyword "loop invariant"
         self#predicate i.tp_statement
     | AInvariant(behav,false,i) ->
       fprintf fmt "@[<2>%a%a%a@ %a;@]"
         pp_for_behavs behav
-        self#pp_predicate_kind i
+        self#pp_predicate_kind i.tp_kind
         self#pp_acsl_keyword "invariant"
         self#predicate i.tp_statement
     | AVariant v ->
@@ -3221,11 +3272,7 @@ class cil_printer () = object (self)
       (* attributes are meant to be purely internal for now. *)
       let old_lab = current_label in
       fprintf fmt "@[<hv 2>@[<hov 1>%a %a%a%a:@]@ %t%a;@]@\n"
-        self#pp_acsl_keyword
-        (match pred.tp_kind with
-         | Admit -> "axiom"
-         | Assert -> "lemma"
-         | Check -> "check lemma")
+        self#pp_lemma_kind pred.tp_kind
         self#varname name
         self#labels labels
         self#polyTypePrms tvars
diff --git a/src/kernel_services/ast_printing/cil_printer.mli b/src/kernel_services/ast_printing/cil_printer.mli
index 40eeaa1b3e0..820154ac10b 100644
--- a/src/kernel_services/ast_printing/cil_printer.mli
+++ b/src/kernel_services/ast_printing/cil_printer.mli
@@ -30,6 +30,34 @@
 
 include Printer_api.S
 
+(** ["assert"], ["check"] or ["admit"]. *)
+val string_of_assert : Cil_types.predicate_kind -> string
+
+(** ["assertion"], ["check"] or ["admit"]. *)
+val name_of_assert : Cil_types.predicate_kind -> string
+
+(** ["lemma"], ["check lemma"] or ["axiom"]. *)
+val string_of_lemma : Cil_types.predicate_kind -> string
+
+(** clause, prefixed by ["check"] or ["admit"]. *)
+val string_of_predicate : kw:string -> Cil_types.predicate_kind -> string
+
+(** same as [string_of_lemma] with ["_"] for separator. *)
+val ident_of_lemma : Cil_types.predicate_kind -> string
+
+(** same as [string_of_predicate] with ["_"] for separator. *)
+val ident_of_predicate : kw:string -> Cil_types.predicate_kind -> string
+
+(** pretty prints [string_of_assert]. *)
+val pp_assert_kind : Format.formatter -> Cil_types.predicate_kind -> unit
+
+(** pretty prints [string_of_lemma]. *)
+val pp_lemma_kind : Format.formatter -> Cil_types.predicate_kind -> unit
+
+(** pretty prints [string_of_predicate]. *)
+val pp_predicate_kind :
+  kw:string -> Format.formatter -> Cil_types.predicate_kind -> unit
+
 val get_termination_kind_name: Cil_types.termination_kind -> string
 
 val register_shallow_attribute: string -> unit
diff --git a/src/kernel_services/ast_printing/description.ml b/src/kernel_services/ast_printing/description.ml
index 000cedcd25f..a545e1b1f63 100644
--- a/src/kernel_services/ast_printing/description.ml
+++ b/src/kernel_services/ast_printing/description.ml
@@ -120,13 +120,8 @@ let pp_top fmt tp = pp_named fmt tp.tp_statement
 let pp_code_annot fmt ca =
   match ca.annot_content with
   | AAssert(bs,tp) ->
-    let kind =
-      match tp.tp_kind with
-      | Assert -> "assertion"
-      | Check -> "check"
-      | Admit -> "admit"
-    in
-    Format.fprintf fmt "%s%a%a" kind pp_for bs pp_top tp
+    Format.fprintf fmt "%a%a%a"
+      Cil_printer.pp_assert_kind tp.tp_kind pp_for bs pp_top tp
   | AInvariant(bs,_,tp) ->
     Format.fprintf fmt "invariant%a%a" pp_for bs pp_top tp
   | AAssigns(bs,_) -> Format.fprintf fmt "assigns%a" pp_for bs
diff --git a/src/kernel_services/ast_printing/logic_print.ml b/src/kernel_services/ast_printing/logic_print.ml
index 7f41c46efb2..b11531eaefb 100644
--- a/src/kernel_services/ast_printing/logic_print.ml
+++ b/src/kernel_services/ast_printing/logic_print.ml
@@ -365,11 +365,8 @@ let rec print_decl fmt d =
       (pp_list ~sep:",@ " print_typed_ident) prms
       (pp_list ~sep:"@\n" print_case) cases
   | LDlemma(name,labels,tvar,body) ->
-    fprintf fmt "@[<2>%s@ %s%a%a:@ %a;@]"
-      (match body.tp_kind with
-       | Admit ->   "axiom"
-       | Assert -> "lemma"
-       | Check ->  "check lemma") name
+    fprintf fmt "@[<2>%a@ %s%a%a:@ %a;@]"
+      Cil_printer.pp_lemma_kind body.tp_kind name
       (pp_list ~pre:"{@[" ~sep:",@ " ~suf:"@]}" pp_print_string) labels
       (pp_list ~pre:"<@[" ~sep:",@ " ~suf:"@>}" pp_print_string) tvar
       print_lexpr body.tp_statement
@@ -421,12 +418,7 @@ let print_allocation ~isloop fmt fa =
 let print_clause name fmt e = fprintf fmt "@\n%s@ %a;" name print_lexpr e
 
 let print_tp_clause name fmt e =
-  let name =
-    match e.tp_kind with
-    | Assert -> name
-    | Check -> "check " ^ name
-    | Admit -> "admit " ^ name
-  in
+  let name = Cil_printer.string_of_predicate ~kw:name e.tp_kind in
   print_clause name fmt e.tp_statement
 
 let print_post fmt (k,e) =
@@ -492,23 +484,19 @@ let print_code_annot fmt ca =
   in
   match ca with
     AAssert(bhvs,e) ->
-    fprintf fmt "%a%s@ %a;"
+    fprintf fmt "%a%a@ %a;"
       print_behaviors bhvs
-      (match e.tp_kind with
-       | Assert -> ""
-       | Check ->  "check "
-       | Admit ->   "admit")
+      Cil_printer.pp_assert_kind e.tp_kind
       print_lexpr e.tp_statement
   | AStmtSpec (bhvs,s) ->
     fprintf fmt "%a%a"
       print_behaviors bhvs
       print_spec s
   | AInvariant (bhvs,loop,e) ->
-    fprintf fmt "%a%a%a%ainvariant@ %a;"
+    let kw = if loop then "loop invariant" else "invariant" in
+    fprintf fmt "%a%a@ %a;"
       print_behaviors bhvs
-      (pp_cond (e.tp_kind = Check)) "check @"
-      (pp_cond (e.tp_kind = Admit)) "admit @"
-      (pp_cond loop) "loop@ "
+      (Cil_printer.pp_predicate_kind ~kw) e.tp_kind
       print_lexpr e.tp_statement
   | AVariant e -> fprintf fmt "loop@ variant@ %a;" print_variant e
   | AAssigns (bhvs,a) ->
diff --git a/src/plugins/gui/design.ml b/src/plugins/gui/design.ml
index dffb3997bbd..5d267bd8926 100644
--- a/src/plugins/gui/design.ml
+++ b/src/plugins/gui/design.ml
@@ -503,11 +503,8 @@ let to_do_on_select
       main_ui#pretty_information "This is an axiomatic.@.";
       main_ui#view_original (location ip)
     | PIP(IPLemma { il_pred } as ip) ->
-      let kind = match il_pred.tp_kind with
-        | Admit -> "axiom"
-        | Assert -> "lemma"
-        | Check -> "check lemma" in
-      main_ui#pretty_information "This is a %s.@." kind;
+      main_ui#pretty_information "This is a %a.@."
+        Cil_printer.pp_lemma_kind il_pred.tp_kind;
       main_ui#view_original (location ip)
     | PIP(IPTypeInvariant _ as ip) ->
       main_ui#pretty_information "This is a type invariant.@.";
diff --git a/src/plugins/obfuscator/obfuscate.ml b/src/plugins/obfuscator/obfuscate.ml
index ee3739a068f..27c3e8b23d1 100644
--- a/src/plugins/obfuscator/obfuscate.ml
+++ b/src/plugins/obfuscator/obfuscate.ml
@@ -170,10 +170,7 @@ class visitor = object
       warn "axiomatic" str;
       Cil.DoChildren
     | Dlemma(str, _, _, { tp_kind }, _, _) ->
-      warn (match tp_kind with
-          | Admit -> "axiom"
-          | Assert -> "lemma"
-          | Check -> "check lemma") str;
+      warn (Cil_printer.string_of_lemma tp_kind) str;
       Cil.DoChildren
     | _ ->
       Cil.DoChildren
diff --git a/src/plugins/value/engine/transfer_logic.ml b/src/plugins/value/engine/transfer_logic.ml
index 2293ed64aef..d5a663cdc06 100644
--- a/src/plugins/value/engine/transfer_logic.ml
+++ b/src/plugins/value/engine/transfer_logic.ml
@@ -588,9 +588,7 @@ module Make
 
   let code_annotation_text ca =
     match ca.annot_content with
-    | AAssert (_,{tp_kind = Assert}) ->  "assertion"
-    | AAssert (_,{tp_kind = Check}) -> "check"
-    | AAssert (_,{tp_kind = Admit}) -> "admit"
+    | AAssert (_,{tp_kind}) -> Cil_printer.name_of_assert tp_kind
     | AInvariant _ ->  "loop invariant"
     | APragma _  | AVariant _ | AAssigns _ | AAllocation _ | AStmtSpec _
     | AExtended _ ->
diff --git a/src/plugins/value/legacy/eval_annots.ml b/src/plugins/value/legacy/eval_annots.ml
index f9c730b433d..4547fb1f139 100644
--- a/src/plugins/value/legacy/eval_annots.ml
+++ b/src/plugins/value/legacy/eval_annots.ml
@@ -29,9 +29,7 @@ let has_requires spec =
 
 let code_annotation_text ca =
   match ca.annot_content with
-  | AAssert (_, {tp_kind=Assert}) ->  "assertion"
-  | AAssert (_, {tp_kind=Check}) -> "check"
-  | AAssert (_, {tp_kind=Admit}) -> "admit"
+  | AAssert (_, {tp_kind}) -> Cil_printer.name_of_assert tp_kind
   | AInvariant _ ->  "loop invariant"
   | APragma _  | AVariant _ | AAssigns _ | AAllocation _ | AStmtSpec _
   | AExtended _  ->
diff --git a/src/plugins/wp/LogicUsage.ml b/src/plugins/wp/LogicUsage.ml
index 28bb84f9b84..e37f7b0903f 100644
--- a/src/plugins/wp/LogicUsage.ml
+++ b/src/plugins/wp/LogicUsage.ml
@@ -543,13 +543,9 @@ let pp_decl fmt d l =
       pp_sig fmt kind l ;
   end
 
-let pp_kind fmt = function
-  | Admit -> Format.pp_print_string fmt "axiom"
-  | Assert -> Format.pp_print_string fmt "lemma"
-  | Check -> Format.pp_print_string fmt "check lemma"
-
 let pp_lemma fmt l =
-  Format.fprintf fmt " * %a '%s'@\n" pp_kind l.lem_predicate.tp_kind l.lem_name
+  Format.fprintf fmt " * %a '%s'@\n"
+    Cil_printer.pp_lemma_kind l.lem_predicate.tp_kind l.lem_name
 
 let get_name l = compute () ; compute_logicname l
 
@@ -584,7 +580,7 @@ let dump () =
       SMap.iter
         (fun l (lem,s) ->
            Format.fprintf fmt " * %a '%s' in %a@\n"
-             pp_kind lem.lem_predicate.tp_kind
+             Cil_printer.pp_lemma_kind lem.lem_predicate.tp_kind
              l pp_section s)
         d.lemmas ;
       Format.fprintf fmt "-------------------------------------------------@." ;
-- 
GitLab


From ac88b4ba6e3372b04d241f2e060ff79530c09d38 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Loi=CC=88c=20Correnson?= <loic.correnson@cea.fr>
Date: Thu, 18 Feb 2021 08:52:36 +0100
Subject: [PATCH 117/141] [logic] refine duplicate lemma error message

---
 src/kernel_services/ast_queries/logic_typing.ml  | 9 +++++++--
 tests/spec/oracle/axiom_redef_bts1005.res.oracle | 2 +-
 2 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/src/kernel_services/ast_queries/logic_typing.ml b/src/kernel_services/ast_queries/logic_typing.ml
index ca5511407cf..1789b851855 100644
--- a/src/kernel_services/ast_queries/logic_typing.ml
+++ b/src/kernel_services/ast_queries/logic_typing.ml
@@ -4191,9 +4191,14 @@ struct
     | LDlemma (x,labels, poly, {tp_kind = kind; tp_statement = e}) ->
       if Logic_env.Lemmas.mem x then begin
         let old_def = Logic_env.Lemmas.find x in
+        let old_kind = match old_def with
+          | Dlemma(_,_,_,{tp_kind },_,_) -> tp_kind
+          | _ -> Assert in
         let old_loc = Cil_datatype.Global_annotation.loc old_def in
-        C.error loc "lemma %s is already registered (%a)"
-          x Cil_datatype.Location.pretty old_loc
+        C.error loc "%a %s is already registered as %a (%a)"
+          Cil_printer.pp_lemma_kind kind x
+          Cil_printer.pp_lemma_kind old_kind
+          Cil_datatype.Location.pretty old_loc
       end;
       let labels,env = annot_env loc labels poly in
       let p = Logic_const.toplevel_predicate ~kind (predicate env e) in
diff --git a/tests/spec/oracle/axiom_redef_bts1005.res.oracle b/tests/spec/oracle/axiom_redef_bts1005.res.oracle
index d6bf2400ede..01b443473c6 100644
--- a/tests/spec/oracle/axiom_redef_bts1005.res.oracle
+++ b/tests/spec/oracle/axiom_redef_bts1005.res.oracle
@@ -1,5 +1,5 @@
 [kernel] Parsing tests/spec/axiom_redef_bts1005.i (no preprocessing)
 [kernel:annot-error] tests/spec/axiom_redef_bts1005.i:5: Warning: 
-  lemma inj1 is already registered (tests/spec/axiom_redef_bts1005.i:4). Ignoring global annotation
+  axiom inj1 is already registered as axiom (tests/spec/axiom_redef_bts1005.i:4). Ignoring global annotation
 /* Generated by Frama-C */
 
-- 
GitLab


From 429837b66e4e2d4b1afabaad9e4481256e745877 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20B=C3=BChler?= <david.buhler@cea.fr>
Date: Tue, 1 Sep 2020 08:51:40 +0200
Subject: [PATCH 118/141] [Eva] Optionally prints the correctness parameters of
 an analysis.

---
 src/plugins/value/engine/analysis.ml   |  1 +
 src/plugins/value/value_parameters.ml  | 11 +++++++++++
 src/plugins/value/value_parameters.mli |  2 ++
 3 files changed, 14 insertions(+)

diff --git a/src/plugins/value/engine/analysis.ml b/src/plugins/value/engine/analysis.ml
index 5cb98e37e08..e27e529fc79 100644
--- a/src/plugins/value/engine/analysis.ml
+++ b/src/plugins/value/engine/analysis.ml
@@ -173,6 +173,7 @@ let reset_analyzer () =
 let force_compute () =
   Ast.compute ();
   Value_parameters.configure_precision ();
+  Value_parameters.print_correctness_parameters ();
   let kf, lib_entry = Globals.entry_point () in
   reset_analyzer ();
   let module Analyzer = (val snd !ref_analyzer) in
diff --git a/src/plugins/value/value_parameters.ml b/src/plugins/value/value_parameters.ml
index 7714801f87b..c382bbeb4fa 100644
--- a/src/plugins/value/value_parameters.ml
+++ b/src/plugins/value/value_parameters.ml
@@ -82,6 +82,7 @@ let dkey_incompatible_states = register_category "incompatible-states"
 let dkey_iterator = register_category "iterator"
 let dkey_callbacks = register_category "callbacks"
 let dkey_widening = register_category "widening"
+let dkey_correctness = register_category "correctness"
 
 let () =
   let activate dkey = add_debug_keys dkey in
@@ -1424,6 +1425,16 @@ let parameters_correctness =
 let parameters_tuning =
   Typed_parameter.Set.elements !parameters_tuning
 
+let print_correctness_parameters () =
+  feedback ~dkey:dkey_correctness
+    "Parameters affecting the correctness of the analysis:";
+  let print param =
+    let name = param.Typed_parameter.name in
+    let value = Typed_parameter.get_value param in
+    printf "  %s: %s" name value
+  in
+  if is_debug_key_enabled dkey_correctness
+  then List.iter print parameters_correctness
 
 
 (*
diff --git a/src/plugins/value/value_parameters.mli b/src/plugins/value/value_parameters.mli
index 0a294b1e8c1..80ce2bc8ae7 100644
--- a/src/plugins/value/value_parameters.mli
+++ b/src/plugins/value/value_parameters.mli
@@ -153,6 +153,8 @@ val configure_precision: unit -> unit
 val parameters_correctness: Typed_parameter.t list
 val parameters_tuning: Typed_parameter.t list
 
+val print_correctness_parameters: unit -> unit
+
 (** Debug categories responsible for printing initial and final states of Value.
     Enabled by default, but can be disabled via the command-line:
     -value-msg-key="-initial_state,-final_state" *)
-- 
GitLab


From bed150f62bc54acdffa8c3e7deb6e722f30890cd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20B=C3=BChler?= <david.buhler@cea.fr>
Date: Wed, 2 Sep 2020 10:40:30 +0200
Subject: [PATCH 119/141] [Eva] Optionally prints the status of Eva warning
 categories.

---
 src/plugins/value/engine/analysis.ml   |  2 +-
 src/plugins/value/value_parameters.ml  | 27 ++++++++++++++++++++++++--
 src/plugins/value/value_parameters.mli |  2 +-
 3 files changed, 27 insertions(+), 4 deletions(-)

diff --git a/src/plugins/value/engine/analysis.ml b/src/plugins/value/engine/analysis.ml
index e27e529fc79..a3ed9f67209 100644
--- a/src/plugins/value/engine/analysis.ml
+++ b/src/plugins/value/engine/analysis.ml
@@ -173,7 +173,7 @@ let reset_analyzer () =
 let force_compute () =
   Ast.compute ();
   Value_parameters.configure_precision ();
-  Value_parameters.print_correctness_parameters ();
+  Value_parameters.print_configuration ();
   let kf, lib_entry = Globals.entry_point () in
   reset_analyzer ();
   let module Analyzer = (val snd !ref_analyzer) in
diff --git a/src/plugins/value/value_parameters.ml b/src/plugins/value/value_parameters.ml
index c382bbeb4fa..70dec40e568 100644
--- a/src/plugins/value/value_parameters.ml
+++ b/src/plugins/value/value_parameters.ml
@@ -61,13 +61,15 @@ let add_precision_dep p =
 
 let () = List.iter add_correctness_dep kernel_parameters_correctness
 
-include Plugin.Register
+module Eva =
+  Plugin.Register
     (struct
       let name = "Eva"
       let shortname = "eva"
       let help =
         "automatically computes variation domains for the variables of the program"
     end)
+include Eva
 
 let () = Help.add_aliases ~visible:false [ "-value-h"; "-val-h" ]
 let () = add_plugin_output_aliases ~visible:false ~deprecated:true [ "value" ]
@@ -1433,8 +1435,29 @@ let print_correctness_parameters () =
     let value = Typed_parameter.get_value param in
     printf "  %s: %s" name value
   in
+  List.iter print parameters_correctness
+
+let print_warning_status name (module Plugin: Log.Messages) =
+  let warning_categories = Plugin.get_all_warn_categories_status () in
+  let is_active = function
+    | Log.Winactive | Wfeedback_once | Wfeedback -> false
+    | Wonce | Wactive | Werror_once | Werror | Wabort -> true
+  in
+  let is_enabled (_key, status) = is_active status in
+  let enabled, disabled = List.partition is_enabled warning_categories in
+  let pp_categories = Pretty_utils.pp_list ~sep:",@ " Plugin.pp_warn_category in
+  feedback ~dkey:dkey_correctness "%s warning categories:" name;
+  printf "  Enabled: @[%a@]" pp_categories (List.map fst enabled);
+  printf "  Disabled: @[%a@]" pp_categories (List.map fst disabled)
+
+let print_configuration () =
   if is_debug_key_enabled dkey_correctness
-  then List.iter print parameters_correctness
+  then
+    begin
+      print_correctness_parameters ();
+      print_warning_status "Kernel" (module Kernel);
+      print_warning_status "Eva" (module Eva);
+    end
 
 
 (*
diff --git a/src/plugins/value/value_parameters.mli b/src/plugins/value/value_parameters.mli
index 80ce2bc8ae7..f9c23f8defb 100644
--- a/src/plugins/value/value_parameters.mli
+++ b/src/plugins/value/value_parameters.mli
@@ -153,7 +153,7 @@ val configure_precision: unit -> unit
 val parameters_correctness: Typed_parameter.t list
 val parameters_tuning: Typed_parameter.t list
 
-val print_correctness_parameters: unit -> unit
+val print_configuration: unit -> unit
 
 (** Debug categories responsible for printing initial and final states of Value.
     Enabled by default, but can be disabled via the command-line:
-- 
GitLab


From 7f31522cb2ac5c29c440d10b11885f0e4c6dc4d3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20B=C3=BChler?= <david.buhler@cea.fr>
Date: Wed, 2 Sep 2020 13:44:16 +0200
Subject: [PATCH 120/141] [Eva] Renames the message key 'correctness' into
 'config'.

---
 src/plugins/value/value_parameters.ml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/plugins/value/value_parameters.ml b/src/plugins/value/value_parameters.ml
index 70dec40e568..43f2ce48161 100644
--- a/src/plugins/value/value_parameters.ml
+++ b/src/plugins/value/value_parameters.ml
@@ -84,7 +84,7 @@ let dkey_incompatible_states = register_category "incompatible-states"
 let dkey_iterator = register_category "iterator"
 let dkey_callbacks = register_category "callbacks"
 let dkey_widening = register_category "widening"
-let dkey_correctness = register_category "correctness"
+let dkey_config = register_category "config"
 
 let () =
   let activate dkey = add_debug_keys dkey in
@@ -1428,8 +1428,8 @@ let parameters_tuning =
   Typed_parameter.Set.elements !parameters_tuning
 
 let print_correctness_parameters () =
-  feedback ~dkey:dkey_correctness
-    "Parameters affecting the correctness of the analysis:";
+  feedback ~dkey:dkey_config
+    "Correctness parameters of the analysis:";
   let print param =
     let name = param.Typed_parameter.name in
     let value = Typed_parameter.get_value param in
@@ -1446,12 +1446,12 @@ let print_warning_status name (module Plugin: Log.Messages) =
   let is_enabled (_key, status) = is_active status in
   let enabled, disabled = List.partition is_enabled warning_categories in
   let pp_categories = Pretty_utils.pp_list ~sep:",@ " Plugin.pp_warn_category in
-  feedback ~dkey:dkey_correctness "%s warning categories:" name;
+  feedback ~dkey:dkey_config "%s warning categories:" name;
   printf "  Enabled: @[%a@]" pp_categories (List.map fst enabled);
   printf "  Disabled: @[%a@]" pp_categories (List.map fst disabled)
 
 let print_configuration () =
-  if is_debug_key_enabled dkey_correctness
+  if is_debug_key_enabled dkey_config
   then
     begin
       print_correctness_parameters ();
-- 
GitLab


From 1da1be727f8be79eeee360d84605c6732bbb1cd2 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Wed, 2 Dec 2020 14:35:14 +0100
Subject: [PATCH 121/141] [Kernel/Eva] add audit options and checks

---
 src/kernel_services/ast_queries/file.ml       | 133 +++++++++++++++
 .../plugin_entry_points/kernel.ml             |  37 ++++
 .../plugin_entry_points/kernel.mli            |   9 +
 src/plugins/value/engine/analysis.ml          |   5 +-
 src/plugins/value/value_parameters.ml         | 158 +++++++++++++++---
 src/plugins/value/value_parameters.mli        |   5 +-
 6 files changed, 324 insertions(+), 23 deletions(-)

diff --git a/src/kernel_services/ast_queries/file.ml b/src/kernel_services/ast_queries/file.ml
index ec61b34cb9f..b521062fb14 100644
--- a/src/kernel_services/ast_queries/file.ml
+++ b/src/kernel_services/ast_queries/file.ml
@@ -46,6 +46,11 @@ type file =
   | External of Filepath.Normalized.t * string
   (* file * name of plug-in that handles it *)
 
+let filepath_of_file = function
+  | NeedCPP (fp, _, _)
+  | NoCPP fp
+  | External (fp, _) -> fp
+
 module D =
   Datatype.Make
     (struct
@@ -1605,6 +1610,121 @@ let init_cil () =
   Logic_env.Builtins.apply ();
   Logic_env.prepare_tables ()
 
+let re_included_file = Str.regexp "^[.]+ \\(.*\\)$"
+
+let file_hash file =
+  Digest.to_hex (Digest.file file)
+
+let add_source_if_new tbl (fp : Filepath.Normalized.t) =
+  if not (Hashtbl.mem tbl fp) then
+    Hashtbl.replace tbl fp (file_hash (fp:>string))
+
+(* Inserts, into the hashtbl of (Filepath.Normalized.t, Digest.t), [tbl],
+   the included sources listed in [file],
+   which contains the output of 'gcc -H -MM'. *)
+let add_included_sources tbl file =
+  let ic = open_in file in
+  try
+    while true; do
+      let line = input_line ic in
+      if Str.string_match re_included_file line 0 then
+        let f = Str.matched_group 1 line in
+        add_source_if_new tbl (Filepath.Normalized.of_string f)
+    done;
+    assert false
+  with End_of_file ->
+    close_in ic
+
+let print_all_sources out all_sources_tbl =
+  let elems =
+    Hashtbl.fold (fun f hash acc ->
+        (Filepath.Normalized.to_pretty_string f, hash) :: acc)
+      all_sources_tbl []
+  in
+  let sorted_elems =
+    List.sort (fun (f1, _) (f2, _) -> Extlib.compare_ignore_case f1 f2) elems
+  in
+  if Filepath.Normalized.is_special_stdout out then begin
+    (* text format, to stdout *)
+    Kernel.feedback "Audit: all used sources, with md5 hashes:@\n%a"
+      (Pretty_utils.pp_list ~sep:"@\n"
+         (Pretty_utils.pp_pair ~sep:": "
+            Format.pp_print_string Format.pp_print_string)) sorted_elems
+  end else begin
+    (* json format, into file [out] *)
+    let json =
+      `Assoc
+        [("sources",
+          `Assoc (List.map (fun (f, hash) -> f, `String hash) sorted_elems)
+         )]
+    in
+    Json.merge_object out json
+  end
+
+let compute_sources_table cpp_commands =
+  let all_sources_tbl = Hashtbl.create 7 in
+  List.iter (fun (f, cmd_opt) ->
+      let fp = filepath_of_file f in
+      match cmd_opt with
+      | None ->
+        add_source_if_new all_sources_tbl fp
+      | Some (cpp_cmd, _ppf, _sl) ->
+        let audit_sources_tmpfile =
+          try
+            Datatype.Filepath.of_string
+              (Extlib.temp_file_cleanup_at_exit
+                 "audit_produce_sources" ".txt")
+          with Extlib.Temp_file_error s ->
+            Kernel.abort "cannot create temporary file: %s" s
+        in
+        let cmd_for_sources =
+          cpp_cmd ^ " -H -MM >/dev/null 2>" ^ (audit_sources_tmpfile:>string)
+        in
+        let exit_code = Sys.command cmd_for_sources in
+        if exit_code <> 0 then begin
+          let cause_frama_c_compliant =
+            if not (Kernel.CppGnuLike.get ()) then
+              Kernel.abort "\nPlease ensure preprocessor is Frama-C-compliant \
+                            (see option %s)"
+                Kernel.CppGnuLike.option_name
+            else ""
+          in
+          Kernel.abort "error running command to obtain included sources \
+                        (exit code %d):@\n%s%s"
+            exit_code cmd_for_sources
+            cause_frama_c_compliant;
+        end else begin
+          add_included_sources all_sources_tbl (audit_sources_tmpfile:>string);
+          add_source_if_new all_sources_tbl fp;
+        end;
+    ) cpp_commands;
+  all_sources_tbl
+
+let source_hashes_of_json path =
+  try
+    let json = Json.from_file path in
+    let open Yojson.Basic.Util in
+    json |> member "sources" |> to_assoc |>
+    List.map (fun (k, h) -> k, to_string h)
+  with
+  | Yojson.Json_error msg ->
+    Kernel.abort "error reading %a: %s"
+      Filepath.Normalized.pretty path msg
+  | Yojson.Basic.Util.Type_error (msg, v) ->
+    Kernel.abort "error reading %a: %s - %s"
+      Filepath.Normalized.pretty path msg
+      (Yojson.Basic.pretty_to_string v)
+
+let check_source_hashes expected actual_table =
+  Hashtbl.iter (fun fp hash ->
+      let fp = Filepath.Normalized.to_pretty_string fp in
+      let expected_hash = List.assoc_opt fp expected in
+      if Some hash <> expected_hash then
+        Kernel.warning ~wkey:Kernel.wkey_audit
+          "different hashes for %s: got %s, expected %s"
+          fp hash (Option.value ~default:("<none> (not in list)") expected_hash)
+    ) actual_table
+
 let prepare_from_c_files () =
   init_cil ();
   let files = Files.get () in (* Allow pre-registration of prolog files *)
@@ -1619,6 +1739,19 @@ let prepare_from_c_files () =
       ) cpp_commands;
     raise Cmdline.Exit
   end;
+  let audit_check_path = Kernel.AuditCheck.get () in
+  if not (Filepath.Normalized.is_unknown audit_check_path) then begin
+    let all_sources_tbl = compute_sources_table cpp_commands in
+    let expected_hashes = source_hashes_of_json audit_check_path in
+    check_source_hashes expected_hashes all_sources_tbl
+  end;
+  let audit_path = Kernel.AuditPrepare.get () in
+  if not (Filepath.Normalized.is_unknown audit_path) then begin
+    let all_sources_tbl = compute_sources_table cpp_commands in
+    print_all_sources audit_path all_sources_tbl;
+    Kernel.feedback "Audit: sources list written to: %a@."
+      Filepath.Normalized.pretty audit_path;
+  end;
   let cil, cabs_files = files_to_cabs_cil files cpp_commands in
   prepare_cil_file cil;
   (* prepare_cil_file may call syntactic transformers, that will ultimately
diff --git a/src/kernel_services/plugin_entry_points/kernel.ml b/src/kernel_services/plugin_entry_points/kernel.ml
index 4444276b7a8..6f1f0afcbcc 100644
--- a/src/kernel_services/plugin_entry_points/kernel.ml
+++ b/src/kernel_services/plugin_entry_points/kernel.ml
@@ -194,6 +194,8 @@ let wkey_acsl_extension = register_warn_category "acsl-extension"
 
 let wkey_cmdline = register_warn_category "cmdline"
 
+let wkey_audit = register_warn_category "audit"
+
 (* ************************************************************************* *)
 (** {2 Specialised functors for building kernel parameters} *)
 (* ************************************************************************* *)
@@ -1040,6 +1042,41 @@ module PrintCppCommands =
                   and exits."
     end)
 
+let () = Parameter_customize.set_group parsing
+let () = Parameter_customize.do_not_reset_on_copy ()
+module AuditPrepare =
+  P.Filepath
+    (struct
+      let option_name = "-audit-prepare"
+      let arg_name = "path"
+      let existence = Filepath.Indifferent
+      let file_kind = "json"
+      let help = "produces audit-related information, such as the list of all \
+                  source files used during parsing (including those in include \
+                  directives) with checksums. Some plug-ins may produce \
+                  additional audit-related information. \
+                  Prints the information as JSON to the specified file, or \
+                  if the file is '-', prints as text to the standard output. \
+                  Requires -cpp-frama-c-compliant."
+    end)
+
+let () = Parameter_customize.set_group parsing
+let () = Parameter_customize.do_not_reset_on_copy ()
+module AuditCheck =
+  P.Filepath
+    (struct
+      let option_name = "-audit-check"
+      let arg_name = "path"
+      let existence = Filepath.Must_exist
+      let file_kind = "json"
+      let help = "reads an audit JSON file (produced by -audit-prepare) and \
+                  checks compliance w.r.t. to it; e.g., if the source files \
+                  were declared and have the expected checksum. \
+                  Raises a warning (with warning key 'audit') in case of \
+                  failed checks. \
+                  Requires -cpp-frama-c-compliant."
+    end)
+
 let () = Parameter_customize.set_group parsing
 let () = Parameter_customize.do_not_reset_on_copy ()
 module FramaCStdLib =
diff --git a/src/kernel_services/plugin_entry_points/kernel.mli b/src/kernel_services/plugin_entry_points/kernel.mli
index bb6247d651b..a6e7e409bca 100644
--- a/src/kernel_services/plugin_entry_points/kernel.mli
+++ b/src/kernel_services/plugin_entry_points/kernel.mli
@@ -186,6 +186,9 @@ val wkey_acsl_extension: warn_category
 val wkey_cmdline: warn_category
 (** Command-line related warning, e.g. for invalid options given by the user *)
 
+val wkey_audit: warn_category
+(** Warning related to options '-audit-*'. *)
+
 (* ************************************************************************* *)
 (** {2 Functors for late option registration}                                *)
 (** Kernel_function-related options cannot be registered in this module:
@@ -414,6 +417,12 @@ module CppGnuLike: Parameter_sig.Bool
 module PrintCppCommands: Parameter_sig.Bool
 (** Behavior of option "-print-cpp-commands" *)
 
+module AuditPrepare: Parameter_sig.Filepath
+(** Behavior of option "-audit-prepare" *)
+
+module AuditCheck: Parameter_sig.Filepath
+(** Behavior of option "-audit-check" *)
+
 module FramaCStdLib: Parameter_sig.Bool
 (** Behavior of option "-frama-c-stdlib" *)
 
diff --git a/src/plugins/value/engine/analysis.ml b/src/plugins/value/engine/analysis.ml
index a3ed9f67209..bd235a74a3a 100644
--- a/src/plugins/value/engine/analysis.ml
+++ b/src/plugins/value/engine/analysis.ml
@@ -173,7 +173,10 @@ let reset_analyzer () =
 let force_compute () =
   Ast.compute ();
   Value_parameters.configure_precision ();
-  Value_parameters.print_configuration ();
+  if not (Filepath.Normalized.is_unknown (Kernel.AuditCheck.get ()))
+  then Value_parameters.check_configuration (Kernel.AuditCheck.get ());
+  if not (Filepath.Normalized.is_unknown (Kernel.AuditPrepare.get ()))
+  then Value_parameters.print_configuration (Kernel.AuditPrepare.get ());
   let kf, lib_entry = Globals.entry_point () in
   reset_analyzer ();
   let module Analyzer = (val snd !ref_analyzer) in
diff --git a/src/plugins/value/value_parameters.ml b/src/plugins/value/value_parameters.ml
index 43f2ce48161..13cde229730 100644
--- a/src/plugins/value/value_parameters.ml
+++ b/src/plugins/value/value_parameters.ml
@@ -61,6 +61,8 @@ let add_precision_dep p =
 
 let () = List.iter add_correctness_dep kernel_parameters_correctness
 
+module Fc_filepath = Filepath
+
 module Eva =
   Plugin.Register
     (struct
@@ -84,7 +86,6 @@ let dkey_incompatible_states = register_category "incompatible-states"
 let dkey_iterator = register_category "iterator"
 let dkey_callbacks = register_category "callbacks"
 let dkey_widening = register_category "widening"
-let dkey_config = register_category "config"
 
 let () =
   let activate dkey = add_debug_keys dkey in
@@ -1427,17 +1428,69 @@ let parameters_correctness =
 let parameters_tuning =
   Typed_parameter.Set.elements !parameters_tuning
 
-let print_correctness_parameters () =
-  feedback ~dkey:dkey_config
-    "Correctness parameters of the analysis:";
-  let print param =
+let json_of_parameters parms =
+  let pair param =
     let name = param.Typed_parameter.name in
     let value = Typed_parameter.get_value param in
-    printf "  %s: %s" name value
+    (name, `String value)
   in
-  List.iter print parameters_correctness
-
-let print_warning_status name (module Plugin: Log.Messages) =
+  let parms_json = List.map pair parms in
+  `Assoc [("correctness-parameters", `Assoc parms_json)]
+
+let parameters_of_json parms_json =
+  try
+    let open Yojson.Basic.Util in
+    let parms = parms_json |> member "correctness-parameters" |> to_assoc in
+    List.map (fun (key, value) -> (key, value |> to_string)) parms
+  with
+  | Yojson.Json_error msg ->
+    Kernel.abort "error reading JSON file: %s" msg
+  | Yojson.Basic.Util.Type_error (msg, v) ->
+    Kernel.abort "error reading JSON file: %s - %s" msg
+      (Yojson.Basic.pretty_to_string v)
+
+let print_correctness_parameters path =
+  if Fc_filepath.Normalized.is_special_stdout path then begin
+    feedback "Correctness parameters of the analysis:";
+    let print param =
+      let name = param.Typed_parameter.name in
+      let value = Typed_parameter.get_value param in
+      printf "  %s: %s" name value
+    in
+    List.iter print parameters_correctness
+  end else begin
+    let json = `Assoc [("eva", json_of_parameters parameters_correctness)] in
+    Json.merge_object path json
+  end
+
+let check_correctness_parameters json =
+  let get param =
+    let name = param.Typed_parameter.name in
+    let value = Typed_parameter.get_value param in
+    (name, value)
+  in
+  let parameters = List.map get parameters_correctness in
+  let expected_parameters =
+    parameters_of_json (json |> Yojson.Basic.Util.member "eva")
+  in
+  let sort = List.sort (fun (p1, _) (p2, _) -> Stdlib.String.compare p1 p2) in
+  let expected_parameters = sort expected_parameters in
+  let parameters = sort parameters in
+  (* Note: we could simply compare lengths and use a two-list iterator,
+     but in case of divergence, the error messages would be less clear. *)
+  List.iter (fun (exp_p, exp_v) ->
+      try
+        let v = List.assoc exp_p parameters in
+        if exp_v <> v then
+          Kernel.warning ~wkey:Kernel.wkey_audit
+            "correctness parameter %s: expected value %s, but got %s" exp_p
+            exp_v v
+      with Not_found ->
+        Kernel.warning ~wkey:Kernel.wkey_audit
+          "expected correctness parameter %s, but not found" exp_p
+    ) expected_parameters
+
+let compute_warning_status (module Plugin: Log.Messages) =
   let warning_categories = Plugin.get_all_warn_categories_status () in
   let is_active = function
     | Log.Winactive | Wfeedback_once | Wfeedback -> false
@@ -1445,20 +1498,83 @@ let print_warning_status name (module Plugin: Log.Messages) =
   in
   let is_enabled (_key, status) = is_active status in
   let enabled, disabled = List.partition is_enabled warning_categories in
-  let pp_categories = Pretty_utils.pp_list ~sep:",@ " Plugin.pp_warn_category in
-  feedback ~dkey:dkey_config "%s warning categories:" name;
-  printf "  Enabled: @[%a@]" pp_categories (List.map fst enabled);
-  printf "  Disabled: @[%a@]" pp_categories (List.map fst disabled)
-
-let print_configuration () =
-  if is_debug_key_enabled dkey_config
-  then
+  let pp_fst = List.map (fun (c, s) -> Plugin.wkey_name c, s) in
+  (pp_fst enabled, pp_fst disabled)
+
+let json_of_warning_statuses wkeys key_name =
+  let json_of_wkey = List.map (fun (c, _) -> `String c) in
+  (key_name, `List (json_of_wkey wkeys))
+
+let warning_statuses_of_json json =
+  try
+    let open Yojson.Basic.Util in
+    json |> to_list |> filter_string
+  with
+  | Yojson.Json_error msg ->
+    Kernel.abort "error reading JSON file: %s" msg
+  | Yojson.Basic.Util.Type_error (msg, v) ->
+    Kernel.abort "error reading JSON file: %s - %s" msg
+      (Yojson.Basic.pretty_to_string v)
+
+let print_warning_status path name (module Plugin: Log.Messages) =
+  let enabled, disabled = compute_warning_status (module Plugin) in
+  if Fc_filepath.Normalized.is_special_stdout path then
     begin
-      print_correctness_parameters ();
-      print_warning_status "Kernel" (module Kernel);
-      print_warning_status "Eva" (module Eva);
+      let pp_categories =
+        Pretty_utils.pp_list ~sep:",@ " Format.pp_print_string
+      in
+      feedback "Audit: %s warning categories:" name;
+      printf "  Enabled: @[%a@]" pp_categories (List.map fst enabled);
+      printf "  Disabled: @[%a@]" pp_categories (List.map fst disabled)
     end
-
+  else begin
+    let enabled_json =
+      json_of_warning_statuses enabled "enabled"
+    in
+    let disabled_json =
+      json_of_warning_statuses disabled "disabled"
+    in
+    let json = `Assoc [(Stdlib.String.lowercase_ascii name,
+                        `Assoc [("warning-categories",
+                                 `Assoc [enabled_json; disabled_json])])]
+    in
+    Json.merge_object path json
+  end
+
+let check_warning_status json name (module Plugin: Log.Messages) =
+  let lower_name = Stdlib.String.lowercase_ascii name in
+  let enabled, _disabled = compute_warning_status (module Plugin) in
+  let enabled = List.map fst enabled in
+  let (expected_enabled : string list) =
+    try
+      let open Yojson.Basic.Util in
+      json |> member lower_name |> member "warning-categories" |>
+      member "enabled" |> to_list |> filter_string
+    with
+    | Yojson.Json_error msg ->
+      Kernel.abort "error reading JSON file: %s" msg
+    | Yojson.Basic.Util.Type_error (msg, v) ->
+      Kernel.abort "error reading JSON file: %s - %s" msg
+        (Yojson.Basic.pretty_to_string v)
+  in
+  let diff l1 l2 = List.filter (fun k -> not (List.mem k l2)) l1 in
+  let should_be_enabled = diff expected_enabled enabled in
+  if should_be_enabled <> [] then
+    Kernel.warning ~wkey:Kernel.wkey_audit
+      "the following warning categories were expected to be enabled,@ \
+       but were disabled: %a"
+      (Pretty_utils.pp_list ~sep:", " Format.pp_print_string) should_be_enabled
+
+let check_configuration path =
+  let json = Json.from_file path in
+  check_correctness_parameters json;
+  check_warning_status json "Kernel" (module Kernel);
+  check_warning_status json "Eva" (module Eva)
+
+let print_configuration path =
+  print_correctness_parameters path;
+  print_warning_status path "Kernel" (module Kernel);
+  print_warning_status path "Eva" (module Eva)
 
 (*
 Local Variables:
diff --git a/src/plugins/value/value_parameters.mli b/src/plugins/value/value_parameters.mli
index f9c23f8defb..7d006aa3f01 100644
--- a/src/plugins/value/value_parameters.mli
+++ b/src/plugins/value/value_parameters.mli
@@ -20,6 +20,8 @@
 (*                                                                        *)
 (**************************************************************************)
 
+module Fc_filepath = Filepath
+
 include Plugin.General_services
 
 module ForceValues: Parameter_sig.With_output
@@ -153,7 +155,8 @@ val configure_precision: unit -> unit
 val parameters_correctness: Typed_parameter.t list
 val parameters_tuning: Typed_parameter.t list
 
-val print_configuration: unit -> unit
+val check_configuration: Fc_filepath.Normalized.t -> unit
+val print_configuration: Fc_filepath.Normalized.t -> unit
 
 (** Debug categories responsible for printing initial and final states of Value.
     Enabled by default, but can be disabled via the command-line:
-- 
GitLab


From 231552ece5df843aebd8d8c501fd510db4d916c3 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Tue, 17 Nov 2020 18:59:24 +0100
Subject: [PATCH 122/141] [tests] add tests for audit mode

---
 tests/value/audit-in.json           | 76 +++++++++++++++++++++++++++++
 tests/value/audit.c                 | 10 ++++
 tests/value/audit_included.h        |  1 +
 tests/value/oracle/audit-out.json   | 76 +++++++++++++++++++++++++++++
 tests/value/oracle/audit.res.oracle | 29 +++++++++++
 5 files changed, 192 insertions(+)
 create mode 100644 tests/value/audit-in.json
 create mode 100644 tests/value/audit.c
 create mode 100644 tests/value/audit_included.h
 create mode 100644 tests/value/oracle/audit-out.json
 create mode 100644 tests/value/oracle/audit.res.oracle

diff --git a/tests/value/audit-in.json b/tests/value/audit-in.json
new file mode 100644
index 00000000000..fc5e7af0541
--- /dev/null
+++ b/tests/value/audit-in.json
@@ -0,0 +1,76 @@
+{
+  "sources": {
+    "tests/value/audit.c": "4574f9d5090319c57dab0c9cb81fda32",
+    "tests/value/audit_included.h": "6164442da331e54680e25ff2fe1ba74e"
+  },
+  "kernel": {
+    "warning-categories": {
+      "enabled": [
+        "*", "CERT", "CERT:EXP", "CERT:EXP:46", "CERT:MSC", "CERT:MSC:38",
+        "acsl-extension", "annot", "annot:missing-spec", "annot-error",
+        "audit", "check", "check:volatile", "cmdline", "ghost",
+        "ghost:bad-use", "inline", "linker",
+        "linker:drop-conflicting-unused", "parser",
+        "parser:conditional-feature", "pp", "pp:compilation-db", "typing",
+        "typing:implicit-conv-void-ptr",
+        "typing:implicit-function-declaration",
+        "typing:incompatible-pointer-types",
+        "typing:incompatible-types-call", "typing:inconsistent-specifier",
+        "typing:int-conversion", "typing:no-proto"
+      ],
+      "disabled": [
+        "CERT:EXP:10", "acsl-float-compare", "ghost:already-ghost",
+        "parser:decimal-float", "transient-block"
+      ]
+    }
+  },
+  "eva": {
+    "correctness-parameters": {
+      "-absolute-valid-range": "",
+      "-eva-all-rounding-modes-constants": "false",
+      "-eva-alloc-returns-null": "true",
+      "-eva-builtin": "",
+      "-eva-builtins-auto": "true",
+      "-eva-context-depth": "2",
+      "-eva-context-valid-pointers": "false",
+      "-eva-context-width": "2",
+      "-eva-ignore-recursive-calls": "false",
+      "-eva-initialization-padding-globals": "yes",
+      "-eva-initialized-locals": "false",
+      "-eva-new-initial-state": "0",
+      "-eva-reduce-on-logic-alarms": "false",
+      "-eva-undefined-pointer-comparison-propagate-all": "false",
+      "-eva-use-spec": "",
+      "-eva-warn-copy-indeterminate": "",
+      "-eva-warn-pointer-subtraction": "true",
+      "-eva-warn-signed-converted-downcast": "false",
+      "-eva-warn-undefined-pointer-comparison": "pointer",
+      "-initialized-padding-locals": "true",
+      "-lib-entry": "false",
+      "-main": "main",
+      "-safe-arrays": "true",
+      "-unspecified-access": "false",
+      "-warn-invalid-bool": "true",
+      "-warn-invalid-pointer": "false",
+      "-warn-left-shift-negative": "true",
+      "-warn-pointer-downcast": "true",
+      "-warn-right-shift-negative": "false",
+      "-warn-signed-downcast": "false",
+      "-warn-signed-overflow": "true",
+      "-warn-special-float": "non-finite",
+      "-warn-unsigned-downcast": "false",
+      "-warn-unsigned-overflow": "false"
+    },
+    "warning-categories": {
+      "enabled": [
+        "*", "alarm", "builtins", "builtins:missing-spec",
+        "builtins:override", "experimental", "libc", "libc:unsupported-spec",
+        "locals-escaping", "malloc", "malloc:imprecise", "signed-overflow"
+      ],
+      "disabled": [
+        "garbled-mix", "invalid-assigns", "loop-unroll", "malloc:weak",
+        "missing-loop-unroll", "missing-loop-unroll:for"
+      ]
+    }
+  }
+}
\ No newline at end of file
diff --git a/tests/value/audit.c b/tests/value/audit.c
new file mode 100644
index 00000000000..952edfab1ee
--- /dev/null
+++ b/tests/value/audit.c
@@ -0,0 +1,10 @@
+/* run.config
+   LOG: audit-out.json
+   STDOPT: #"-audit-check @PTEST_DIR@/audit-in.json -audit-prepare @PTEST_DIR@/result/audit-out.json"
+*/
+
+#include "audit_included.h"
+
+void main() {
+  float f = 2.1; // to trigger a syntactic warning
+}
diff --git a/tests/value/audit_included.h b/tests/value/audit_included.h
new file mode 100644
index 00000000000..0db378b820a
--- /dev/null
+++ b/tests/value/audit_included.h
@@ -0,0 +1 @@
+// This file is included by audit.i
diff --git a/tests/value/oracle/audit-out.json b/tests/value/oracle/audit-out.json
new file mode 100644
index 00000000000..e12d53d0b0e
--- /dev/null
+++ b/tests/value/oracle/audit-out.json
@@ -0,0 +1,76 @@
+{
+  "eva": {
+    "correctness-parameters": {
+      "-absolute-valid-range": "",
+      "-eva-all-rounding-modes-constants": "false",
+      "-eva-alloc-returns-null": "true",
+      "-eva-builtin": "",
+      "-eva-builtins-auto": "true",
+      "-eva-context-depth": "2",
+      "-eva-context-valid-pointers": "false",
+      "-eva-context-width": "2",
+      "-eva-ignore-recursive-calls": "false",
+      "-eva-initialization-padding-globals": "yes",
+      "-eva-initialized-locals": "false",
+      "-eva-new-initial-state": "0",
+      "-eva-reduce-on-logic-alarms": "false",
+      "-eva-undefined-pointer-comparison-propagate-all": "false",
+      "-eva-use-spec": "",
+      "-eva-warn-copy-indeterminate": "",
+      "-eva-warn-pointer-subtraction": "true",
+      "-eva-warn-signed-converted-downcast": "false",
+      "-eva-warn-undefined-pointer-comparison": "pointer",
+      "-initialized-padding-locals": "true",
+      "-lib-entry": "false",
+      "-main": "main",
+      "-safe-arrays": "true",
+      "-unspecified-access": "false",
+      "-warn-invalid-bool": "true",
+      "-warn-invalid-pointer": "false",
+      "-warn-left-shift-negative": "true",
+      "-warn-pointer-downcast": "true",
+      "-warn-right-shift-negative": "false",
+      "-warn-signed-downcast": "false",
+      "-warn-signed-overflow": "true",
+      "-warn-special-float": "non-finite",
+      "-warn-unsigned-downcast": "false",
+      "-warn-unsigned-overflow": "false"
+    },
+    "warning-categories": {
+      "enabled": [
+        "*", "alarm", "builtins", "builtins:missing-spec",
+        "builtins:override", "experimental", "libc", "libc:unsupported-spec",
+        "locals-escaping", "malloc", "malloc:imprecise", "signed-overflow"
+      ],
+      "disabled": [
+        "garbled-mix", "invalid-assigns", "loop-unroll", "malloc:weak",
+        "missing-loop-unroll", "missing-loop-unroll:for"
+      ]
+    }
+  },
+  "kernel": {
+    "warning-categories": {
+      "enabled": [
+        "*", "CERT", "CERT:EXP", "CERT:EXP:46", "CERT:MSC", "CERT:MSC:38",
+        "acsl-extension", "annot", "annot:missing-spec", "annot:multi-from",
+        "annot-error", "audit", "check", "check:volatile", "cmdline",
+        "ghost", "ghost:bad-use", "inline", "linker",
+        "linker:drop-conflicting-unused", "parser",
+        "parser:conditional-feature", "pp", "pp:compilation-db", "typing",
+        "typing:implicit-conv-void-ptr",
+        "typing:implicit-function-declaration",
+        "typing:incompatible-pointer-types",
+        "typing:incompatible-types-call", "typing:inconsistent-specifier",
+        "typing:int-conversion", "typing:no-proto"
+      ],
+      "disabled": [
+        "CERT:EXP:10", "acsl-float-compare", "ghost:already-ghost",
+        "parser:decimal-float", "transient-block"
+      ]
+    }
+  },
+  "sources": {
+    "tests/value/audit.c": "d91c35d6c3eb02ede2ca2bdf92fda63d",
+    "tests/value/audit_included.h": "6164442da331e54680e25ff2fe1ba74e"
+  }
+}
diff --git a/tests/value/oracle/audit.res.oracle b/tests/value/oracle/audit.res.oracle
new file mode 100644
index 00000000000..c599da1fc5f
--- /dev/null
+++ b/tests/value/oracle/audit.res.oracle
@@ -0,0 +1,29 @@
+[kernel:audit] Warning: 
+  different hashes for tests/value/audit.c: got d91c35d6c3eb02ede2ca2bdf92fda63d, expected 4574f9d5090319c57dab0c9cb81fda32
+[kernel] Audit: sources list written to: tests/value/result/audit-out.json
+[kernel] Parsing tests/value/audit.c (with preprocessing)
+[kernel:parser:decimal-float] tests/value/audit.c:9: Warning: 
+  Floating-point constant 2.1 is not represented exactly. Will use 0x1.0cccccccccccdp1.
+  (warn-once: no further messages from category 'parser:decimal-float' will be emitted)
+[eva] Analyzing a complete application starting at main
+[eva] Computing initial state
+[eva] Initial state computed
+[eva:initial-state] Values of globals at initialization
+  
+[eva] Recording results for main
+[eva] done for function main
+[eva] ====== VALUES COMPUTED ======
+[eva:final-states] Values at end of function main:
+  f ∈ {2.09999990463}
+[from] Computing for function main
+[from] Done for function main
+[from] ====== DEPENDENCIES COMPUTED ======
+  These dependencies hold at termination for the executions that terminate:
+[from] Function main:
+  NO EFFECTS
+[from] ====== END OF DEPENDENCIES ======
+[inout] Out (internal) for function main:
+    f
+[inout] Inputs for function main:
+    \nothing
+[kernel] Wrote: tests/value/result/audit-out.json
-- 
GitLab


From 1851b74f9d21ed6c28047c54ae4fb074e0296b9a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20B=C3=BChler?= <david.buhler@cea.fr>
Date: Fri, 22 Jan 2021 10:33:19 +0100
Subject: [PATCH 123/141] [kernel] File: renames [filepath_of_file] into
 [get_filepath].

Uses it in [get_name].
---
 src/kernel_services/ast_queries/file.ml | 19 +++++--------------
 1 file changed, 5 insertions(+), 14 deletions(-)

diff --git a/src/kernel_services/ast_queries/file.ml b/src/kernel_services/ast_queries/file.ml
index b521062fb14..2c4332a9fbf 100644
--- a/src/kernel_services/ast_queries/file.ml
+++ b/src/kernel_services/ast_queries/file.ml
@@ -46,11 +46,6 @@ type file =
   | External of Filepath.Normalized.t * string
   (* file * name of plug-in that handles it *)
 
-let filepath_of_file = function
-  | NeedCPP (fp, _, _)
-  | NoCPP fp
-  | External (fp, _) -> fp
-
 module D =
   Datatype.Make
     (struct
@@ -92,9 +87,8 @@ let get_suffixes () =
     check_suffixes
     [ ".c"; ".i"; ".h" ]
 
-let get_name s =
-  let file = match s with  NeedCPP (s,_,_,_) | NoCPP s | External (s,_) -> s in
-  Filepath.Normalized.to_pretty_string file
+let get_filepath = function NeedCPP (s, _, _, _) | NoCPP s | External (s, _) -> s
+let get_name s = Filepath.Normalized.to_pretty_string (get_filepath s)
 
 (* ************************************************************************* *)
 (** {2 Preprocessor command} *)
@@ -1664,10 +1658,9 @@ let print_all_sources out all_sources_tbl =
 let compute_sources_table cpp_commands =
   let all_sources_tbl = Hashtbl.create 7 in
   List.iter (fun (f, cmd_opt) ->
-      let fp = filepath_of_file f in
+      add_source_if_new all_sources_tbl (get_filepath f);
       match cmd_opt with
-      | None ->
-        add_source_if_new all_sources_tbl fp
+      | None -> ()
       | Some (cpp_cmd, _ppf, _sl) ->
         let audit_sources_tmpfile =
           try
@@ -1693,10 +1686,8 @@ let compute_sources_table cpp_commands =
                         (exit code %d):@\n%s%s"
             exit_code cmd_for_sources
             cause_frama_c_compliant;
-        end else begin
+        end else
           add_included_sources all_sources_tbl (audit_sources_tmpfile:>string);
-          add_source_if_new all_sources_tbl fp;
-        end;
     ) cpp_commands;
   all_sources_tbl
 
-- 
GitLab


From e6bc83877ed1a50eacbd6c819be6b32cc2a7b6b9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20B=C3=BChler?= <david.buhler@cea.fr>
Date: Fri, 22 Jan 2021 10:41:53 +0100
Subject: [PATCH 124/141] [kernel] File: new utilitary function
 [create_temp_file].

---
 src/kernel_services/ast_queries/file.ml | 27 +++++++++----------------
 1 file changed, 10 insertions(+), 17 deletions(-)

diff --git a/src/kernel_services/ast_queries/file.ml b/src/kernel_services/ast_queries/file.ml
index 2c4332a9fbf..a26081d3e9d 100644
--- a/src/kernel_services/ast_queries/file.ml
+++ b/src/kernel_services/ast_queries/file.ml
@@ -406,6 +406,12 @@ let pretty_machdep ?fmt ?machdep () =
 (** {2 Initializations} *)
 (* ************************************************************************* *)
 
+let create_temp_file ?debug name suffix =
+  let of_string = Filepath.Normalized.of_string in
+  try of_string (Extlib.temp_file_cleanup_at_exit ?debug name suffix)
+  with Extlib.Temp_file_error s ->
+    Kernel.abort "cannot create temporary file: %s" s
+
 let safe_remove_file (f : Datatype.Filepath.t) =
   if not (Kernel.is_debug_key_enabled Kernel.dkey_parser) then
     Extlib.safe_remove (f :> string)
@@ -461,14 +467,7 @@ let build_cpp_cmd = function
           opt;
         [opt]
     in
-    let ppf =
-      try
-        Datatype.Filepath.of_string
-          (Extlib.temp_file_cleanup_at_exit ~debug
-             (Filename.basename (f :> string)) ".i")
-      with Extlib.Temp_file_error s ->
-        Kernel.abort "cannot create temporary file: %s" s
-    in
+    let ppf = create_temp_file ~debug (Filename.basename (f :> string)) ".i" in
     (* Hypothesis: the preprocessor is POSIX compliant,
        hence understands -I and -D. *)
     let include_args =
@@ -1663,12 +1662,7 @@ let compute_sources_table cpp_commands =
       | None -> ()
       | Some (cpp_cmd, _ppf, _sl) ->
         let audit_sources_tmpfile =
-          try
-            Datatype.Filepath.of_string
-              (Extlib.temp_file_cleanup_at_exit
-                 "audit_produce_sources" ".txt")
-          with Extlib.Temp_file_error s ->
-            Kernel.abort "cannot create temporary file: %s" s
+          create_temp_file "audit_produce_sources" ".txt"
         in
         let cmd_for_sources =
           cpp_cmd ^ " -H -MM >/dev/null 2>" ^ (audit_sources_tmpfile:>string)
@@ -1887,8 +1881,7 @@ let create_rebuilt_project_from_visitor
       let name = "frama_c_project_" ^ prj_name ^ "_" in
       let ext = if preprocess then ".c" else ".i" in
       let debug = Kernel.Debug.get () > 0 in
-      let tmp_fname = Extlib.temp_file_cleanup_at_exit ~debug name ext in
-      Filepath.Normalized.of_string tmp_fname
+      create_temp_file ~debug name ext
     in
     let cout = open_out (f :> string) in
     let fmt = Format.formatter_of_out_channel cout in
@@ -1900,7 +1893,7 @@ let create_rebuilt_project_from_visitor
     in
     Project.on prj redo ();
     prj
-  with Extlib.Temp_file_error s | Sys_error s ->
+  with Sys_error s ->
     Kernel.abort "cannot create temporary file: %s" s
 
 (*
-- 
GitLab


From 2b9be50bed52b0dc00ac735e1eac8ffeeb81f507 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20B=C3=BChler?= <david.buhler@cea.fr>
Date: Fri, 22 Jan 2021 10:52:21 +0100
Subject: [PATCH 125/141] [kernel] File: fixes an abort message.

---
 src/kernel_services/ast_queries/file.ml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/kernel_services/ast_queries/file.ml b/src/kernel_services/ast_queries/file.ml
index a26081d3e9d..889b5cead9a 100644
--- a/src/kernel_services/ast_queries/file.ml
+++ b/src/kernel_services/ast_queries/file.ml
@@ -1671,7 +1671,7 @@ let compute_sources_table cpp_commands =
         if exit_code <> 0 then begin
           let cause_frama_c_compliant =
             if not (Kernel.CppGnuLike.get ()) then
-              Kernel.abort "\nPlease ensure preprocessor is Frama-C-compliant \
+              Format.asprintf "\nPlease ensure preprocessor is Frama-C-compliant \
                             (see option %s)"
                 Kernel.CppGnuLike.option_name
             else ""
-- 
GitLab


From 89620efbab8d34f5aa3a9afee85533941c3453bb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20B=C3=BChler?= <david.buhler@cea.fr>
Date: Fri, 22 Jan 2021 10:55:26 +0100
Subject: [PATCH 126/141] [kernel] File: rewrites function
 [compute_sources_table].

---
 src/kernel_services/ast_queries/file.ml | 48 ++++++++++++-------------
 1 file changed, 22 insertions(+), 26 deletions(-)

diff --git a/src/kernel_services/ast_queries/file.ml b/src/kernel_services/ast_queries/file.ml
index 889b5cead9a..6e654c7ba99 100644
--- a/src/kernel_services/ast_queries/file.ml
+++ b/src/kernel_services/ast_queries/file.ml
@@ -1656,33 +1656,29 @@ let print_all_sources out all_sources_tbl =
 
 let compute_sources_table cpp_commands =
   let all_sources_tbl = Hashtbl.create 7 in
-  List.iter (fun (f, cmd_opt) ->
-      add_source_if_new all_sources_tbl (get_filepath f);
-      match cmd_opt with
-      | None -> ()
-      | Some (cpp_cmd, _ppf, _sl) ->
-        let audit_sources_tmpfile =
-          create_temp_file "audit_produce_sources" ".txt"
+  let process_file (file, cmd_opt) =
+    add_source_if_new all_sources_tbl (get_filepath file);
+    match cmd_opt with
+    | None -> ()
+    | Some (cpp_cmd, _ppf, _sl) ->
+      let tmp_file = create_temp_file "audit_produce_sources" ".txt" in
+      let tmp_file = (tmp_file :> string) in
+      let cmd_for_sources = cpp_cmd ^ " -H -MM >/dev/null 2>" ^ tmp_file in
+      let exit_code = Sys.command cmd_for_sources in
+      if exit_code = 0
+      then add_included_sources all_sources_tbl tmp_file
+      else
+        let cause_frama_c_compliant =
+          if Kernel.CppGnuLike.get () then "" else
+            Format.asprintf
+              "\nPlease ensure preprocessor is Frama-C compliant \
+               (see option %s)" Kernel.CppGnuLike.option_name
         in
-        let cmd_for_sources =
-          cpp_cmd ^ " -H -MM >/dev/null 2>" ^ (audit_sources_tmpfile:>string)
-        in
-        let exit_code = Sys.command cmd_for_sources in
-        if exit_code <> 0 then begin
-          let cause_frama_c_compliant =
-            if not (Kernel.CppGnuLike.get ()) then
-              Format.asprintf "\nPlease ensure preprocessor is Frama-C-compliant \
-                            (see option %s)"
-                Kernel.CppGnuLike.option_name
-            else ""
-          in
-          Kernel.abort "error running command to obtain included sources \
-                        (exit code %d):@\n%s%s"
-            exit_code cmd_for_sources
-            cause_frama_c_compliant;
-        end else
-          add_included_sources all_sources_tbl (audit_sources_tmpfile:>string);
-    ) cpp_commands;
+        Kernel.abort "error running command to obtain included sources \
+                      (exit code %d):@\n%s%s"
+          exit_code cmd_for_sources cause_frama_c_compliant;
+  in
+  List.iter process_file cpp_commands;
   all_sources_tbl
 
 let source_hashes_of_json path =
-- 
GitLab


From 50fc33411817b223a8220ae3b7ccd2860284dff8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20B=C3=BChler?= <david.buhler@cea.fr>
Date: Fri, 22 Jan 2021 14:44:40 +0100
Subject: [PATCH 127/141] [Eva] Moves audit functions in a new file
 utils/eva_audit.ml

---
 Makefile                               |   2 +-
 headers/header_spec.txt                |   2 +
 src/plugins/value/engine/analysis.ml   |   4 +-
 src/plugins/value/utils/eva_audit.ml   | 174 +++++++++++++++++++++++++
 src/plugins/value/utils/eva_audit.mli  |  24 ++++
 src/plugins/value/value_parameters.ml  | 148 ---------------------
 src/plugins/value/value_parameters.mli |   3 -
 7 files changed, 203 insertions(+), 154 deletions(-)
 create mode 100644 src/plugins/value/utils/eva_audit.ml
 create mode 100644 src/plugins/value/utils/eva_audit.mli

diff --git a/Makefile b/Makefile
index 8ea18cfabc8..49b29bb7378 100644
--- a/Makefile
+++ b/Makefile
@@ -839,7 +839,7 @@ endif
 # General rules for ordering files within PLUGIN_CMO:
 # - try to keep the legacy Value before Eva
 PLUGIN_CMO:= partitioning/split_strategy domains/domain_mode value_parameters \
-	utils/value_perf utils/eva_annotations \
+	utils/eva_audit utils/value_perf utils/eva_annotations \
 	utils/value_util utils/red_statuses \
 	utils/mark_noresults \
 	utils/widen_hints_ext utils/widen \
diff --git a/headers/header_spec.txt b/headers/header_spec.txt
index 412e563ceb4..12f47d738bd 100644
--- a/headers/header_spec.txt
+++ b/headers/header_spec.txt
@@ -1386,6 +1386,8 @@ src/plugins/value/utils/library_functions.mli: CEA_LGPL_OR_PROPRIETARY
 src/plugins/value/utils/mark_noresults.ml: CEA_LGPL_OR_PROPRIETARY
 src/plugins/value/utils/eva_annotations.ml: CEA_LGPL_OR_PROPRIETARY
 src/plugins/value/utils/eva_annotations.mli: CEA_LGPL_OR_PROPRIETARY
+src/plugins/value/utils/eva_audit.ml: CEA_LGPL_OR_PROPRIETARY
+src/plugins/value/utils/eva_audit.mli: CEA_LGPL_OR_PROPRIETARY
 src/plugins/value/utils/structure.ml: CEA_LGPL_OR_PROPRIETARY
 src/plugins/value/utils/structure.mli: CEA_LGPL_OR_PROPRIETARY
 src/plugins/value/utils/unit_tests.ml: CEA_LGPL_OR_PROPRIETARY
diff --git a/src/plugins/value/engine/analysis.ml b/src/plugins/value/engine/analysis.ml
index bd235a74a3a..93fd5046803 100644
--- a/src/plugins/value/engine/analysis.ml
+++ b/src/plugins/value/engine/analysis.ml
@@ -174,9 +174,9 @@ let force_compute () =
   Ast.compute ();
   Value_parameters.configure_precision ();
   if not (Filepath.Normalized.is_unknown (Kernel.AuditCheck.get ()))
-  then Value_parameters.check_configuration (Kernel.AuditCheck.get ());
+  then Eva_audit.check_configuration (Kernel.AuditCheck.get ());
   if not (Filepath.Normalized.is_unknown (Kernel.AuditPrepare.get ()))
-  then Value_parameters.print_configuration (Kernel.AuditPrepare.get ());
+  then Eva_audit.print_configuration (Kernel.AuditPrepare.get ());
   let kf, lib_entry = Globals.entry_point () in
   reset_analyzer ();
   let module Analyzer = (val snd !ref_analyzer) in
diff --git a/src/plugins/value/utils/eva_audit.ml b/src/plugins/value/utils/eva_audit.ml
new file mode 100644
index 00000000000..99fa9e2d23d
--- /dev/null
+++ b/src/plugins/value/utils/eva_audit.ml
@@ -0,0 +1,174 @@
+(**************************************************************************)
+(*                                                                        *)
+(*  This file is part of Frama-C.                                         *)
+(*                                                                        *)
+(*  Copyright (C) 2007-2020                                               *)
+(*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
+(*         alternatives)                                                  *)
+(*                                                                        *)
+(*  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).            *)
+(*                                                                        *)
+(**************************************************************************)
+
+
+let json_of_parameters parms =
+  let pair param =
+    let name = param.Typed_parameter.name in
+    let value = Typed_parameter.get_value param in
+    (name, `String value)
+  in
+  let parms_json = List.map pair parms in
+  `Assoc [("correctness-parameters", `Assoc parms_json)]
+
+let parameters_of_json parms_json =
+  try
+    let open Yojson.Basic.Util in
+    let parms = parms_json |> member "correctness-parameters" |> to_assoc in
+    List.map (fun (key, value) -> (key, value |> to_string)) parms
+  with
+  | Yojson.Json_error msg ->
+    Kernel.abort "error reading JSON file: %s" msg
+  | Yojson.Basic.Util.Type_error (msg, v) ->
+    Kernel.abort "error reading JSON file: %s - %s" msg
+      (Yojson.Basic.pretty_to_string v)
+
+let print_correctness_parameters path =
+  let parameters_correctness = Value_parameters.parameters_correctness in
+  if Filepath.Normalized.is_special_stdout path then begin
+    Value_parameters.feedback "Correctness parameters of the analysis:";
+    let print param =
+      let name = param.Typed_parameter.name in
+      let value = Typed_parameter.get_value param in
+      Value_parameters.printf "  %s: %s" name value
+    in
+    List.iter print parameters_correctness
+  end else begin
+    let json = `Assoc [("eva", json_of_parameters parameters_correctness)] in
+    Json.merge_object path json
+  end
+
+let check_correctness_parameters json =
+  let get param =
+    let name = param.Typed_parameter.name in
+    let value = Typed_parameter.get_value param in
+    (name, value)
+  in
+  let parameters_correctness = Value_parameters.parameters_correctness in
+  let parameters = List.map get parameters_correctness in
+  let expected_parameters =
+    parameters_of_json (json |> Yojson.Basic.Util.member "eva")
+  in
+  let sort = List.sort (fun (p1, _) (p2, _) -> Stdlib.String.compare p1 p2) in
+  let expected_parameters = sort expected_parameters in
+  let parameters = sort parameters in
+  (* Note: we could simply compare lengths and use a two-list iterator,
+     but in case of divergence, the error messages would be less clear. *)
+  List.iter (fun (exp_p, exp_v) ->
+      try
+        let v = List.assoc exp_p parameters in
+        if exp_v <> v then
+          Kernel.warning ~wkey:Kernel.wkey_audit
+            "correctness parameter %s: expected value %s, but got %s" exp_p
+            exp_v v
+      with Not_found ->
+        Kernel.warning ~wkey:Kernel.wkey_audit
+          "expected correctness parameter %s, but not found" exp_p
+    ) expected_parameters
+
+let compute_warning_status (module Plugin: Log.Messages) =
+  let warning_categories = Plugin.get_all_warn_categories_status () in
+  let is_active = function
+    | Log.Winactive | Wfeedback_once | Wfeedback -> false
+    | Wonce | Wactive | Werror_once | Werror | Wabort -> true
+  in
+  let is_enabled (_key, status) = is_active status in
+  let enabled, disabled = List.partition is_enabled warning_categories in
+  let pp_fst = List.map (fun (c, s) -> Plugin.wkey_name c, s) in
+  (pp_fst enabled, pp_fst disabled)
+
+let json_of_warning_statuses wkeys key_name =
+  let json_of_wkey = List.map (fun (c, _) -> `String c) in
+  (key_name, `List (json_of_wkey wkeys))
+
+let warning_statuses_of_json json =
+  try
+    let open Yojson.Basic.Util in
+    json |> to_list |> filter_string
+  with
+  | Yojson.Json_error msg ->
+    Kernel.abort "error reading JSON file: %s" msg
+  | Yojson.Basic.Util.Type_error (msg, v) ->
+    Kernel.abort "error reading JSON file: %s - %s" msg
+      (Yojson.Basic.pretty_to_string v)
+
+let print_warning_status path name (module Plugin: Log.Messages) =
+  let enabled, disabled = compute_warning_status (module Plugin) in
+  if Filepath.Normalized.is_special_stdout path then
+    begin
+      let pp_categories =
+        Pretty_utils.pp_list ~sep:",@ " Format.pp_print_string
+      in
+      Value_parameters.feedback "Audit: %s warning categories:" name;
+      Value_parameters.printf "  Enabled: @[%a@]"
+        pp_categories (List.map fst enabled);
+      Value_parameters.printf "  Disabled: @[%a@]"
+        pp_categories (List.map fst disabled)
+    end
+  else begin
+    let enabled_json =
+      json_of_warning_statuses enabled "enabled"
+    in
+    let disabled_json =
+      json_of_warning_statuses disabled "disabled"
+    in
+    let json = `Assoc [(Stdlib.String.lowercase_ascii name,
+                        `Assoc [("warning-categories",
+                                 `Assoc [enabled_json; disabled_json])])]
+    in
+    Json.merge_object path json
+  end
+
+let check_warning_status json name (module Plugin: Log.Messages) =
+  let lower_name = Stdlib.String.lowercase_ascii name in
+  let enabled, _disabled = compute_warning_status (module Plugin) in
+  let enabled = List.map fst enabled in
+  let (expected_enabled : string list) =
+    try
+      let open Yojson.Basic.Util in
+      json |> member lower_name |> member "warning-categories" |>
+      member "enabled" |> to_list |> filter_string
+    with
+    | Yojson.Json_error msg ->
+      Kernel.abort "error reading JSON file: %s" msg
+    | Yojson.Basic.Util.Type_error (msg, v) ->
+      Kernel.abort "error reading JSON file: %s - %s" msg
+        (Yojson.Basic.pretty_to_string v)
+  in
+  let diff l1 l2 = List.filter (fun k -> not (List.mem k l2)) l1 in
+  let should_be_enabled = diff expected_enabled enabled in
+  if should_be_enabled <> [] then
+    Kernel.warning ~wkey:Kernel.wkey_audit
+      "the following warning categories were expected to be enabled,@ \
+       but were disabled: %a"
+      (Pretty_utils.pp_list ~sep:", " Format.pp_print_string) should_be_enabled
+
+let check_configuration path =
+  let json = Json.from_file path in
+  check_correctness_parameters json;
+  check_warning_status json "Kernel" (module Kernel);
+  check_warning_status json "Eva" (module Value_parameters)
+
+let print_configuration path =
+  print_correctness_parameters path;
+  print_warning_status path "Kernel" (module Kernel);
+  print_warning_status path "Eva" (module Value_parameters)
diff --git a/src/plugins/value/utils/eva_audit.mli b/src/plugins/value/utils/eva_audit.mli
new file mode 100644
index 00000000000..6f16b350dcd
--- /dev/null
+++ b/src/plugins/value/utils/eva_audit.mli
@@ -0,0 +1,24 @@
+(**************************************************************************)
+(*                                                                        *)
+(*  This file is part of Frama-C.                                         *)
+(*                                                                        *)
+(*  Copyright (C) 2007-2020                                               *)
+(*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
+(*         alternatives)                                                  *)
+(*                                                                        *)
+(*  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).            *)
+(*                                                                        *)
+(**************************************************************************)
+
+val check_configuration: Filepath.Normalized.t -> unit
+val print_configuration: Filepath.Normalized.t -> unit
diff --git a/src/plugins/value/value_parameters.ml b/src/plugins/value/value_parameters.ml
index 13cde229730..ad331f122e7 100644
--- a/src/plugins/value/value_parameters.ml
+++ b/src/plugins/value/value_parameters.ml
@@ -1428,154 +1428,6 @@ let parameters_correctness =
 let parameters_tuning =
   Typed_parameter.Set.elements !parameters_tuning
 
-let json_of_parameters parms =
-  let pair param =
-    let name = param.Typed_parameter.name in
-    let value = Typed_parameter.get_value param in
-    (name, `String value)
-  in
-  let parms_json = List.map pair parms in
-  `Assoc [("correctness-parameters", `Assoc parms_json)]
-
-let parameters_of_json parms_json =
-  try
-    let open Yojson.Basic.Util in
-    let parms = parms_json |> member "correctness-parameters" |> to_assoc in
-    List.map (fun (key, value) -> (key, value |> to_string)) parms
-  with
-  | Yojson.Json_error msg ->
-    Kernel.abort "error reading JSON file: %s" msg
-  | Yojson.Basic.Util.Type_error (msg, v) ->
-    Kernel.abort "error reading JSON file: %s - %s" msg
-      (Yojson.Basic.pretty_to_string v)
-
-let print_correctness_parameters path =
-  if Fc_filepath.Normalized.is_special_stdout path then begin
-    feedback "Correctness parameters of the analysis:";
-    let print param =
-      let name = param.Typed_parameter.name in
-      let value = Typed_parameter.get_value param in
-      printf "  %s: %s" name value
-    in
-    List.iter print parameters_correctness
-  end else begin
-    let json = `Assoc [("eva", json_of_parameters parameters_correctness)] in
-    Json.merge_object path json
-  end
-
-let check_correctness_parameters json =
-  let get param =
-    let name = param.Typed_parameter.name in
-    let value = Typed_parameter.get_value param in
-    (name, value)
-  in
-  let parameters = List.map get parameters_correctness in
-  let expected_parameters =
-    parameters_of_json (json |> Yojson.Basic.Util.member "eva")
-  in
-  let sort = List.sort (fun (p1, _) (p2, _) -> Stdlib.String.compare p1 p2) in
-  let expected_parameters = sort expected_parameters in
-  let parameters = sort parameters in
-  (* Note: we could simply compare lengths and use a two-list iterator,
-     but in case of divergence, the error messages would be less clear. *)
-  List.iter (fun (exp_p, exp_v) ->
-      try
-        let v = List.assoc exp_p parameters in
-        if exp_v <> v then
-          Kernel.warning ~wkey:Kernel.wkey_audit
-            "correctness parameter %s: expected value %s, but got %s" exp_p
-            exp_v v
-      with Not_found ->
-        Kernel.warning ~wkey:Kernel.wkey_audit
-          "expected correctness parameter %s, but not found" exp_p
-    ) expected_parameters
-
-let compute_warning_status (module Plugin: Log.Messages) =
-  let warning_categories = Plugin.get_all_warn_categories_status () in
-  let is_active = function
-    | Log.Winactive | Wfeedback_once | Wfeedback -> false
-    | Wonce | Wactive | Werror_once | Werror | Wabort -> true
-  in
-  let is_enabled (_key, status) = is_active status in
-  let enabled, disabled = List.partition is_enabled warning_categories in
-  let pp_fst = List.map (fun (c, s) -> Plugin.wkey_name c, s) in
-  (pp_fst enabled, pp_fst disabled)
-
-let json_of_warning_statuses wkeys key_name =
-  let json_of_wkey = List.map (fun (c, _) -> `String c) in
-  (key_name, `List (json_of_wkey wkeys))
-
-let warning_statuses_of_json json =
-  try
-    let open Yojson.Basic.Util in
-    json |> to_list |> filter_string
-  with
-  | Yojson.Json_error msg ->
-    Kernel.abort "error reading JSON file: %s" msg
-  | Yojson.Basic.Util.Type_error (msg, v) ->
-    Kernel.abort "error reading JSON file: %s - %s" msg
-      (Yojson.Basic.pretty_to_string v)
-
-let print_warning_status path name (module Plugin: Log.Messages) =
-  let enabled, disabled = compute_warning_status (module Plugin) in
-  if Fc_filepath.Normalized.is_special_stdout path then
-    begin
-      let pp_categories =
-        Pretty_utils.pp_list ~sep:",@ " Format.pp_print_string
-      in
-      feedback "Audit: %s warning categories:" name;
-      printf "  Enabled: @[%a@]" pp_categories (List.map fst enabled);
-      printf "  Disabled: @[%a@]" pp_categories (List.map fst disabled)
-    end
-  else begin
-    let enabled_json =
-      json_of_warning_statuses enabled "enabled"
-    in
-    let disabled_json =
-      json_of_warning_statuses disabled "disabled"
-    in
-    let json = `Assoc [(Stdlib.String.lowercase_ascii name,
-                        `Assoc [("warning-categories",
-                                 `Assoc [enabled_json; disabled_json])])]
-    in
-    Json.merge_object path json
-  end
-
-let check_warning_status json name (module Plugin: Log.Messages) =
-  let lower_name = Stdlib.String.lowercase_ascii name in
-  let enabled, _disabled = compute_warning_status (module Plugin) in
-  let enabled = List.map fst enabled in
-  let (expected_enabled : string list) =
-    try
-      let open Yojson.Basic.Util in
-      json |> member lower_name |> member "warning-categories" |>
-      member "enabled" |> to_list |> filter_string
-    with
-    | Yojson.Json_error msg ->
-      Kernel.abort "error reading JSON file: %s" msg
-    | Yojson.Basic.Util.Type_error (msg, v) ->
-      Kernel.abort "error reading JSON file: %s - %s" msg
-        (Yojson.Basic.pretty_to_string v)
-  in
-  let diff l1 l2 = List.filter (fun k -> not (List.mem k l2)) l1 in
-  let should_be_enabled = diff expected_enabled enabled in
-  if should_be_enabled <> [] then
-    Kernel.warning ~wkey:Kernel.wkey_audit
-      "the following warning categories were expected to be enabled,@ \
-       but were disabled: %a"
-      (Pretty_utils.pp_list ~sep:", " Format.pp_print_string) should_be_enabled
-
-let check_configuration path =
-  let json = Json.from_file path in
-  check_correctness_parameters json;
-  check_warning_status json "Kernel" (module Kernel);
-  check_warning_status json "Eva" (module Eva)
-
-let print_configuration path =
-  print_correctness_parameters path;
-  print_warning_status path "Kernel" (module Kernel);
-  print_warning_status path "Eva" (module Eva)
-
 (*
 Local Variables:
 compile-command: "make -C ../../.."
diff --git a/src/plugins/value/value_parameters.mli b/src/plugins/value/value_parameters.mli
index 7d006aa3f01..9e8ac504892 100644
--- a/src/plugins/value/value_parameters.mli
+++ b/src/plugins/value/value_parameters.mli
@@ -155,9 +155,6 @@ val configure_precision: unit -> unit
 val parameters_correctness: Typed_parameter.t list
 val parameters_tuning: Typed_parameter.t list
 
-val check_configuration: Fc_filepath.Normalized.t -> unit
-val print_configuration: Fc_filepath.Normalized.t -> unit
-
 (** Debug categories responsible for printing initial and final states of Value.
     Enabled by default, but can be disabled via the command-line:
     -value-msg-key="-initial_state,-final_state" *)
-- 
GitLab


From 63626c7934770dbb68fa07745efea375d2bed68f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20B=C3=BChler?= <david.buhler@cea.fr>
Date: Fri, 22 Jan 2021 14:58:04 +0100
Subject: [PATCH 128/141] [Eva] Minor rewritings in eva_audit.

---
 src/plugins/value/utils/eva_audit.ml | 88 ++++++++++------------------
 1 file changed, 30 insertions(+), 58 deletions(-)

diff --git a/src/plugins/value/utils/eva_audit.ml b/src/plugins/value/utils/eva_audit.ml
index 99fa9e2d23d..2fca718e2f4 100644
--- a/src/plugins/value/utils/eva_audit.ml
+++ b/src/plugins/value/utils/eva_audit.ml
@@ -20,21 +20,21 @@
 (*                                                                        *)
 (**************************************************************************)
 
-
-let json_of_parameters parms =
-  let pair param =
+let get_correctness_parameters () =
+  let get param =
     let name = param.Typed_parameter.name in
     let value = Typed_parameter.get_value param in
-    (name, `String value)
+    (name, value)
   in
-  let parms_json = List.map pair parms in
-  `Assoc [("correctness-parameters", `Assoc parms_json)]
+  List.map get (Value_parameters.parameters_correctness)
 
-let parameters_of_json parms_json =
+let parameters_of_json json =
   try
     let open Yojson.Basic.Util in
-    let parms = parms_json |> member "correctness-parameters" |> to_assoc in
-    List.map (fun (key, value) -> (key, value |> to_string)) parms
+    let params =
+      json |> member "eva" |> member "correctness-parameters" |> to_assoc
+    in
+    List.map (fun (key, value) -> (key, to_string value)) params
   with
   | Yojson.Json_error msg ->
     Kernel.abort "error reading JSON file: %s" msg
@@ -43,35 +43,22 @@ let parameters_of_json parms_json =
       (Yojson.Basic.pretty_to_string v)
 
 let print_correctness_parameters path =
-  let parameters_correctness = Value_parameters.parameters_correctness in
+  let parameters = get_correctness_parameters () in
   if Filepath.Normalized.is_special_stdout path then begin
     Value_parameters.feedback "Correctness parameters of the analysis:";
-    let print param =
-      let name = param.Typed_parameter.name in
-      let value = Typed_parameter.get_value param in
-      Value_parameters.printf "  %s: %s" name value
-    in
-    List.iter print parameters_correctness
+    let print (name, value) = Value_parameters.printf "  %s: %s" name value in
+    List.iter print parameters
   end else begin
-    let json = `Assoc [("eva", json_of_parameters parameters_correctness)] in
-    Json.merge_object path json
+    let json = List.map (fun (name, value) -> name, `String value) parameters in
+    let params_json = `Assoc [("correctness-parameters", `Assoc json)] in
+    let eva_json = `Assoc [("eva", params_json)] in
+    Json.merge_object path eva_json
   end
 
 let check_correctness_parameters json =
-  let get param =
-    let name = param.Typed_parameter.name in
-    let value = Typed_parameter.get_value param in
-    (name, value)
-  in
-  let parameters_correctness = Value_parameters.parameters_correctness in
-  let parameters = List.map get parameters_correctness in
-  let expected_parameters =
-    parameters_of_json (json |> Yojson.Basic.Util.member "eva")
-  in
-  let sort = List.sort (fun (p1, _) (p2, _) -> Stdlib.String.compare p1 p2) in
-  let expected_parameters = sort expected_parameters in
-  let parameters = sort parameters in
-  (* Note: we could simply compare lengths and use a two-list iterator,
+  let parameters = get_correctness_parameters () in
+  let expected_parameters = parameters_of_json json in
+  (* Note: we could compare lengths and use a two-list iterator on sorted lists,
      but in case of divergence, the error messages would be less clear. *)
   List.iter (fun (exp_p, exp_v) ->
       try
@@ -100,10 +87,11 @@ let json_of_warning_statuses wkeys key_name =
   let json_of_wkey = List.map (fun (c, _) -> `String c) in
   (key_name, `List (json_of_wkey wkeys))
 
-let warning_statuses_of_json json =
+let enabled_warning_of_json name json =
   try
     let open Yojson.Basic.Util in
-    json |> to_list |> filter_string
+    json |> member name |> member "warning-categories" |>
+    member "enabled" |> to_list |> filter_string
   with
   | Yojson.Json_error msg ->
     Kernel.abort "error reading JSON file: %s" msg
@@ -125,41 +113,25 @@ let print_warning_status path name (module Plugin: Log.Messages) =
         pp_categories (List.map fst disabled)
     end
   else begin
-    let enabled_json =
-      json_of_warning_statuses enabled "enabled"
-    in
-    let disabled_json =
-      json_of_warning_statuses disabled "disabled"
-    in
-    let json = `Assoc [(Stdlib.String.lowercase_ascii name,
-                        `Assoc [("warning-categories",
-                                 `Assoc [enabled_json; disabled_json])])]
-    in
+    let enabled_json = json_of_warning_statuses enabled "enabled"
+    and disabled_json = json_of_warning_statuses disabled "disabled" in
+    let warning_json = `Assoc [enabled_json; disabled_json] in
+    let name = Stdlib.String.lowercase_ascii name in
+    let json = `Assoc [(name, `Assoc [("warning-categories", warning_json)])] in
     Json.merge_object path json
   end
 
 let check_warning_status json name (module Plugin: Log.Messages) =
-  let lower_name = Stdlib.String.lowercase_ascii name in
+  let name = Stdlib.String.lowercase_ascii name in
   let enabled, _disabled = compute_warning_status (module Plugin) in
   let enabled = List.map fst enabled in
-  let (expected_enabled : string list) =
-    try
-      let open Yojson.Basic.Util in
-      json |> member lower_name |> member "warning-categories" |>
-      member "enabled" |> to_list |> filter_string
-    with
-    | Yojson.Json_error msg ->
-      Kernel.abort "error reading JSON file: %s" msg
-    | Yojson.Basic.Util.Type_error (msg, v) ->
-      Kernel.abort "error reading JSON file: %s - %s" msg
-        (Yojson.Basic.pretty_to_string v)
-  in
+  let expected_enabled = enabled_warning_of_json name json in
   let diff l1 l2 = List.filter (fun k -> not (List.mem k l2)) l1 in
   let should_be_enabled = diff expected_enabled enabled in
   if should_be_enabled <> [] then
     Kernel.warning ~wkey:Kernel.wkey_audit
       "the following warning categories were expected to be enabled,@ \
-       but were disabled: %a"
+       but are disabled: %a"
       (Pretty_utils.pp_list ~sep:", " Format.pp_print_string) should_be_enabled
 
 let check_configuration path =
-- 
GitLab


From be5656486cbf061d09fda56c029aa75cb7b6184d Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Mon, 8 Feb 2021 09:24:12 +0100
Subject: [PATCH 129/141] [kernel] File: minor refactoring

---
 src/kernel_services/ast_queries/file.ml | 18 ++++++++----------
 1 file changed, 8 insertions(+), 10 deletions(-)

diff --git a/src/kernel_services/ast_queries/file.ml b/src/kernel_services/ast_queries/file.ml
index 6e654c7ba99..7c3f748eae6 100644
--- a/src/kernel_services/ast_queries/file.ml
+++ b/src/kernel_services/ast_queries/file.ml
@@ -1706,20 +1706,18 @@ let check_source_hashes expected actual_table =
           fp hash (Option.value ~default:("<none> (not in list)") expected_hash)
     ) actual_table
 
+let print_and_exit cpp_commands =
+  let print_cpp_cmd (cpp_cmd, _ppf, _) =
+    Kernel.result "Preprocessing command:@.%s" cpp_cmd
+  in
+  List.iter (fun (_f, ocmd) -> Option.iter print_cpp_cmd ocmd) cpp_commands;
+  raise Cmdline.Exit
+
 let prepare_from_c_files () =
   init_cil ();
   let files = Files.get () in (* Allow pre-registration of prolog files *)
   let cpp_commands = List.map (fun f -> (f, build_cpp_cmd f)) files in
-  if Kernel.PrintCppCommands.get () then begin
-    List.iter (fun (_f, opt_cpp_cmd) ->
-        match opt_cpp_cmd with
-        | None -> ()
-        | Some (cpp_cmd, _ppf, _) ->
-          Kernel.result
-            "Preprocessing command:@.%s" cpp_cmd
-      ) cpp_commands;
-    raise Cmdline.Exit
-  end;
+  if Kernel.PrintCppCommands.get () then print_and_exit cpp_commands;
   let audit_check_path = Kernel.AuditCheck.get () in
   if not (Filepath.Normalized.is_unknown audit_check_path) then begin
     let all_sources_tbl = compute_sources_table cpp_commands in
-- 
GitLab


From bb2b6e51b23d80414e7ddb267c77cb5a19cf93d3 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Mon, 8 Feb 2021 18:46:42 +0100
Subject: [PATCH 130/141] [Eva/Doc] document audit-related options

---
 doc/value/main.tex | 44 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/doc/value/main.tex b/doc/value/main.tex
index a1e9c8363d9..857207e7a5d 100644
--- a/doc/value/main.tex
+++ b/doc/value/main.tex
@@ -2033,6 +2033,50 @@ by the Report plugin.
 The summary display can be disabled by using option
 \lstinline|-eva-msg-key=-summary|.
 
+\subsection{Audit messages ({\em experimental})}
+
+Using options \lstinline|-audit-prepare| and \lstinline|-audit-check|, the
+user can produce and check some information relevant for auditing purposes.
+
+\lstinline|-audit-prepare <file>| outputs the following information:
+
+\begin{itemize}
+\item the list of all source files used during parsing: not only those
+  given in the command line, but also those in \lslinline|#include|
+  directives, recursively. This usually includes Frama-C's standard library.
+  For each file, its MD5 checksum is also printed;
+\item the list of {\em enabled} and {\em disabled} warning categories,
+  for the kernel as well as for \Eva{}. Warning categories are considered
+  disabled when set to one of the following actions: {\em inactive},
+  {\em feedback}, and {\em feedback-once}. All other actions are considered
+  as enabled;
+\item the list of Eva's {\em correctness parameters}, along with their values
+  at the moment when Eva is run.
+\end{itemize}
+
+The information is written to \lstinline|<file>|, in JSON format, unless it
+is the special value \lstinline|-| (given as \lstinline|-audit-prepare=-|),
+in which case the information is printed to the standard output in text format.
+
+The complementary option \lstinline|-audit-check file| takes a JSON file
+produced by \lstinline|-audit-prepare| and checks if all checksums, warning
+category statuses and correctness parameters match. Any discrepancies are
+reported and result in an error by default.
+
+The main intent of these options is to help users perform audit-related
+tasks concerning an analysis performed with Eva. It also helps fine-tuning
+analyses without affecting its correctness; for instance, since it omits
+information related to parameters which do not affect correctness, the user
+is free to adjust them to improve the speed and precision of the analysis.
+
+Note that these options are still in experimental stage, and should not be
+blindly relied upon for strict auditing purposes. For instance, they do
+not record information related to syntactic transformations performed by
+plugins such as \textsf{Variadic}, which can have an indirect impact on
+its correctness.
+
+Please contact the Frama-C development team if you intend to use these
+options in a production setting.
 
 \section{About these alarms the user is supposed to check\ldots}
 
-- 
GitLab


From bb1e66e814c6ee5703f0143f5d8ee89f6bd67912 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Wed, 10 Feb 2021 13:24:26 +0100
Subject: [PATCH 131/141] [Kernel] audit mode failure triggers an error

---
 src/kernel_services/plugin_entry_points/kernel.ml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/kernel_services/plugin_entry_points/kernel.ml b/src/kernel_services/plugin_entry_points/kernel.ml
index 6f1f0afcbcc..29233769c6a 100644
--- a/src/kernel_services/plugin_entry_points/kernel.ml
+++ b/src/kernel_services/plugin_entry_points/kernel.ml
@@ -195,6 +195,7 @@ let wkey_acsl_extension = register_warn_category "acsl-extension"
 let wkey_cmdline = register_warn_category "cmdline"
 
 let wkey_audit = register_warn_category "audit"
+let () = set_warn_status wkey_audit Log.Werror
 
 (* ************************************************************************* *)
 (** {2 Specialised functors for building kernel parameters} *)
-- 
GitLab


From d449dba58a3ff510f29f802b08223d9566f31968 Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Wed, 10 Feb 2021 16:18:45 +0100
Subject: [PATCH 132/141] [Kernel] audit mode: add check for missing hashes,
 with tests

---
 src/kernel_services/ast_queries/file.ml     | 38 +++++++++++++++++----
 tests/value/audit-in.json                   |  7 ++--
 tests/value/audit.c                         |  3 +-
 tests/value/audit_included.h                |  2 +-
 tests/value/audit_included_but_not_listed.h |  1 +
 tests/value/oracle/audit-out.json           |  6 ++--
 tests/value/oracle/audit.res.oracle         |  9 +++--
 7 files changed, 51 insertions(+), 15 deletions(-)
 create mode 100644 tests/value/audit_included_but_not_listed.h

diff --git a/src/kernel_services/ast_queries/file.ml b/src/kernel_services/ast_queries/file.ml
index 7c3f748eae6..63f07080b6a 100644
--- a/src/kernel_services/ast_queries/file.ml
+++ b/src/kernel_services/ast_queries/file.ml
@@ -1697,14 +1697,40 @@ let source_hashes_of_json path =
       (Yojson.Basic.pretty_to_string v)
 
 let check_source_hashes expected actual_table =
-  Hashtbl.iter (fun fp hash ->
-      let fp = Filepath.Normalized.to_pretty_string fp in
-      let expected_hash = List.assoc_opt fp expected in
-      if Some hash <> expected_hash then
+  let checked, diffs =
+    Hashtbl.fold (fun fp hash (acc_checked, acc_diffs) ->
+        let fp = Filepath.Normalized.to_pretty_string fp in
+        let expected_hash = List.assoc_opt fp expected in
+        let checked = Datatype.String.Set.add fp acc_checked in
+        let diffs =
+          if Some hash = expected_hash then acc_diffs
+          else (fp, hash, expected_hash) :: acc_diffs
+        in
+        checked, diffs
+      ) actual_table (Datatype.String.Set.empty, [])
+  in
+  if diffs <> [] then begin
+    let diffs =
+      List.sort (fun (fp1, _, _) (fp2, _, _) ->
+          Extlib.compare_ignore_case fp1 fp2) diffs
+    in
+    List.iter (fun (fp, got, expected) ->
         Kernel.warning ~wkey:Kernel.wkey_audit
           "different hashes for %s: got %s, expected %s"
-          fp hash (Option.value ~default:("<none> (not in list)") expected_hash)
-    ) actual_table
+          fp got (Option.value ~default:("<none> (not in list)") expected)
+      ) diffs
+  end;
+  let expected_names = List.map fst expected in
+  let missing =
+    List.filter (fun fp -> not (Datatype.String.Set.mem fp checked))
+      expected_names
+  in
+  if missing <> [] then begin
+    let missing = List.sort Extlib.compare_ignore_case missing in
+    Kernel.warning ~wkey:Kernel.wkey_audit
+      "missing hashes for files:@\n%a"
+      (Pretty_utils.pp_list ~sep:"@\n" Format.pp_print_string) missing
+  end
 
 let print_and_exit cpp_commands =
   let print_cpp_cmd (cpp_cmd, _ppf, _) =
diff --git a/tests/value/audit-in.json b/tests/value/audit-in.json
index fc5e7af0541..d6abf18d0ff 100644
--- a/tests/value/audit-in.json
+++ b/tests/value/audit-in.json
@@ -1,7 +1,8 @@
 {
   "sources": {
-    "tests/value/audit.c": "4574f9d5090319c57dab0c9cb81fda32",
-    "tests/value/audit_included.h": "6164442da331e54680e25ff2fe1ba74e"
+    "tests/value/audit.c": "01010101010101010101010101010101",
+    "tests/value/audit_included.h": "c2cc488143a476f69cf2ed04c3439e6e",
+    "tests/value/non_existing_file.h": "1234567890abcdef1234567890abcdef"
   },
   "kernel": {
     "warning-categories": {
@@ -73,4 +74,4 @@
       ]
     }
   }
-}
\ No newline at end of file
+}
diff --git a/tests/value/audit.c b/tests/value/audit.c
index 952edfab1ee..7b3e27c0eb1 100644
--- a/tests/value/audit.c
+++ b/tests/value/audit.c
@@ -1,9 +1,10 @@
 /* run.config
    LOG: audit-out.json
-   STDOPT: #"-audit-check @PTEST_DIR@/audit-in.json -audit-prepare @PTEST_DIR@/result/audit-out.json"
+   STDOPT: #"-audit-check @PTEST_DIR@/audit-in.json -audit-prepare @PTEST_DIR@/result/audit-out.json -kernel-warn-key audit=active"
 */
 
 #include "audit_included.h"
+#include "audit_included_but_not_listed.h"
 
 void main() {
   float f = 2.1; // to trigger a syntactic warning
diff --git a/tests/value/audit_included.h b/tests/value/audit_included.h
index 0db378b820a..d4b481cc2ee 100644
--- a/tests/value/audit_included.h
+++ b/tests/value/audit_included.h
@@ -1 +1 @@
-// This file is included by audit.i
+// This file is included by audit.c
diff --git a/tests/value/audit_included_but_not_listed.h b/tests/value/audit_included_but_not_listed.h
new file mode 100644
index 00000000000..d4b481cc2ee
--- /dev/null
+++ b/tests/value/audit_included_but_not_listed.h
@@ -0,0 +1 @@
+// This file is included by audit.c
diff --git a/tests/value/oracle/audit-out.json b/tests/value/oracle/audit-out.json
index e12d53d0b0e..f9aa254ce11 100644
--- a/tests/value/oracle/audit-out.json
+++ b/tests/value/oracle/audit-out.json
@@ -70,7 +70,9 @@
     }
   },
   "sources": {
-    "tests/value/audit.c": "d91c35d6c3eb02ede2ca2bdf92fda63d",
-    "tests/value/audit_included.h": "6164442da331e54680e25ff2fe1ba74e"
+    "tests/value/audit.c": "08f73691217888d926a0ee15cbe18159",
+    "tests/value/audit_included.h": "c2cc488143a476f69cf2ed04c3439e6e",
+    "tests/value/audit_included_but_not_listed.h":
+      "c2cc488143a476f69cf2ed04c3439e6e"
   }
 }
diff --git a/tests/value/oracle/audit.res.oracle b/tests/value/oracle/audit.res.oracle
index c599da1fc5f..8cb4e84028b 100644
--- a/tests/value/oracle/audit.res.oracle
+++ b/tests/value/oracle/audit.res.oracle
@@ -1,8 +1,13 @@
 [kernel:audit] Warning: 
-  different hashes for tests/value/audit.c: got d91c35d6c3eb02ede2ca2bdf92fda63d, expected 4574f9d5090319c57dab0c9cb81fda32
+  different hashes for tests/value/audit.c: got 08f73691217888d926a0ee15cbe18159, expected 01010101010101010101010101010101
+[kernel:audit] Warning: 
+  different hashes for tests/value/audit_included_but_not_listed.h: got c2cc488143a476f69cf2ed04c3439e6e, expected <none> (not in list)
+[kernel:audit] Warning: 
+  missing hashes for files:
+  tests/value/non_existing_file.h
 [kernel] Audit: sources list written to: tests/value/result/audit-out.json
 [kernel] Parsing tests/value/audit.c (with preprocessing)
-[kernel:parser:decimal-float] tests/value/audit.c:9: Warning: 
+[kernel:parser:decimal-float] tests/value/audit.c:10: Warning: 
   Floating-point constant 2.1 is not represented exactly. Will use 0x1.0cccccccccccdp1.
   (warn-once: no further messages from category 'parser:decimal-float' will be emitted)
 [eva] Analyzing a complete application starting at main
-- 
GitLab


From ae3f2dabdd7e8c8c5e0c5e13d3400d93b5a3e45d Mon Sep 17 00:00:00 2001
From: Andre Maroneze <andre.maroneze@cea.fr>
Date: Wed, 10 Feb 2021 18:37:17 +0100
Subject: [PATCH 133/141] [Kernel] minor audit fixes following review

---
 src/kernel_services/ast_queries/file.ml           | 5 +++--
 src/kernel_services/plugin_entry_points/kernel.ml | 2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/kernel_services/ast_queries/file.ml b/src/kernel_services/ast_queries/file.ml
index 63f07080b6a..3d5d0970665 100644
--- a/src/kernel_services/ast_queries/file.ml
+++ b/src/kernel_services/ast_queries/file.ml
@@ -1754,8 +1754,9 @@ let prepare_from_c_files () =
   if not (Filepath.Normalized.is_unknown audit_path) then begin
     let all_sources_tbl = compute_sources_table cpp_commands in
     print_all_sources audit_path all_sources_tbl;
-    Kernel.feedback "Audit: sources list written to: %a@."
-      Filepath.Normalized.pretty audit_path;
+    if not (Filepath.Normalized.is_special_stdout audit_path) then
+      Kernel.feedback "Audit: sources list written to: %a@."
+        Filepath.Normalized.pretty audit_path;
   end;
   let cil, cabs_files = files_to_cabs_cil files cpp_commands in
   prepare_cil_file cil;
diff --git a/src/kernel_services/plugin_entry_points/kernel.ml b/src/kernel_services/plugin_entry_points/kernel.ml
index 29233769c6a..e21274bd4b3 100644
--- a/src/kernel_services/plugin_entry_points/kernel.ml
+++ b/src/kernel_services/plugin_entry_points/kernel.ml
@@ -1071,7 +1071,7 @@ module AuditCheck =
       let existence = Filepath.Must_exist
       let file_kind = "json"
       let help = "reads an audit JSON file (produced by -audit-prepare) and \
-                  checks compliance w.r.t. to it; e.g., if the source files \
+                  checks compliance w.r.t. it; e.g., if the source files \
                   were declared and have the expected checksum. \
                   Raises a warning (with warning key 'audit') in case of \
                   failed checks. \
-- 
GitLab


From b7342390172659a2f1859d232292f4099c9e70a8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20B=C3=BChler?= <david.buhler@cea.fr>
Date: Thu, 18 Feb 2021 10:14:51 +0100
Subject: [PATCH 134/141] [Eva] Updates header.

---
 src/plugins/value/utils/eva_audit.ml  | 2 +-
 src/plugins/value/utils/eva_audit.mli | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/plugins/value/utils/eva_audit.ml b/src/plugins/value/utils/eva_audit.ml
index 2fca718e2f4..f7e10c46cf0 100644
--- a/src/plugins/value/utils/eva_audit.ml
+++ b/src/plugins/value/utils/eva_audit.ml
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
diff --git a/src/plugins/value/utils/eva_audit.mli b/src/plugins/value/utils/eva_audit.mli
index 6f16b350dcd..7cd6bff0d6e 100644
--- a/src/plugins/value/utils/eva_audit.mli
+++ b/src/plugins/value/utils/eva_audit.mli
@@ -2,7 +2,7 @@
 (*                                                                        *)
 (*  This file is part of Frama-C.                                         *)
 (*                                                                        *)
-(*  Copyright (C) 2007-2020                                               *)
+(*  Copyright (C) 2007-2021                                               *)
 (*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
 (*         alternatives)                                                  *)
 (*                                                                        *)
-- 
GitLab


From 4e1473b532700d8f815e3f356dd85d8d74075834 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20B=C3=BChler?= <david.buhler@cea.fr>
Date: Thu, 18 Feb 2021 10:25:40 +0100
Subject: [PATCH 135/141] [Eva] Fixes a typo in the user manual.

---
 doc/value/main.tex | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/value/main.tex b/doc/value/main.tex
index 857207e7a5d..dac4374ae5f 100644
--- a/doc/value/main.tex
+++ b/doc/value/main.tex
@@ -2042,7 +2042,7 @@ user can produce and check some information relevant for auditing purposes.
 
 \begin{itemize}
 \item the list of all source files used during parsing: not only those
-  given in the command line, but also those in \lslinline|#include|
+  given in the command line, but also those in \lstinline|#include|
   directives, recursively. This usually includes Frama-C's standard library.
   For each file, its MD5 checksum is also printed;
 \item the list of {\em enabled} and {\em disabled} warning categories,
-- 
GitLab


From ed9297ff8816286822ffb4fb07636f2cdf0b630d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20B=C3=BChler?= <david.buhler@cea.fr>
Date: Thu, 18 Feb 2021 11:03:33 +0100
Subject: [PATCH 136/141] [Eva] Audit mode: changes the warning message on
 missing files.

---
 src/kernel_services/ast_queries/file.ml | 2 +-
 tests/value/oracle/audit.res.oracle     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/kernel_services/ast_queries/file.ml b/src/kernel_services/ast_queries/file.ml
index 3d5d0970665..6cd0cc0cecf 100644
--- a/src/kernel_services/ast_queries/file.ml
+++ b/src/kernel_services/ast_queries/file.ml
@@ -1728,7 +1728,7 @@ let check_source_hashes expected actual_table =
   if missing <> [] then begin
     let missing = List.sort Extlib.compare_ignore_case missing in
     Kernel.warning ~wkey:Kernel.wkey_audit
-      "missing hashes for files:@\n%a"
+      "missing files:@\n%a"
       (Pretty_utils.pp_list ~sep:"@\n" Format.pp_print_string) missing
   end
 
diff --git a/tests/value/oracle/audit.res.oracle b/tests/value/oracle/audit.res.oracle
index 8cb4e84028b..338a77c21a7 100644
--- a/tests/value/oracle/audit.res.oracle
+++ b/tests/value/oracle/audit.res.oracle
@@ -3,7 +3,7 @@
 [kernel:audit] Warning: 
   different hashes for tests/value/audit_included_but_not_listed.h: got c2cc488143a476f69cf2ed04c3439e6e, expected <none> (not in list)
 [kernel:audit] Warning: 
-  missing hashes for files:
+  missing files:
   tests/value/non_existing_file.h
 [kernel] Audit: sources list written to: tests/value/result/audit-out.json
 [kernel] Parsing tests/value/audit.c (with preprocessing)
-- 
GitLab


From 58e7bc342585dd57fca568611e3663a4fe4737a9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20B=C3=BChler?= <david.buhler@cea.fr>
Date: Thu, 18 Feb 2021 11:14:46 +0100
Subject: [PATCH 137/141] [Eva] Removes unused changes in value_parameters.

---
 src/plugins/value/value_parameters.ml  | 8 +++-----
 src/plugins/value/value_parameters.mli | 2 --
 2 files changed, 3 insertions(+), 7 deletions(-)

diff --git a/src/plugins/value/value_parameters.ml b/src/plugins/value/value_parameters.ml
index ad331f122e7..7714801f87b 100644
--- a/src/plugins/value/value_parameters.ml
+++ b/src/plugins/value/value_parameters.ml
@@ -61,17 +61,13 @@ let add_precision_dep p =
 
 let () = List.iter add_correctness_dep kernel_parameters_correctness
 
-module Fc_filepath = Filepath
-
-module Eva =
-  Plugin.Register
+include Plugin.Register
     (struct
       let name = "Eva"
       let shortname = "eva"
       let help =
         "automatically computes variation domains for the variables of the program"
     end)
-include Eva
 
 let () = Help.add_aliases ~visible:false [ "-value-h"; "-val-h" ]
 let () = add_plugin_output_aliases ~visible:false ~deprecated:true [ "value" ]
@@ -1428,6 +1424,8 @@ let parameters_correctness =
 let parameters_tuning =
   Typed_parameter.Set.elements !parameters_tuning
 
+
+
 (*
 Local Variables:
 compile-command: "make -C ../../.."
diff --git a/src/plugins/value/value_parameters.mli b/src/plugins/value/value_parameters.mli
index 9e8ac504892..0a294b1e8c1 100644
--- a/src/plugins/value/value_parameters.mli
+++ b/src/plugins/value/value_parameters.mli
@@ -20,8 +20,6 @@
 (*                                                                        *)
 (**************************************************************************)
 
-module Fc_filepath = Filepath
-
 include Plugin.General_services
 
 module ForceValues: Parameter_sig.With_output
-- 
GitLab


From 518863e3f23b6b326c8990cf4690cc08e8d8385d Mon Sep 17 00:00:00 2001
From: Basile Desloges <basile.desloges@cea.fr>
Date: Tue, 19 Jan 2021 11:35:48 +0100
Subject: [PATCH 138/141] [kernel] Add function to add a spec to a function or
 statement

---
 src/kernel_services/ast_data/annotations.ml  | 13 +++++++++++++
 src/kernel_services/ast_data/annotations.mli |  8 ++++++++
 2 files changed, 21 insertions(+)

diff --git a/src/kernel_services/ast_data/annotations.ml b/src/kernel_services/ast_data/annotations.ml
index cc6c5221d3e..90690303633 100644
--- a/src/kernel_services/ast_data/annotations.ml
+++ b/src/kernel_services/ast_data/annotations.ml
@@ -1001,6 +1001,19 @@ let add_disjoint e kf ?stmt ?active l =
     Property_status.register (Property.ip_of_disjoint kf (kinstr stmt) active l)
   end
 
+let add_spec ?register_children e kf ?stmt ?active spec =
+  add_behaviors ?register_children e kf ?stmt ?active spec.spec_behavior;
+  Option.iter (fun variant -> add_decreases e kf variant) spec.spec_variant;
+  Option.iter
+    (fun terminates -> add_terminates e kf ?stmt ?active terminates)
+    spec.spec_terminates;
+  List.iter
+    (fun complete -> add_complete e kf ?stmt ?active complete)
+    spec.spec_complete_behaviors;
+  List.iter
+    (fun disjoint -> add_disjoint e kf ?stmt ?active disjoint)
+    spec.spec_disjoint_behaviors
+
 let extend_behavior
     e kf ?stmt ?active ?(behavior=Cil.default_behavior_name) set_bhv =
   (* Kernel.feedback "Function %a, behavior %s" Kf.pretty kf bhv_name;*)
diff --git a/src/kernel_services/ast_data/annotations.mli b/src/kernel_services/ast_data/annotations.mli
index c6b8e7d3f81..1b7e315613e 100644
--- a/src/kernel_services/ast_data/annotations.mli
+++ b/src/kernel_services/ast_data/annotations.mli
@@ -334,6 +334,14 @@ type 'a behavior_component_addition =
     @since Aluminium-20160501
 *)
 
+val add_spec: ?register_children:bool -> spec contract_component_addition
+(** Add new spec into the given contract.
+
+    [register_children] is directly given to the function [add_behaviors].
+
+    @since Frama-C+dev
+*)
+
 val add_behaviors:
   ?register_children:bool -> funbehavior list contract_component_addition
 (** Add new behaviors into the given contract. 
-- 
GitLab


From e76ace79997e451fc6af52b5ee3a80c2847545b4 Mon Sep 17 00:00:00 2001
From: Basile Desloges <basile.desloges@cea.fr>
Date: Tue, 19 Jan 2021 11:58:45 +0100
Subject: [PATCH 139/141] [eacsl] Merge the specifications from the RTL
 functions with the corresponding functions from the user's project

---
 .../e-acsl/src/project_initializer/rtl.ml     | 316 ++++++++++++++++--
 1 file changed, 283 insertions(+), 33 deletions(-)

diff --git a/src/plugins/e-acsl/src/project_initializer/rtl.ml b/src/plugins/e-acsl/src/project_initializer/rtl.ml
index 07be50d1a64..8c96f04f908 100644
--- a/src/plugins/e-acsl/src/project_initializer/rtl.ml
+++ b/src/plugins/e-acsl/src/project_initializer/rtl.ml
@@ -100,6 +100,71 @@ end = struct
 *)
 end
 
+(* Internal module to store the associations between symbols in the RTL project
+   and their corresponding symbols in the user's project. *)
+module Assocs: sig
+  val clear: unit -> unit
+  (** Clear stored associations. *)
+
+  val add_kf: global -> kernel_function -> unit
+  (** Add an association between a global in the RTL project and the
+      corresponding kernel function in the user's project. *)
+
+  val mem_kf: global -> bool
+  (** Returns true if the given global from the RTL project has a corresponding
+      kernel function in the user's project. *)
+
+  val get_kf: global -> kernel_function
+  (** Returns the corresponding kernel function from the user's project for the
+      given global in the RTL project. *)
+
+  val add_vi: varinfo -> varinfo -> unit
+  (** [add_vi rtl_vi user_vi] adds an association between a [varinfo] in the
+      RTL project and the corresponding [varinfo] in the user's project. *)
+
+  val find_vi: varinfo -> varinfo
+  (** [find_vi rtl_vi] returns the corresponding [varinfo] from the user's
+      project for the given [varinfo] in the RTL project if it exists, or raise
+      [Not_found] otherwise. *)
+
+  val add_li: logic_info -> logic_info -> unit
+  (** [add_li rtl_li user_li] adds an association between a [logic_info] in the
+      RTL project and the corresponding [logic_info] in the user's project. *)
+
+  val find_li: logic_info -> logic_info
+  (** [find_li rtl_li] returns the corresponding [logic_info] from the user's
+      project for the given [logic_info] in the RTL project if it exists,
+      or raise [Not_found] otherwise. *)
+
+end = struct
+  let kfs: kernel_function Global.Hashtbl.t = Global.Hashtbl.create 17
+  let vars: varinfo Varinfo.Hashtbl.t = Varinfo.Hashtbl.create 17
+  let logic_vars: logic_info Logic_info.Hashtbl.t = Logic_info.Hashtbl.create 17
+
+  let clear () =
+    Global.Hashtbl.clear kfs;
+    Varinfo.Hashtbl.clear vars;
+    Logic_info.Hashtbl.clear logic_vars
+
+  let add_kf rtl_g user_kf = Global.Hashtbl.replace kfs rtl_g user_kf
+  let mem_kf rtl_g = Global.Hashtbl.mem kfs rtl_g
+  let get_kf rtl_g =
+    try
+      Global.Hashtbl.find kfs rtl_g
+    with Not_found ->
+      Options.fatal
+        "Unable to find user kf corresponding to %a. Assocs.mem_kf should be \
+         used before calling Assocs.get_kf"
+        Printer.pp_global rtl_g
+
+  let add_vi rtl_vi user_vi = Varinfo.Hashtbl.replace vars rtl_vi user_vi
+  let find_vi rtl_vi = Varinfo.Hashtbl.find vars rtl_vi
+
+  let add_li rtl_li user_li = Logic_info.Hashtbl.replace logic_vars rtl_li user_li
+  let find_li rtl_li = Logic_info.Hashtbl.find logic_vars rtl_li
+end
+
+
 (* NOTE: do not use [Mergecil.merge] since all [ast]'s symbols must be kept
    unchanged: so do it ourselves. Thanksfully, we merge in a particular
    setting because we know what the RTL is. Therefore merging is far from being
@@ -109,11 +174,15 @@ end
    tables.
    @return the list of globals to be inserted into [ast], in reverse order. *)
 let lookup_rtl_globals rtl_ast =
-  (* [do_it ~add mem acc l g] checks whether the global does exist in the user's
-     AST. If not, add it to the corresponding symbol table(s). *)
-  let rec do_it ?(add=fun _g -> ()) mem acc l g =
-    if mem g then do_globals (g :: acc) l
-    else begin
+  (* [do_it ~add ~assoc mem acc l g] checks whether the global does exist in the
+     user's AST. If not, add it to the corresponding symbol table(s). If yes,
+     save the association between the global in the user's AST and the global in
+     the RTL. *)
+  let rec do_it ?(add=fun _g -> ()) ?(assoc=fun _g -> ()) mem acc l g =
+    if mem g then begin
+      assoc g;
+      do_globals (g :: acc) l
+    end else begin
       add g;
       Symbols.add_global g;
       do_globals (g :: acc) l
@@ -134,8 +203,11 @@ let lookup_rtl_globals rtl_ast =
       do_ty acc l g Logic_typing.Enum ei.ename
     | GVarDecl(vi, (pos, _)) | GVar(vi, _, (pos, _)) as g :: l  ->
       let tunit = Translation_unit pos.Filepath.pos_path in
+      let get_old_vi_opt vi =
+        Globals.Syntactic_search.find_in_scope vi.vorig_name tunit
+      in
       let mem _g =
-        let g = Globals.Syntactic_search.find_in_scope vi.vorig_name tunit in
+        let g = get_old_vi_opt vi in
         Option.is_some g
       in
       let add g =
@@ -145,16 +217,95 @@ let lookup_rtl_globals rtl_ast =
         | GVar(_, ii, _) -> Globals.Vars.add vi ii
         | _ -> assert false
       in
-      do_it ~add mem acc l g
+      let assoc _g =
+        (* [assoc] is called if [mem] returns true, so the option returned by
+           [get_old_vi_opt] is [Some] by construction. *)
+        let old_vi = get_old_vi_opt vi in
+        Assocs.add_vi vi (Option.get old_vi)
+      in
+      do_it ~add ~assoc mem acc l g
     | GFunDecl(_, vi, _loc) | GFun({ svar = vi }, _loc) as g :: l ->
       let add _g =
         Symbols.add_vi vi.vname vi;
         (* functions will be registered in kernel's table after substitution of
            RTL's symbols inside them *)
       in
-      do_it ~add (fun _ -> Globals.Functions.mem_name vi.vname) acc l g
+      let assoc g =
+        let kf = Globals.Functions.find_by_name vi.vname in
+        Assocs.add_kf g kf
+      in
+      do_it ~add ~assoc (fun _ -> Globals.Functions.mem_name vi.vname) acc l g
+    | GAnnot (Daxiomatic (name, galist, _, _), _) as g :: l ->
+      (* processing axiomatics *)
+      let fun_or_preds =
+        (* extract the functions and predicates from the axiomatic *)
+        List.filter_map
+          (fun ga ->
+             match ga with
+             | Dfun_or_pred (li, _) -> Some li
+             | _ -> None)
+          galist
+      in
+      let mem _ =
+        (* check if some function or predicate of the axiomatic [exists] in the
+           user's project, if all the functions and predicates are in the user's
+           project ([forall]), and store which function and predicate are in the
+           user's project in [conflicting_lis]. *)
+        let exists, forall, conflicting_lis =
+          List.fold_left
+            (fun (exists, forall, conflicting_lis) li ->
+               let lv_name = li.l_var_info.lv_name in
+               let li_exists = Logic_env.Logic_info.mem lv_name in
+               let conflicting_lis =
+                 if li_exists then li :: conflicting_lis else conflicting_lis
+               in
+               exists || li_exists, forall && li_exists, conflicting_lis)
+            (false, true, [])
+            fun_or_preds
+        in
+        (* The axiomatic is considered "in the user's project" if and only if
+           all its functions and predicates are in the user's project. If only
+           some of them are in it then it is an error, and if none of them are
+           then the axiomatic is not in the user's project. *)
+        if exists && not forall then
+          Options.abort
+            "@[The following logic functions or predicates@ \
+             are in conflict with logic functions or predicates from the@ \
+             axiomatic '%s' in the E-ACSL runtime library, please rename@ \
+             them:@ %a@]"
+            name
+            (Pretty_utils.pp_list
+               ~sep:",@ "
+               Printer.pp_logic_info)
+            conflicting_lis
+        else
+          forall
+      in
+      let assoc _g =
+        List.iter
+          (fun li ->
+             let lv_name = li.l_var_info.lv_name in
+             let old_lis = Logic_env.Logic_info.find lv_name in
+             let old_li =
+               try
+                 List.find
+                   (fun old_li -> Logic_utils.is_same_logic_info li old_li)
+                   old_lis
+               with Not_found ->
+                 Options.fatal
+                   "Unable to find the logic_info in the user's AST \
+                    corresponding to the logic_info %a in the RTL's AST. This \
+                    most likely comes from a mismatch between the axiomatic %s \
+                    in the RTL that is supposed to mirror one from the stdlib."
+                   Printer.pp_logic_info li
+                   name
+             in
+             Assocs.add_li li old_li)
+          fun_or_preds
+      in
+      do_it ~assoc mem acc l g
     | GAnnot _ :: l ->
-      (* ignoring annotations from the AST *)
+      (* ignoring other annotations from the AST *)
       do_globals acc l
     | GPragma _ as g :: l ->
       do_it Symbols.mem_global acc l g
@@ -163,34 +314,86 @@ let lookup_rtl_globals rtl_ast =
   in
   do_globals [] rtl_ast.globals
 
+(** [get_kf vi] returns the kernel function corresponding to the given varinfo
+    in the current project. The varinfo must correspond to a kernel function. *)
+let get_kf vi =
+  try
+    Globals.Functions.get vi
+  with Not_found ->
+    Options.fatal "unknown function %s in project %a"
+      vi.vname
+      Project.pretty (Project.current ())
+
+(** [get_formals_and_spec prj vi] returns a couple with the formals and function
+    specification of the function corresponding to the varinfo [vi] in the
+    project [prj]. The varinfo must correspond to a function of the given
+    project. *)
+let get_formals_and_spec prj vi =
+  let selection =
+    State_selection.of_list
+      [ Globals.Functions.self; Annotations.funspec_state ]
+  in
+  Project.on
+    prj
+    ~selection
+    (fun vi ->
+       let kf = get_kf vi in
+       Kernel_function.get_formals kf,
+       Annotations.funspec ~populate:false kf)
+    vi
+
+(** Visitor to replace [varinfo] and [logic_info] leaves of an AST with
+    corresponding values from the [Assocs] tables.
+    If the visitor is created with the [formals] associating the [varinfo] of
+    the RTL formals with the [varinfo] of the user formals, then replace the
+    corresponding [varinfo] leaves. *)
+class vis_replace_leaves ?formals () =
+  object
+    (* Since we are already working on a copied project, we can use an inplace
+       visitor. *)
+    inherit Visitor.frama_c_inplace
+
+    val formals: varinfo Varinfo.Hashtbl.t =
+      match formals with
+      | None -> Varinfo.Hashtbl.create 7
+      | Some formals -> formals
+
+    (* Since the RTL project will be deleted at the end of the AST
+        merge, we can temporarily violate the Frama-C invariant that says
+        that a varinfo or logic_info must be in a single project and directly
+        replace the varinfo/logic_info of the RTL in the specification with the
+        logic_info/varinfo of the user's AST. *)
+
+    method! vlogic_info_use rtl_li =
+      try
+        (* Replace the logic_info if it is a logic_info from the RTL project. *)
+        let user_li = Assocs.find_li rtl_li in
+        Cil.ChangeTo user_li
+      with Not_found ->
+        Cil.SkipChildren
+
+    method! vvrbl rtl_vi =
+      try
+        (* Replace the varinfo if it is a global from the RTL project.*)
+        let user_vi = Assocs.find_vi rtl_vi in
+        Cil.ChangeTo user_vi
+      with Not_found ->
+      try
+        (* Replace the varinfo if it is a formal. *)
+        let user_vi = Varinfo.Hashtbl.find formals rtl_vi in
+        Cil.ChangeTo user_vi
+      with Not_found ->
+        (* Otherwise do nothing. *)
+        Cil.SkipChildren
+  end
+
 (* [substitute_rtl_symbols] registers the correct symbols for RTL's functions *)
 let substitute_rtl_symbols rtl_prj = function
   | GVarDecl _ | GVar _ as g ->
     g
   | GFunDecl(_, vi, loc) | GFun({ svar = vi }, loc) as g ->
-    let get_kf vi =
-      try
-        Globals.Functions.get vi
-      with Not_found ->
-        Options.fatal "unknown function %s in project %a"
-          vi.vname
-          Project.pretty (Project.current ())
-    in
-    let selection =
-      State_selection.of_list
-        [ Globals.Functions.self; Annotations.funspec_state ]
-    in
     (* get the RTL's formals and spec *)
-    let formals, spec =
-      Project.on
-        rtl_prj
-        ~selection
-        (fun vi ->
-           let kf = get_kf vi in
-           Kernel_function.get_formals kf,
-           Annotations.funspec ~populate:false kf)
-        vi
-    in
+    let formals, spec = get_formals_and_spec rtl_prj vi in
     (match g with
      | GFunDecl _ ->
        Globals.Functions.replace_by_declaration spec vi loc
@@ -209,10 +412,47 @@ let substitute_rtl_symbols rtl_prj = function
     Annotations.register_funspec ~emitter:Options.emitter kf;
     Symbols.add_kf kf;
     g
+  | GAnnot (Daxiomatic _ as ga, loc) ->
+    let vis_replace_leaves = new vis_replace_leaves () in
+    let ga = Visitor.visitFramacAnnotation vis_replace_leaves ga in
+    Annotations.add_global Options.emitter ga;
+    GAnnot (ga, loc)
   | GType _ | GCompTag _ | GCompTagDecl _ | GEnumTag _ | GEnumTagDecl _
   | GAnnot _ | GAsm _ | GPragma _ | GText _ ->
     assert false
 
+(* [merge_rtl_spec rtl_prj rtl_global] adds the spec of the given global
+   function from the RTL project to the corresponding function in the current
+   project. Before adding the spec, the varinfos of the global variables and
+   formals in the spec are replaced with their corresponding varinfos in the
+   current project. *)
+let merge_rtl_spec rtl_prj rtl_global =
+  match rtl_global with
+  | GFunDecl(_, vi, _loc) | GFun({ svar = vi }, _loc) as g ->
+    (* get the RTL's formals and spec *)
+    let rtl_formals, spec = get_formals_and_spec rtl_prj vi in
+    (* if the spec is not empty, then merge it with the user's spec *)
+    if not (Cil.is_empty_funspec spec) then begin
+      (* get the user's kf *)
+      let user_kf = Assocs.get_kf g in
+      (* get the user's formals *)
+      let user_formals = Kernel_function.get_formals user_kf in
+      (* replace all the formals and global variables in the spec with the
+         formals and globals from the user's project. *)
+      let formals_assoc: varinfo Varinfo.Hashtbl.t = Varinfo.Hashtbl.create 7 in
+      List.iter2
+        (fun rtl_vi user_vi -> Varinfo.Hashtbl.add formals_assoc rtl_vi user_vi)
+        rtl_formals
+        user_formals;
+      let vis_replace_formals = new vis_replace_leaves ~formals:formals_assoc () in
+      let spec = Visitor.visitFramacFunspec vis_replace_formals spec in
+      (* Add the updated spec to the user's kf *)
+      Annotations.add_spec Options.emitter user_kf spec
+    end
+  | GVarDecl _ | GVar _ | GType _ | GCompTag _ | GCompTagDecl _ | GEnumTag _
+  | GEnumTagDecl _ | GAnnot _ | GAsm _ | GPragma _ | GText _ ->
+    assert false
+
 (* [insert_rtl_globals] adds the rtl symbols into the user's AST *)
 let insert_rtl_globals rtl_prj rtl_globals ast =
   let add_ty acc old_g new_g =
@@ -238,12 +478,21 @@ let insert_rtl_globals rtl_prj rtl_globals ast =
          only declared *)
       let acc = add_ty acc g (GEnumTagDecl(ei, loc)) in
       add acc l
-    | GVarDecl _ | GVar _ | GFunDecl _ | GFun _ as g :: l ->
+    | GVarDecl _ | GVar _ | GFunDecl _ | GFun _
+    | GAnnot (Daxiomatic _, _) as g :: l ->
       let acc =
         if Symbols.mem_global g then
+          (* The symbol is in the RTL project, but not in the user's project.
+             Perform the symbols substitution and add the global to the user's
+             project. *)
           let g = substitute_rtl_symbols rtl_prj g in
           g :: acc
-        else
+        else if Assocs.mem_kf g then begin
+          (* The symbol is in the RTL project and associated with a kf in the
+             user's project. Merge both contracts. *)
+          merge_rtl_spec rtl_prj g;
+          acc
+        end else
           acc
       in
       add acc l
@@ -261,6 +510,7 @@ let link rtl_prj =
   let rtl_globals = lookup_rtl_globals rtl_ast in
   (*  Symbols.debug ();*)
   insert_rtl_globals rtl_prj rtl_globals ast;
+  Assocs.clear ();
   Ast.mark_as_grown ()
 
 (*
-- 
GitLab


From b58f650a57aaeae17e1ba713291cf64185cc3afe Mon Sep 17 00:00:00 2001
From: Basile Desloges <basile.desloges@cea.fr>
Date: Tue, 19 Jan 2021 15:24:27 +0100
Subject: [PATCH 140/141] [eacsl] Update contracts of allocation functions

The contracts are updated to mention the behaviors in the contracts of
`stdlib.h` and satisfy Eva.
---
 .../e_acsl_observation_model.h                | 62 ++++++++++++++++++-
 1 file changed, 60 insertions(+), 2 deletions(-)

diff --git a/src/plugins/e-acsl/share/e-acsl/observation_model/e_acsl_observation_model.h b/src/plugins/e-acsl/share/e-acsl/observation_model/e_acsl_observation_model.h
index f55417402c0..4a5a8204afd 100644
--- a/src/plugins/e-acsl/share/e-acsl/observation_model/e_acsl_observation_model.h
+++ b/src/plugins/e-acsl/share/e-acsl/observation_model/e_acsl_observation_model.h
@@ -36,6 +36,19 @@
 #include "../internals/e_acsl_alias.h"
 #include "e_acsl_heap.h"
 
+/*@ ghost extern int __fc_heap_status; */
+
+/*@ axiomatic dynamic_allocation {
+  @   predicate is_allocable{L}(integer n) // Can a block of n bytes be allocated?
+  @     reads __fc_heap_status;
+  @   // The logic label L is not used, but it must be present because the
+  @   // predicate depends on the memory state
+  @   axiom never_allocable{L}:
+  @     \forall integer i;
+  @        i < 0 || i > __FC_SIZE_MAX ==> !is_allocable(i);
+  @ }
+*/
+
 /************************************************************************/
 /*** API Prefixes {{{ ***/
 /************************************************************************/
@@ -83,8 +96,16 @@
  *    behaviour is as if the size were some non-zero value, except that the
  *    returned pointer shall not be used to access an object." */
 /*@
-  assigns __e_acsl_heap_allocation_size \from size, __e_acsl_heap_allocation_size;
-  assigns __e_acsl_heap_allocated_blocks \from size, __e_acsl_heap_allocated_blocks;
+  assigns __e_acsl_heap_allocation_size \from indirect:size, __e_acsl_heap_allocation_size;
+  assigns __e_acsl_heap_allocated_blocks \from indirect:size, __e_acsl_heap_allocated_blocks;
+  behavior allocation:
+    assumes can_allocate: is_allocable(size);
+    assigns __e_acsl_heap_allocation_size \from indirect:size, __e_acsl_heap_allocation_size;
+    assigns __e_acsl_heap_allocated_blocks \from indirect:size, __e_acsl_heap_allocated_blocks;
+  behavior no_allocation:
+    assumes cannot_allocate: !is_allocable(size);
+    assigns __e_acsl_heap_allocation_size \from indirect:size, __e_acsl_heap_allocation_size;
+    assigns __e_acsl_heap_allocated_blocks \from size, __e_acsl_heap_allocated_blocks;
  */
 void * malloc(size_t size)
   __attribute__((FC_BUILTIN));
@@ -94,6 +115,14 @@ void * malloc(size_t size)
 /*@
   assigns __e_acsl_heap_allocation_size \from indirect:nbr_elt, indirect:size_elt, __e_acsl_heap_allocation_size;
   assigns __e_acsl_heap_allocated_blocks \from indirect:nbr_elt, indirect:size_elt, __e_acsl_heap_allocated_blocks;
+  behavior allocation:
+    assumes can_allocate: is_allocable(nbr_elt * size_elt);
+    assigns __e_acsl_heap_allocation_size \from indirect:nbr_elt, indirect:size_elt, __e_acsl_heap_allocation_size;
+    assigns __e_acsl_heap_allocated_blocks \from indirect:nbr_elt, indirect:size_elt, __e_acsl_heap_allocated_blocks;
+  behavior no_allocation:
+    assumes cannot_allocate: !is_allocable(nbr_elt * size_elt);
+    assigns __e_acsl_heap_allocation_size \from indirect:nbr_elt, indirect:size_elt, __e_acsl_heap_allocation_size;
+    assigns __e_acsl_heap_allocated_blocks \from indirect:nbr_elt, indirect:size_elt, __e_acsl_heap_allocated_blocks;
  */
 void * calloc(size_t nbr_elt, size_t size_elt)
   __attribute__((FC_BUILTIN));
@@ -103,6 +132,19 @@ void * calloc(size_t nbr_elt, size_t size_elt)
 /*@
   assigns __e_acsl_heap_allocation_size \from __e_acsl_heap_allocation_size;
   assigns __e_acsl_heap_allocated_blocks \from __e_acsl_heap_allocated_blocks;
+  behavior allocation:
+    assumes   can_allocate: is_allocable(size);
+    assigns __e_acsl_heap_allocation_size \from __e_acsl_heap_allocation_size;
+    assigns __e_acsl_heap_allocated_blocks \from __e_acsl_heap_allocated_blocks;
+  behavior deallocation:
+    assumes   nonnull_ptr: ptr != \null;
+    assumes   can_allocate: is_allocable(size);
+    assigns __e_acsl_heap_allocation_size \from __e_acsl_heap_allocation_size;
+    assigns __e_acsl_heap_allocated_blocks \from __e_acsl_heap_allocated_blocks;
+  behavior fail:
+    assumes cannot_allocate: !is_allocable(size);
+    assigns __e_acsl_heap_allocation_size \from __e_acsl_heap_allocation_size;
+    assigns __e_acsl_heap_allocated_blocks \from __e_acsl_heap_allocated_blocks;
  */
 void * realloc(void * ptr, size_t size)
   __attribute__((FC_BUILTIN));
@@ -112,6 +154,14 @@ void * realloc(void * ptr, size_t size)
 /*@
   assigns __e_acsl_heap_allocation_size \from __e_acsl_heap_allocation_size;
   assigns __e_acsl_heap_allocated_blocks \from __e_acsl_heap_allocated_blocks;
+  behavior deallocation:
+    assumes  nonnull_p: ptr != \null;
+    assigns __e_acsl_heap_allocation_size \from __e_acsl_heap_allocation_size;
+    assigns __e_acsl_heap_allocated_blocks \from __e_acsl_heap_allocated_blocks;
+  behavior no_deallocation:
+    assumes  null_p: ptr == \null;
+    assigns __e_acsl_heap_allocation_size \from __e_acsl_heap_allocation_size;
+    assigns __e_acsl_heap_allocated_blocks \from __e_acsl_heap_allocated_blocks;
  */
 void free(void * ptr)
   __attribute__((FC_BUILTIN));
@@ -137,6 +187,14 @@ void *aligned_alloc(size_t alignment, size_t size)
 /*@
   assigns __e_acsl_heap_allocation_size \from indirect:alignment, size, __e_acsl_heap_allocation_size;
   assigns __e_acsl_heap_allocated_blocks \from indirect:alignment, size, __e_acsl_heap_allocated_blocks;
+  behavior allocation:
+    assumes can_allocate: is_allocable(size);
+    assigns __e_acsl_heap_allocation_size \from indirect:alignment, size, __e_acsl_heap_allocation_size;
+    assigns __e_acsl_heap_allocated_blocks \from indirect:alignment, size, __e_acsl_heap_allocated_blocks;
+  behavior no_allocation:
+    assumes cannot_allocate: !is_allocable(size);
+    assigns __e_acsl_heap_allocation_size \from indirect:alignment, size, __e_acsl_heap_allocation_size;
+    assigns __e_acsl_heap_allocated_blocks \from indirect:alignment, size, __e_acsl_heap_allocated_blocks;
  */
 int posix_memalign(void **memptr, size_t alignment, size_t size)
   __attribute__((FC_BUILTIN));
-- 
GitLab


From 26595e9fc41101a70102ff0a6f30849eaeb0318f Mon Sep 17 00:00:00 2001
From: Basile Desloges <basile.desloges@cea.fr>
Date: Tue, 19 Jan 2021 18:04:11 +0100
Subject: [PATCH 141/141] [eacsl] Update tests

---
 src/plugins/e-acsl/tests/memory/memsize.c     |  3 +-
 .../tests/memory/oracle_ci/gen_memalign.c     |  6 ++
 .../tests/memory/oracle_ci/gen_memsize.c      | 30 ++++-----
 .../tests/memory/oracle_ci/memsize.res.oracle | 67 +++++++++++++++++--
 4 files changed, 86 insertions(+), 20 deletions(-)

diff --git a/src/plugins/e-acsl/tests/memory/memsize.c b/src/plugins/e-acsl/tests/memory/memsize.c
index c214b60ebd4..2260a306878 100644
--- a/src/plugins/e-acsl/tests/memory/memsize.c
+++ b/src/plugins/e-acsl/tests/memory/memsize.c
@@ -1,5 +1,6 @@
-/* run.config
+/* run.config_ci
    COMMENT: Checking heap memory size
+   STDOPT: +"-eva-no-builtins-auto"
 */
 
 #include <stdlib.h>
diff --git a/src/plugins/e-acsl/tests/memory/oracle_ci/gen_memalign.c b/src/plugins/e-acsl/tests/memory/oracle_ci/gen_memalign.c
index 594eb809025..86b350d6bcd 100644
--- a/src/plugins/e-acsl/tests/memory/oracle_ci/gen_memalign.c
+++ b/src/plugins/e-acsl/tests/memory/oracle_ci/gen_memalign.c
@@ -40,6 +40,12 @@ extern int __e_acsl_sound_verdict;
  */
 int __gen_e_acsl_posix_memalign(void **memptr, size_t alignment, size_t size);
 
+/*@ assigns __e_acsl_heap_allocation_size, __e_acsl_heap_allocated_blocks;
+    assigns __e_acsl_heap_allocation_size
+      \from (indirect: alignment), size, __e_acsl_heap_allocation_size;
+    assigns __e_acsl_heap_allocated_blocks
+      \from (indirect: alignment), size, __e_acsl_heap_allocated_blocks;
+ */
 void *aligned_alloc(size_t alignment, size_t size);
 
 int main(int argc, char const **argv)
diff --git a/src/plugins/e-acsl/tests/memory/oracle_ci/gen_memsize.c b/src/plugins/e-acsl/tests/memory/oracle_ci/gen_memsize.c
index 134e80f8daf..d31fa69d2a5 100644
--- a/src/plugins/e-acsl/tests/memory/oracle_ci/gen_memsize.c
+++ b/src/plugins/e-acsl/tests/memory/oracle_ci/gen_memsize.c
@@ -11,73 +11,73 @@ int main(int argc, char **argv)
   char *a = malloc((unsigned long)7);
   __e_acsl_assert(__e_acsl_heap_allocation_size == 7UL,"Assertion","main",
                   "__e_acsl_heap_allocation_size == 7",
-                  "tests/memory/memsize.c",14);
+                  "tests/memory/memsize.c",15);
   /*@ assert __e_acsl_heap_allocation_size ≡ 7; */ ;
   char *b = malloc((unsigned long)14);
   __e_acsl_assert(__e_acsl_heap_allocation_size == 21UL,"Assertion","main",
                   "__e_acsl_heap_allocation_size == 21",
-                  "tests/memory/memsize.c",16);
+                  "tests/memory/memsize.c",17);
   /*@ assert __e_acsl_heap_allocation_size ≡ 21; */ ;
   free((void *)a);
   __e_acsl_assert(__e_acsl_heap_allocation_size == 14UL,"Assertion","main",
                   "__e_acsl_heap_allocation_size == 14",
-                  "tests/memory/memsize.c",20);
+                  "tests/memory/memsize.c",21);
   /*@ assert __e_acsl_heap_allocation_size ≡ 14; */ ;
   a = (char *)0;
   free((void *)a);
   __e_acsl_assert(__e_acsl_heap_allocation_size == 14UL,"Assertion","main",
                   "__e_acsl_heap_allocation_size == 14",
-                  "tests/memory/memsize.c",25);
+                  "tests/memory/memsize.c",26);
   /*@ assert __e_acsl_heap_allocation_size ≡ 14; */ ;
   b = (char *)realloc((void *)b,(unsigned long)9);
   __e_acsl_assert(__e_acsl_heap_allocation_size == 9UL,"Assertion","main",
                   "__e_acsl_heap_allocation_size == 9",
-                  "tests/memory/memsize.c",29);
+                  "tests/memory/memsize.c",30);
   /*@ assert __e_acsl_heap_allocation_size ≡ 9; */ ;
   b = (char *)realloc((void *)b,(unsigned long)18);
   __e_acsl_assert(__e_acsl_heap_allocation_size == 18UL,"Assertion","main",
                   "__e_acsl_heap_allocation_size == 18",
-                  "tests/memory/memsize.c",33);
+                  "tests/memory/memsize.c",34);
   /*@ assert __e_acsl_heap_allocation_size ≡ 18; */ ;
   b = (char *)realloc((void *)b,(unsigned long)0);
   b = (char *)0;
   __e_acsl_assert(__e_acsl_heap_allocation_size == 0UL,"Assertion","main",
                   "__e_acsl_heap_allocation_size == 0",
-                  "tests/memory/memsize.c",38);
+                  "tests/memory/memsize.c",39);
   /*@ assert __e_acsl_heap_allocation_size ≡ 0; */ ;
   b = (char *)realloc((void *)b,(unsigned long)8);
   __e_acsl_assert(__e_acsl_heap_allocation_size == 8UL,"Assertion","main",
                   "__e_acsl_heap_allocation_size == 8",
-                  "tests/memory/memsize.c",42);
+                  "tests/memory/memsize.c",43);
   /*@ assert __e_acsl_heap_allocation_size ≡ 8; */ ;
   b = (char *)realloc((void *)0,(unsigned long)8);
   __e_acsl_assert(__e_acsl_heap_allocation_size == 16UL,"Assertion","main",
                   "__e_acsl_heap_allocation_size == 16",
-                  "tests/memory/memsize.c",46);
+                  "tests/memory/memsize.c",47);
   /*@ assert __e_acsl_heap_allocation_size ≡ 16; */ ;
   b = (char *)realloc((void *)0,18446744073709551615UL);
   __e_acsl_assert(__e_acsl_heap_allocation_size == 16UL,"Assertion","main",
                   "__e_acsl_heap_allocation_size == 16",
-                  "tests/memory/memsize.c",50);
+                  "tests/memory/memsize.c",51);
   /*@ assert __e_acsl_heap_allocation_size ≡ 16; */ ;
   __e_acsl_assert(b == (char *)0,"Assertion","main","b == (char *)0",
-                  "tests/memory/memsize.c",51);
+                  "tests/memory/memsize.c",52);
   /*@ assert b ≡ (char *)0; */ ;
   b = (char *)calloc(18446744073709551615UL,18446744073709551615UL);
   __e_acsl_assert(__e_acsl_heap_allocation_size == 16UL,"Assertion","main",
                   "__e_acsl_heap_allocation_size == 16",
-                  "tests/memory/memsize.c",55);
+                  "tests/memory/memsize.c",56);
   /*@ assert __e_acsl_heap_allocation_size ≡ 16; */ ;
   __e_acsl_assert(b == (char *)0,"Assertion","main","b == (char *)0",
-                  "tests/memory/memsize.c",56);
+                  "tests/memory/memsize.c",57);
   /*@ assert b ≡ (char *)0; */ ;
   b = (char *)malloc(18446744073709551615UL);
   __e_acsl_assert(__e_acsl_heap_allocation_size == 16UL,"Assertion","main",
                   "__e_acsl_heap_allocation_size == 16",
-                  "tests/memory/memsize.c",60);
+                  "tests/memory/memsize.c",61);
   /*@ assert __e_acsl_heap_allocation_size ≡ 16; */ ;
   __e_acsl_assert(b == (char *)0,"Assertion","main","b == (char *)0",
-                  "tests/memory/memsize.c",61);
+                  "tests/memory/memsize.c",62);
   /*@ assert b ≡ (char *)0; */ ;
   __retres = 0;
   __e_acsl_memory_clean();
diff --git a/src/plugins/e-acsl/tests/memory/oracle_ci/memsize.res.oracle b/src/plugins/e-acsl/tests/memory/oracle_ci/memsize.res.oracle
index 2db55f248cb..68e3cc47739 100644
--- a/src/plugins/e-acsl/tests/memory/oracle_ci/memsize.res.oracle
+++ b/src/plugins/e-acsl/tests/memory/oracle_ci/memsize.res.oracle
@@ -1,7 +1,66 @@
 [e-acsl] beginning translation.
 [e-acsl] translation done in project "e-acsl".
-[eva:alarm] tests/memory/memsize.c:14: Warning: 
+[eva] tests/memory/memsize.c:14: Warning: ignoring unsupported \allocates clause
+[eva:alarm] tests/memory/memsize.c:15: Warning: 
+  function __e_acsl_assert: precondition got status unknown.
+[eva:alarm] tests/memory/memsize.c:15: Warning: assertion got status unknown.
+[eva] tests/memory/memsize.c:16: Warning: ignoring unsupported \allocates clause
+[eva:alarm] tests/memory/memsize.c:17: Warning: 
+  function __e_acsl_assert: precondition got status unknown.
+[eva:alarm] tests/memory/memsize.c:17: Warning: assertion got status unknown.
+[eva] tests/memory/memsize.c:20: Warning: ignoring unsupported \allocates clause
+[eva:alarm] tests/memory/memsize.c:20: Warning: 
+  function free: precondition 'freeable' got status unknown.
+[eva:alarm] tests/memory/memsize.c:21: Warning: 
+  function __e_acsl_assert: precondition got status unknown.
+[eva:alarm] tests/memory/memsize.c:21: Warning: assertion got status unknown.
+[eva] tests/memory/memsize.c:25: Warning: ignoring unsupported \allocates clause
+[eva:alarm] tests/memory/memsize.c:26: Warning: 
+  function __e_acsl_assert: precondition got status unknown.
+[eva:alarm] tests/memory/memsize.c:26: Warning: assertion got status unknown.
+[eva] FRAMAC_SHARE/libc/stdlib.h:452: Warning: 
+  no 'assigns \result \from ...' clause specified for function realloc
+[eva] tests/memory/memsize.c:29: Warning: ignoring unsupported \allocates clause
+[eva:alarm] tests/memory/memsize.c:29: Warning: 
+  function realloc: precondition 'freeable' got status unknown.
+[eva:alarm] tests/memory/memsize.c:30: Warning: 
+  function __e_acsl_assert: precondition got status unknown.
+[eva:alarm] tests/memory/memsize.c:30: Warning: assertion got status unknown.
+[eva] tests/memory/memsize.c:33: Warning: ignoring unsupported \allocates clause
+[eva:alarm] tests/memory/memsize.c:33: Warning: 
+  function realloc: precondition 'freeable' got status unknown.
+[eva:alarm] tests/memory/memsize.c:34: Warning: 
+  function __e_acsl_assert: precondition got status unknown.
+[eva:alarm] tests/memory/memsize.c:34: Warning: assertion got status unknown.
+[eva] tests/memory/memsize.c:37: Warning: ignoring unsupported \allocates clause
+[eva:alarm] tests/memory/memsize.c:37: Warning: 
+  function realloc: precondition 'freeable' got status unknown.
+[eva:alarm] tests/memory/memsize.c:39: Warning: 
+  function __e_acsl_assert: precondition got status unknown.
+[eva:alarm] tests/memory/memsize.c:39: Warning: assertion got status unknown.
+[eva] tests/memory/memsize.c:42: Warning: ignoring unsupported \allocates clause
+[eva:alarm] tests/memory/memsize.c:43: Warning: 
+  function __e_acsl_assert: precondition got status unknown.
+[eva:alarm] tests/memory/memsize.c:43: Warning: assertion got status unknown.
+[eva] tests/memory/memsize.c:46: Warning: ignoring unsupported \allocates clause
+[eva:alarm] tests/memory/memsize.c:47: Warning: 
+  function __e_acsl_assert: precondition got status unknown.
+[eva:alarm] tests/memory/memsize.c:47: Warning: assertion got status unknown.
+[eva] tests/memory/memsize.c:50: Warning: ignoring unsupported \allocates clause
+[eva:alarm] tests/memory/memsize.c:51: Warning: 
+  function __e_acsl_assert: precondition got status unknown.
+[eva:alarm] tests/memory/memsize.c:51: Warning: assertion got status unknown.
+[eva:alarm] tests/memory/memsize.c:52: Warning: 
+  function __e_acsl_assert: precondition got status unknown.
+[eva] FRAMAC_SHARE/libc/stdlib.h:385: Warning: 
+  no 'assigns \result \from ...' clause specified for function calloc
+[eva] tests/memory/memsize.c:55: Warning: ignoring unsupported \allocates clause
+[eva:alarm] tests/memory/memsize.c:56: Warning: 
+  function __e_acsl_assert: precondition got status unknown.
+[eva:alarm] tests/memory/memsize.c:56: Warning: assertion got status unknown.
+[eva] tests/memory/memsize.c:60: Warning: ignoring unsupported \allocates clause
+[eva:alarm] tests/memory/memsize.c:61: Warning: 
+  function __e_acsl_assert: precondition got status unknown.
+[eva:alarm] tests/memory/memsize.c:61: Warning: assertion got status unknown.
+[eva:alarm] tests/memory/memsize.c:62: Warning: 
   function __e_acsl_assert: precondition got status unknown.
-[eva:alarm] tests/memory/memsize.c:14: Warning: assertion got status unknown.
-[eva:alarm] tests/memory/memsize.c:16: Warning: 
-  function __e_acsl_assert: precondition got status invalid.
-- 
GitLab