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.smtbackend/smtbackend_smtlib.ml.html
Source file smtbackend_smtlib.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 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358(**************************************************************************) (* 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). *) (* *) (**************************************************************************) include Smtbackend_smtlib_sig module Make(P:PARAM_S) = struct type t = unit -> unit type logic = t type command = t type satisfiable = Sat | Unsat | Unknown;; let pr_int i () = P.print @@ string_of_int i let ar0 str () = P.print "("; P.print str; P.print ")";; let ar1 str (a:t) () = P.print "("; P.print str; P.print " "; a(); P.print ")";; let ar2 str (a:t) (b:t) () = P.print "("; P.print str; P.print " "; a(); P.print " "; b(); P.print ")";; let ar3 str (a:t) (b:t) (c:t) () = P.print "("; P.print str; P.print " "; a(); P.print " "; b(); P.print " "; c(); P.print ")";; let ar_list l () = P.print "("; (match l with | [] -> () | a::b -> a(); b |> List.iter (fun x -> P.print " "; (x()))); P.print ")" ;; let read_sat() = (* P.print "\n"; *) (* P.flush(); *) let input = match input_line P.inc with | exception End_of_file -> Codex_log.fatal "Could not read the solver answer. Is z3 installed?" | input -> input in match input with | "sat" -> Sat | "unsat" -> Unsat | "unknown" -> Codex_log.warning "Non-timeout unknown"; Unknown | "timeout" -> Unknown | _ -> failwith ("input line " ^ input) let check_sat () = ar0 "check-sat" (); P.print "\n"; P.flush(); read_sat() ;; let set_option string = P.print "(set-option "; P.print string; P.print ")\n";; let get_assignment () = ar0 "get-assignment" (); P.print "\n"; P.flush() ;; let qf_uf () = P.print "QF_UF" let qf_lia () = P.print "QF_LIA" let qf_nia () = P.print "QF_NIA" let qf_lra () = P.print "QF_LRA" let qf_auflia () = P.print "QF_AUFLIA" let auflia () = P.print "AUFLIA" let auflira () = P.print "AUFLIRA" let aufnira () = P.print "AUFNIRA" let lra () = P.print "LRA" let qf_idl () = P.print "QF_IDL" let qf_rdl () = P.print "QF_RDL" let qf_ufidl () = P.print "QF_UFIDL" let qf_bv () = P.print "QF_BV" let qf_ax () = P.print "QF_AX" let qf_abv () = P.print "QF_ABV" let qf_aubv () = P.print "QF_AUBV" let horn () = P.print "HORN" let sort str = (fun () -> P.print str) let bool = sort "Bool" let int = sort "Int" let gensym_ctr = ref 0;; let gensym ?name:(name="x") () = let count = !gensym_ctr in incr gensym_ctr; name ^ (string_of_int count) ;; (* When given, the name should alredy be uniquified. Not always true for prevous versions. *) let _gensym_ ?name () = match name with | None -> incr gensym_ctr; "x" ^ (string_of_int !gensym_ctr) | Some "nondet" -> incr gensym_ctr; "x" ^ (string_of_int !gensym_ctr) | Some "var" -> incr gensym_ctr; "x" ^ (string_of_int !gensym_ctr) | Some "mu" -> incr gensym_ctr; "x" ^ (string_of_int !gensym_ctr) | Some name -> name let declare_var ?name sort = let name = gensym() in let pr_name () = P.print name in (* let command () = *) P.print "(declare-fun "; P.print name; P.print " () "; sort(); P.print")\n"; (* command, *) pr_name ;; let define_var ?name sort value = let name = gensym() in let pr_name () = P.print name in (* let command () = *) P.print "(define-fun "; P.print name; P.print " () "; sort(); P.print " "; value(); P.print")\n"; (* command, *)pr_name ;; let let_ ?name (v:unit -> unit) (f:(unit -> unit) -> (unit -> unit)):(unit -> unit) = fun () -> let name = gensym() in let prname = fun () -> P.print name in P.print "(let (("; P.print name; P.print " "; v(); P.print ")) "; f prname (); P.print ")" ;; let quantif str ?name (sort:unit -> unit) (f:(unit -> unit)-> (unit -> unit)) = fun () -> let name = gensym() in let prname = fun () -> P.print name in P.print "("; P.print str; P.print "(("; P.print name; P.print " "; sort(); P.print ")) "; f prname (); P.print ")" ;; let forall = quantif "forall";; let exists = quantif "exists";; let assert_ cond = let () = ar1 "assert" cond () in P.print "\n";; let set_logic log = ar1 "set-logic" log (); P.print "\n";; let (||) = ar2 "or";; let (&&) = ar2 "and";; let (=>) = ar2 "=>";; let not = ar1 "not";; let true_ () = P.print "true";; let false_ () = P.print "false";; let array = ar2 "Array" let select = ar2 "select";; let store = ar3 "store";; (**************** bitvectors ****************) let bitvec int = ar1 "_ BitVec" (pr_int int);; (* let bvlit int = *) let bvult = ar2 "bvult" let bvlshr = ar2 "bvlshr" let bvshl = ar2 "bvshl" let bvurem = ar2 "bvurem" let bvudiv = ar2 "bvudiv" let bvmul = ar2 "bvmul" let bvadd = ar2 "bvadd" let bvor = ar2 "bvor" let bvand = ar2 "bvand" let bvneg = ar1 "bvneg" let bvnot = ar1 "bvnot" let concat = ar2 "concat" let bvlit ~size k () = let x = if Z.geq k Z.zero then k else Z.(+) k @@ Z.shift_left Z.one size in (* If we can use hexadecimal *) if (size land 3) == 0 then begin let u = Z.format "%x" x in let leading_zeroes = (size lsr 2) - (String.length u) in P.print "#x"; for _ = 0 to leading_zeroes - 1 do P.print "0" done; P.print u end else begin (* We use binary *) let u = Z.format "%b" x in let leading_zeroes = size - (String.length u) in P.print "#b"; for _ = 0 to leading_zeroes - 1 do P.print "0" done; P.print u end ;; (* Only works when Integer is provided with Zarith. *) let bvlit ~size (k:Z.t) () = bvlit ~size (Obj.magic k) ();; (* Does not output the right number of zeroes. *) (* let bvlit64 = make_bvlit (Printf.sprintf "%Lx") *) let bvxor = ar2 "bvxor" let bvsdiv = ar2 "bvsdiv" let bvsrem = ar2 "bvsrem" let bvule = ar2 "bvule" let bvslt = ar2 "bvslt" let bvsle = ar2 "bvsle" let bvashr = ar2 "bvashr" let bvsmod = ar2 "bvsmod" let zero_extend i = ar1 @@ "(_ zero_extend " ^ (string_of_int i) ^ ")" let sign_extend i = ar1 @@ "(_ sign_extend " ^ (string_of_int i) ^ ")" let extract ~first ~last = ar1 @@ "(_ extract " ^ (string_of_int last) ^ " " ^ (string_of_int first) ^ ")" (* Muz. *) (* type relation = value t list -> value t *) type relation = (unit -> unit) list -> unit -> unit let declare_rel ?name sorts = let name = gensym ?name () in let pr_name list () = match list with | [] -> P.print name | _ -> P.print ("(" ^ name); List.iter (fun x -> P.print " "; x()) list; P.print ")" in P.print "(declare-rel "; P.print name; P.print " "; ar_list sorts (); P.print")\n"; pr_name,name ;; (* let query rel list = P.print "(query"; ar_list (rel::list) (); P.print ")\n";; *) let query bool = P.print "(query "; bool(); P.print ")\n"; P.flush(); read_sat() let query2 string = P.print "(query "; P.print string; P.print ")\n"; P.flush(); read_sat() let fact conclusion = P.print "(rule "; conclusion(); P.print ")\n" ;; let rule premices conclusion = if premices == [] then fact conclusion else begin P.print "(rule (=> (and "; List.iter (fun x -> P.print"\n "; x()) premices; P.print ")\n "; conclusion(); P.print "))\n" end ;; let and_list = function | [] -> true_ | [x] -> x | l -> begin fun () -> P.print "(and "; List.iter (fun x -> P.print " "; x()) l; P.print ")" end ;; let or_list = function | [] -> false_ | [x] -> x | l -> begin fun () -> P.print "(or "; List.iter (fun x -> P.print " "; x()) l; P.print ")" end ;; let declare_muz_var ?name sort = let name = gensym ?name () in let pr_name () = P.print name in (* let command () = *) P.print "(declare-var "; P.print name; P.print " "; sort(); P.print")\n"; (* command, *) pr_name ;; (**************** Ints ****************) let numeral x () = P.print @@ string_of_int x;; let numeralz x () = P.print @@ Z.to_string x;; let (<) = ar2 "<" let (<=) = ar2 "<=" let (=) = ar2 "=" let modu = ar2 "mod" let div = ar2 "div" let (+) = ar2 "+" let (-) = ar2 "-" let ( * ) = ar2 "*" let neg = ar1 "-" end module Make_Typed(P:PARAM_S):TYPED_S = struct include Make(P) type bitvector type ('a,'b) array type 'a sort = t type 'a value = t end module Make_Untyped(P:PARAM_S):UNTYPED_S = struct include Make(P) type sort = t type value = t end module Make_Untyped_Muz(P:PARAM_S):UNTYPED_MUZ = struct include Make(P) type sort = t type value = t end let with_z3 ?(executable="z3") (f:(module UNTYPED_MUZ) -> 'a) = let executable = "z3" in (* Note: careful with functions that pass the env, as the PATH may be modified, which is problematic on Nix. *) let (pout,pin) = Unix.open_process (executable ^ " -T:" ^ (Codex_config.smt_timeout() |> string_of_int) ^ " -in") in let module SMT = Make_Untyped_Muz(struct let print str = (* Duplicate the output for debugging *) if Codex_config.print_smt_input() then Stdlib.print_string str; Stdlib.output_string pin str;; let inc = pout let flush () = Stdlib.flush pin end ) in f (module SMT:UNTYPED_MUZ);;
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>