package codex
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
The Codex library for building static analysers based on abstract interpretation
Install
dune-project
Dependency
Authors
Maintainers
Sources
1.0-rc4.tar.gz
md5=bc7266a140c6886add673ede90e335d3
sha512=8da42c0ff2c1098c5f9cb2b5b43b306faf7ac93b8f5ae00c176918cee761f249ff45b29309f31a05bbcf6312304f86a0d5a000eb3f1094d3d3c2b9b4c7f5c386
doc/src/codex.whilelib/analysis_sva.ml.html
Source file analysis_sva.ml
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(**************************************************************************) (* This file is part of the Codex semantics library. *) (* *) (* Copyright (C) 2013-2025 *) (* 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 LICENSE). *) (* *) (**************************************************************************) (** This module presents the implementation of a simple example analyzer for {{!While_ast}the while language}. It is detailed in the While tutorial's {!page-chapter3}. *) module Var = While_ast.Var module Log = Tracelog.Make(struct let category = "IntvAnalysis" end) (* $MDX part-begin=sva *) module SVA_Ival = Single_value_abstraction.Ival module SVA_Bval = Single_value_abstraction.Quadrivalent (* $MDX part-end *) (* $MDX part-begin=sva_state *) module State = PatriciaTree.MakeMap(Var) type sva_state = SVA_Ival.integer State.t (* $MDX part-end *) let map_pp pp fmt store = Format.fprintf fmt "{@[<hov>%a@]}" (State.pretty ~pp_sep:(fun fmt () -> Format.fprintf fmt ";@ ") (fun fmt key value -> Format.fprintf fmt "@[%a -> %a@]" Var.pp key pp value)) store let state_pp = map_pp Framac_ival.Ival.pretty (* $MDX part-begin=initial_state *) let initial_state() = State.empty (* $MDX part-end *) (* $MDX part-begin=expression_sva *) let rec expression_sva : sva_state -> While_ast.aexp -> SVA_Ival.integer = fun state exp -> let open While_ast in match exp with | Var v -> State.find v state | Int c -> SVA_Ival.Integer_Forward.iconst (Z.of_int c) | Add(e1,e2) -> SVA_Ival.Integer_Forward.iadd (expression_sva state e1) (expression_sva state e2) | Sub(e1,e2) -> SVA_Ival.Integer_Forward.isub (expression_sva state e1) (expression_sva state e2) | Mul(e1,e2) -> SVA_Ival.Integer_Forward.imul (expression_sva state e1) (expression_sva state e2) (* $MDX part-end *) (* $MDX part-begin=bexpression_sva *) let rec bexpression_sva : sva_state -> While_ast.bexp -> SVA_Bval.boolean = fun state exp -> let open While_ast in match exp with | True -> SVA_Bval.Boolean_Forward.true_ | False -> SVA_Bval.Boolean_Forward.false_ | Le (e1, e2) -> SVA_Ival.Integer_Forward.ile (expression_sva state e1) (expression_sva state e2) | Eq (e1, e2) -> SVA_Ival.Integer_Forward.ieq (expression_sva state e1) (expression_sva state e2) | Not e1 -> SVA_Bval.Boolean_Forward.not (bexpression_sva state e1) | And (e1, e2) -> SVA_Bval.Boolean_Forward.(&&) (bexpression_sva state e1) (bexpression_sva state e2) | Gt (e1, e2) -> SVA_Bval.Boolean_Forward.not @@ SVA_Ival.Integer_Forward.ile (expression_sva state e1) (expression_sva state e2) (* $MDX part-end *) (* $MDX part-begin=join *) let join s1 s2 = State.idempotent_inter (fun _ v1 v2 -> SVA_Ival.Integer_Lattice.join v1 v2) s1 s2 let widen s1 s2 = State.idempotent_inter (fun _ v1 v2 -> SVA_Ival.Integer_Lattice.widen ~previous:v1 v2) s1 s2 (* $MDX part-end *) (* $MDX part-begin=inter *) let inter s1 s2 = State.idempotent_union (fun _ v1 v2 -> SVA_Ival.Integer_Lattice.inter v1 v2) s1 s2 (* $MDX part-end *) (* $MDX part-begin=includes *) let includes: sva_state -> sva_state -> bool = fun l r -> State.reflexive_subset_domain_for_all2 (fun _ a b -> SVA_Ival.Integer_Lattice.includes a b) l r (* $MDX part-end *) (* $MDX part-begin=command_sva *) let rec analyze_stmt : sva_state -> While_ast.stmt -> sva_state = fun state stmt -> let open While_ast in Log.trace (fun p -> p "Statement: %a" While_ast.pp_stmt stmt) ~pp_ret:state_pp @@ fun () -> match stmt with | Skip -> state | Assign(var,exp) -> let v = expression_sva state exp in State.add var v state | Seq (c1,c2) -> let state' = analyze_stmt state c1 in analyze_stmt state' c2 | If (cond, if_true, if_false) -> begin match bexpression_sva state cond with | True -> analyze_stmt state if_true | False -> analyze_stmt state if_false | Bottom -> state (* Should be unreachable *) | Top -> (* analyze both, then join the results *) let true_state = analyze_stmt state if_true in let false_state = analyze_stmt state if_false in join true_state false_state end | While (cond, body) -> begin match bexpression_sva state cond with | False -> state (* no need to execute the body *) | Bottom -> state (* Should be unreachable *) | Top | True -> let next = analyze_stmt state body in if includes state next then state (* fixpoint reached *) else analyze_stmt (widen state (join state next)) stmt end (* $MDX part-end *) (* $MDX part-begin=refine_aexp *) let rec refine_aexp : sva_state -> While_ast.aexp -> SVA_Ival.integer -> sva_state = fun state exp result -> match exp with | Var v -> State.add v (SVA_Ival.Integer_Lattice.inter result (State.find v state)) state | Int c -> state | Add(e1,e2) -> let (v1, v2) = SVA_Ival.Integer_Backward.iadd (expression_sva state e1) (expression_sva state e2) result in let state = match v1 with Some v -> refine_aexp state e1 v | None -> state in let state = match v2 with Some v -> refine_aexp state e2 v | None -> state in state | Sub(e1,e2) -> let (v1, v2) = SVA_Ival.Integer_Backward.isub (expression_sva state e1) (expression_sva state e2) result in let state = match v1 with Some v -> refine_aexp state e1 v | None -> state in let state = match v2 with Some v -> refine_aexp state e2 v | None -> state in state | Mul(e1,e2) -> let (v1, v2) = SVA_Ival.Integer_Backward.imul (expression_sva state e1) (expression_sva state e2) result in let state = match v1 with Some v -> refine_aexp state e1 v | None -> state in let state = match v2 with Some v -> refine_aexp state e2 v | None -> state in state (* $MDX part-end *) (* $MDX part-begin=refine_bexp *) let rec refine_bexp : sva_state -> While_ast.bexp -> SVA_Bval.boolean -> sva_state = fun state exp result -> match exp with | True | False -> state | Not e1 -> let v = SVA_Bval.Boolean_Backward.not (bexpression_sva state e1) result in begin match v with Some v -> refine_bexp state e1 v | None -> state end | Le (e1, e2) -> let (v1, v2) = SVA_Ival.Integer_Backward.ile (expression_sva state e1) (expression_sva state e2) result in let state = match v1 with Some v -> refine_aexp state e1 v | None -> state in let state = match v2 with Some v -> refine_aexp state e2 v | None -> state in state | Eq (e1, e2) -> let (v1, v2) = SVA_Ival.Integer_Backward.ieq (expression_sva state e1) (expression_sva state e2) result in let state = match v1 with Some v -> refine_aexp state e1 v | None -> state in let state = match v2 with Some v -> refine_aexp state e2 v | None -> state in state | And (e1, e2) -> let (v1, v2) = SVA_Bval.Boolean_Backward.(&&) (bexpression_sva state e1) (bexpression_sva state e2) result in let state = match v1 with Some v -> refine_bexp state e1 v | None -> state in let state = match v2 with Some v -> refine_bexp state e2 v | None -> state in state | Gt (e1, e2) -> refine_bexp state (Not(Le(e1,e2))) result (* $MDX part-end *) let rec analyze_stmt_refine : sva_state -> While_ast.stmt -> sva_state = fun state stmt -> let open While_ast in Log.trace (fun p -> p "Statement: %a" While_ast.pp_stmt stmt) ~pp_ret:state_pp @@ fun () -> match stmt with | Skip -> state | Assign(var,exp) -> let v = expression_sva state exp in State.add var v state | Seq (c1,c2) -> let state' = analyze_stmt_refine state c1 in analyze_stmt_refine state' c2 (* $MDX part-begin=command_sva_refine *) | If (cond, if_true, if_false) -> begin match bexpression_sva state cond with (* no refinement possible when the value is known *) | True -> analyze_stmt_refine state if_true | False -> analyze_stmt_refine state if_false | Bottom -> state (* Should be unreachable *) | Top -> (* analyze both, then join the results *) let true_state = analyze_stmt_refine (refine_bexp state cond True) if_true in let false_state = analyze_stmt_refine (refine_bexp state cond False) if_false in join true_state false_state end | While (cond, body) -> let cond_value = bexpression_sva state cond in begin match cond_value with | False -> state (* no need to execute the body *) | Bottom -> state (* Should be unreachable *) | Top | True -> let refined_state = if cond_value == Top then refine_bexp state cond True else state in let next = analyze_stmt_refine refined_state body in if includes state next then refine_bexp state cond False (* at the loop exit, the condition is false *) else analyze_stmt_refine (widen state (join state next)) stmt end (* $MDX part-end *)
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>