package frama-c
Platform dedicated to the analysis of source code written in C
Install
Dune Dependency
Authors
-
MMichele Alberti
-
TThibaud Antignac
-
GGergö Barany
-
PPatrick Baudin
-
NNicolas Bellec
-
TThibaut Benjamin
-
AAllan Blanchard
-
LLionel Blatter
-
FFrançois Bobot
-
RRichard Bonichon
-
VVincent Botbol
-
QQuentin Bouillaguet
-
DDavid Bühler
-
ZZakaria Chihani
-
LLoïc Correnson
-
JJulien Crétin
-
PPascal Cuoq
-
ZZaynah Dargaye
-
BBasile Desloges
-
JJean-Christophe Filliâtre
-
PPhilippe Herrmann
-
MMaxime Jacquemin
-
FFlorent Kirchner
-
AAlexander Kogtenkov
-
RRemi Lazarini
-
TTristan Le Gall
-
JJean-Christophe Léchenet
-
MMatthieu Lemerre
-
DDara Ly
-
DDavid Maison
-
CClaude Marché
-
AAndré Maroneze
-
TThibault Martin
-
FFonenantsoa Maurica
-
MMelody Méaulle
-
BBenjamin Monate
-
YYannick Moy
-
PPierre Nigron
-
AAnne Pacalet
-
VValentin Perrelle
-
GGuillaume Petiot
-
DDario Pinto
-
VVirgile Prevosto
-
AArmand Puccetti
-
FFélix Ridoux
-
VVirgile Robles
-
JJan Rochel
-
MMuriel Roger
-
JJulien Signoles
-
NNicolas Stouls
-
KKostyantyn Vorobyov
-
BBoris Yakobowski
Maintainers
Sources
frama-c-29.0-Copper.tar.gz
sha256=d2fbb3b8d0ff83945872e9e6fa258e934a706360e698dae3b4d5f971addf7493
doc/src/frama-c-e-acsl.core/options.ml.html
Source file options.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
(**************************************************************************) (* *) (* This file is part of the Frama-C's E-ACSL plug-in. *) (* *) (* Copyright (C) 2012-2024 *) (* 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 () = Plugin.is_share_visible () module P = Plugin.Register (struct let name = "E-ACSL" let shortname = "e-acsl" let help = "Executable ANSI/ISO C Specification Language --- runtime \ assertion checker generator" end) include P module Run = False (struct let option_name = "-e-acsl" let help = "generate a new project where E-ACSL annotations are \ translated to executable C code" end) module Project_name = String (struct let option_name = "-e-acsl-project" let help = "the name of the generated project is <prj> \ (default to \"e-acsl\")" let default = "e-acsl" let arg_name = "prj" end) module Valid = False (struct let option_name = "-e-acsl-valid" let help = "translate annotation which have been proven valid" end) module Gmp_only = False (struct let option_name = "-e-acsl-gmp-only" let help = "always use GMP integers instead of C integral types" end) module Temporal_validity = False (struct let option_name = "-e-acsl-temporal-validity" let help = "enable temporal analysis in valid annotations" end) module Validate_format_strings = False (struct let option_name = "-e-acsl-validate-format-strings" let help = "enable runtime validation of stdio.h format functions" end) module Replace_libc_functions = False (struct let option_name = "-e-acsl-replace-libc-functions" let help = "replace some libc functions (such as strcpy) with built-in\ RTL alternatives" end) module Full_mtracking = False (struct let option_name = "-e-acsl-full-mtracking" let help = "maximal memory-related instrumentation" end) let () = Full_mtracking.add_aliases ~deprecated:true [ "-e-acsl-full-mmodel" ] module Builtins = String_set (struct let option_name = "-e-acsl-builtins" let arg_name = "" let help = "C functions which can be used in the E-ACSL specifications" end) module Assert_print_data = True (struct let option_name = "-e-acsl-assert-print-data" let help = "print data contributing to the failed assertion along with \ the runtime error message" end) module Concurrency = False (struct let option_name = "-e-acsl-concurrency" let help = "activate the concurrency support of E-ACSL. The option \ implies -e-acsl-full-mtracking." end) module Functions = Kernel_function_set (struct let option_name = "-e-acsl-functions" let arg_name = "f1, ..., fn" let help = "only annotations in functions f1, ..., fn are checked at \ runtime" end) module Instrument = Kernel_function_set (struct let option_name = "-e-acsl-instrument" let arg_name = "f1, ..., fn" let help = "only instrument functions f1, ..., fn. \ Be aware that runtime verdicts may become partial." end) module Widening_arguments_base = Int (struct let default = 1 let option_name = "-e-acsl-widening-arguments-base" let arg_name = "n" let help = "widening strategy for arguments of recursive functions." end) let () = Widening_arguments_base.set_range ~min:0 ~max:2 module Widening_arguments = String_map (struct include Datatype.Int type key = string let to_string ~key:_ i = match i with | None -> None | Some i -> Some (string_of_int i) let of_string ~key:_ ~prev: _ s = match s with | None -> None | Some s -> Some (int_of_string s) end) (struct let default = Datatype.String.Map.empty let option_name = "-e-acsl-widening-arguments" let arg_name = "" let help = "widening strategy for arguments of functions on a case by case \ basis." end) module Widening_output_base = Int (struct let default = 1 let option_name = "-e-acsl-widening-output-base" let arg_name = "n" let help = "wideining strategy for output of recursive functions." end) let () = Widening_output_base.set_range ~min:0 ~max:2 module Widening_output = String_map (struct include Datatype.Int type key = string let to_string ~key:_ i = match i with | None -> None | Some i -> Some (string_of_int i) let of_string ~key:_ ~prev: _ s = match s with | None -> None | Some s -> Some (int_of_string s) end) (struct let default = Datatype.String.Map.empty let option_name = "-e-acsl-widening-output" let arg_name = "" let help = "widening strategy for output of recursive functions on a case by case basis." end) let parameter_states = [ Valid.self; Gmp_only.self; Full_mtracking.self; Builtins.self; Temporal_validity.self; Validate_format_strings.self; Functions.self; Instrument.self; Widening_arguments_base.self; Widening_arguments.self; Widening_output.self; Widening_output_base.self ] let emitter = Emitter.create "E_ACSL" [ Emitter.Code_annot; Emitter.Funspec ] ~correctness:[ Functions.parameter; Instrument.parameter; Validate_format_strings.parameter; Temporal_validity.parameter ] ~tuning:[ Gmp_only.parameter; Valid.parameter; Replace_libc_functions.parameter; Full_mtracking.parameter; Widening_output_base.parameter; Widening_arguments.parameter; Widening_output_base.parameter; Widening_output.parameter ] let must_visit () = Run.get () module Dkey = struct let prepare = register_category "preparation" let logic_normalizer = register_category "analysis:logic_normalizer" let bound_variables = register_category "analysis:bound_variables" let interval = register_category "analysis:interval_inference" let mtracking = register_category "analysis:memory_tracking" let typing = register_category "analysis:typing" let labels = register_category "analysis:labels" let translation = register_category "translation" let env = register_category "translation:env" end let setup ?(rtl=false) () = (* Variadic translation *) if Plugin.is_present "variadic" then begin let opt_name = "-variadic-translation" in if Dynamic.Parameter.Bool.get opt_name () then begin if rtl then (* If we are translating the RTL project, then we need to deactivate the variadic translation. Indeed since we are translating the RTL in isolation, we do not now if the variadic functions are used by the user project and we cannot monomorphise them accordingly. *) Dynamic.Parameter.Bool.off opt_name () else if Validate_format_strings.get () then begin if Ast.is_computed () then abort "The variadic translation is incompatible with E-ACSL option \ '%s'.@ Please use option '-variadic-no-translation'." Validate_format_strings.option_name; warning ~once:true "deactivating variadic translation"; Dynamic.Parameter.Bool.off opt_name (); end end end; (* Concurrency support *) if Concurrency.get () then begin if Full_mtracking.is_set () && not (Full_mtracking.get ()) then abort "The memory tracking dataflow analysis is incompatible@ \ with the concurrency support of E-ACSL.@ \ Please use option '-e-acsl-full-mtracking'."; if not rtl && not (Full_mtracking.is_set ()) then feedback "Due to the large number of function pointers in concurrent@ \ code, the memory tracking dataflow analysis is deactivated@ \ when activating the concurrency support of E-ACSL."; Full_mtracking.on (); if Temporal_validity.get () then abort "The temporal analysis in valid annotations is incompatible@ \ with the concurrency support of E-ACSL.@ \ Please use '-e-acsl-no-temporal-validity' or '-e-acsl-no-concurrency'@ \ to deactivate one or the other."; if rtl then Kernel.CppExtraArgs.add "-DE_ACSL_CONCURRENCY_PTHREAD" end; (* Additionnal kernel options while parsing the RTL project. *) if rtl then begin Kernel.Keep_unused_specified_functions.off (); Kernel.CppExtraArgs.add (Format.asprintf " -DE_ACSL_MACHDEP=%s" (Kernel.Machdep.get ())); end (* Local Variables: compile-command: "make -C ../../../.." End: *)
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>