package frama-c
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Platform dedicated to the analysis of source code written in C
Install
dune-project
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
-
SSylvain Chiron
-
LLoïc Correnson
-
JJulien Crétin
-
PPascal Cuoq
-
ZZaynah Dargaye
-
BBasile Desloges
-
JJean-Christophe Filliâtre
-
PPhilippe Herrmann
-
MMaxime Jacquemin
-
BBenjamin Jorge
-
FFlorent Kirchner
-
AAlexander Kogtenkov
-
RRemi Lazarini
-
TTristan Le Gall
-
KKilyan Le Gallic
-
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
-
CCécile Ruet-Cros
-
JJulien Signoles
-
FFabien Siron
-
NNicolas Stouls
-
HHugo Thievenaz
-
KKostyantyn Vorobyov
-
BBoris Yakobowski
Maintainers
Sources
frama-c-32.0-beta-Germanium.tar.gz
sha256=868d57ef8007fe6c0836cd151d8c294003af34aa678285eff9547662cad36aa3
doc/src/frama-c-eva.core/self.ml.html
Source file self.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(**************************************************************************) (* *) (* SPDX-License-Identifier LGPL-2.1 *) (* Copyright (C) *) (* CEA (Commissariat à l'énergie atomique et aux énergies alternatives) *) (* *) (**************************************************************************) include Plugin.Register (struct let name = "Eva" let shortname = "eva" let help = "automatically computes variation domains for the variables of the program" end) (* Makes the help message of various categories mandatory. *) let register_category ~help = register_category ~help let register_warn_category ~help = register_warn_category ~help let () = add_plugin_output_aliases ~visible:false ~deprecated:true [ "value" ; "val" ] (* Do not add dependencies to Kernel parameters here, but at the top of Parameters. *) let kernel_dependencies = [ Ast.self; Alarms.self; Annotations.code_annot_state; ] let proxy = State_builder.Proxy.(create "eva" Forward kernel_dependencies) let state = State_builder.Proxy.get proxy let clear_results () = Project.clear ~selection:(State_selection.with_dependencies state) () (* Current state of the analysis *) type computation_state = NotComputed | Computing | Computed | Aborted module ComputationState = struct let to_string = function | NotComputed -> "NotComputed" | Computing -> "Computing" | Computed -> "Computed" | Aborted -> "Aborted" module Prototype = struct include Datatype.Serializable_undefined type t = computation_state let name = "Eva.Analysis.ComputationState" let pretty fmt s = Format.pp_print_string fmt (to_string s) let reprs = [ NotComputed ; Computing ; Computed ; Aborted ] let dependencies = [ state ] let default () = NotComputed end module Datatype' = Datatype.Make (Prototype) include (State_builder.Ref (Datatype') (Prototype)) end exception Abort let is_computed () = match ComputationState.get () with | Computed | Aborted -> true | NotComputed | Computing -> false (* ----- Debug categories --------------------------------------------------- *) let dkey_initial_state = register_category "initial-state" ~default:true ~help:"at the start of the analysis, \ print the initial value of global variables" let dkey_final_states = register_category "final-states" ~default:true ~help:"at the end of the analysis, print final values inferred \ at the return point of each analyzed function " let dkey_summary = register_category "summary" ~default:true ~help:"print a summary of the analysis at the end, including coverage \ and alarm numbers" let dkey_pointer_comparison = register_category "pointer-comparison" ~help:"messages about the evaluation of pointer comparisons" let dkey_cvalue_domain = register_category "d-cvalue" ~default:true ~help:"print states of the cvalue domain on some user directives" let dkey_iterator = register_category "iterator" ~help:"debug messages about the fixpoint engine on the control-flow graph \ of functions" let dkey_widening = register_category "widening" ~help:"print a message at each point where the analysis applies a widening" let dkey_partition = register_category "partition" ~default:true ~help:"messages about states partitioning" let dkey_split_return = register_category "split-return" ~default:true ~help:"messages related to option -eva-split-return" let dkey_precision_settings = register_category "precision-settings" ~default:true ~help:"messages about the automatic configuration of the analysis by \ option -eva-precision" let dkey_callstacks = register_category "callstacks" ~help:"print the current callstack alongside some messages" let dkey_callstack_hash = register_category "callstack-hash" ~help:"additionally print the current callstack hash in some messages" let dkey_include_string_literal = register_category "include-string-literals" ~help:"when printing a state, \ also include globals representing string literals" (* ----- Warning categories ------------------------------------------------- *) let wkey_alarm = register_warn_category "alarm" ~help:"warnings for each possible undefined behavior detected \ by the analysis" let wkey_locals_escaping = register_warn_category "locals-escaping" ~help:"a pointer p points to an out of scope local variable \ (any use of p also generates an alarm)" let _wkey_garbled_mix = register_warn_category "garbled-mix" ~help:"warnings about very imprecise values inferred for pointers, \ named garbled mix" ~default:Log.Wfeedback let wkey_garbled_mix_write = register_warn_category "garbled-mix:write" ~help:"the interpretation of an assignment creates a garbled mix" ~default:Log.Wfeedback let wkey_garbled_mix_assigns = register_warn_category "garbled-mix:assigns" ~help:"the interpretation of a specification creates a garbled mix" ~default:Log.Wfeedback let wkey_garbled_mix_summary = register_warn_category "garbled-mix:summary" ~help:"list the origins of garbled mix at the end of an analysis" ~default:Log.Wfeedback let _wkey_builtins = register_warn_category "builtins" ~help:"warnings related to builtins used to interpret some libc functions" let wkey_builtins_missing_spec = register_warn_category "builtins:missing-spec" ~help:"the ACSL specification on which a builtin soundness relies is missing" let wkey_builtins_override = register_warn_category "builtins:override" ~help:"a builtin overrides a function definition, which is therefore \ not analyzed" let _wkey_libc = register_warn_category "libc" ~help:"warnings related to the interpretation of the standard C library" let wkey_libc_unsupported_spec = register_warn_category "libc:unsupported-spec" ~help:"the ACSL specification of a libc function is not supported by Eva" let _wkey_loop_unroll = register_warn_category "loop-unroll" ~help:"messages about automatic loop unrolling from option \ -eva-auto-loop-unroll" ~default:Log.Wfeedback let wkey_loop_unroll_auto = register_warn_category "loop-unroll:auto" ~help:"a loop is automatically unrolled by the analysis" let wkey_loop_unroll_partial = register_warn_category "loop-unroll:partial" ~help:"a loop has been partially but not completely unrolled" let wkey_missing_loop_unroll = register_warn_category "loop-unroll:missing" ~help:"a loop has no unroll annotation" ~default:Log.Winactive let wkey_missing_loop_unroll_for = register_warn_category "loop-unroll:missing:for" ~help:"a for loop has no unroll annotation" ~default:Log.Winactive let wkey_signed_overflow = register_warn_category "signed-overflow" ~help:"two's complement is used to interpret a signed overflow \ (when signed overflow alarms are disabled)" let _wkey_assigns = register_warn_category "assigns" ~help:"warnings related to the interpretation of assigns clauses \ in ACSL specification" let wkey_invalid_assigns = register_warn_category "assigns:invalid-location" ~help:"the memory location targeted by an assigns clause is invalid \ in at least one analysis state" ~default:Log.Wfeedback let wkey_missing_assigns = register_warn_category "assigns:missing" ~help:"assigns clauses are missing or incomplete from an ACSL \ specification on which the analysis soundness relies" ~default:Log.Werror let wkey_missing_assigns_result = register_warn_category "assigns:missing-result" ~help:"an assigns \\result clause is missing from an ACSL specification \ on which the analysis soundness relies" let wkey_experimental = register_warn_category "experimental" ~help:"an experimental feature of Eva is enabled" let wkey_unknown_size = register_warn_category "unknown-size" ~help:"the analysis cannot compute the size of a variable, \ which will thus be very imprecise" let wkey_ensures_false = register_warn_category "ensures-false" ~help:"a post-condition evaluates to false; \ there might be an error in the specification" let wkey_watchpoint = register_warn_category "watchpoint" ~help:"undocumented" ~default:Log.Wfeedback let wkey_recursion = register_warn_category "recursion" ~help:"a recursive call is analyzed" ~default:Log.Wfeedback let wkey_acsl = register_warn_category "acsl" ~help:"messages about evaluation of ACSL terms and predicates" ~default:Log.Wfeedback let wkey_acsl_unsupported = register_warn_category "acsl:unsupported" ~help:"messages about ACSL terms not supported by Eva" ~default:Log.Wfeedback (* ----- Log with positions ------------------------------------------------- *) type 'a pretty_printer = ?emitwith:(Log.event -> unit) -> ?once:bool -> ?pos:Position.t -> ?current:bool -> ?source:Fclib.Filepath.position -> ?stacktrace:bool -> ?append:(Format.formatter -> unit) -> ?echo:bool -> ('a,Format.formatter,unit) format -> 'a type ('a,'b) pretty_aborter = ?pos:Position.t -> ?current:bool -> ?source:Fclib.Filepath.position -> ?stacktrace:bool -> ?append:(Format.formatter -> unit) -> ?echo:bool -> ('a,Format.formatter,unit,'b) format4 -> 'a let append_callstack ?(stacktrace=false) ?append ~callstack fmt = let pretty_hash fmt cs = if is_debug_key_enabled dkey_callstack_hash then Format.fprintf fmt "<%a> " Callstack.pretty_hash cs in Option.iter (fun append -> append fmt) append; if stacktrace && is_debug_key_enabled dkey_callstacks then match callstack with | None -> () | Some cs -> (* note: the "\n" before the pretty print of the stack is required by: FRAMAC_LIB/analysis-scripts/make_wrapper.py *) Format.fprintf fmt "@\nstack: @[<hv>%a%a@]" pretty_hash cs Callstack.pretty cs let lift_aborter (aborter : ('a,'b) Log.pretty_aborter) : ('a,'b) pretty_aborter = fun ?pos ?current ?source ?stacktrace ?append -> (* Extract source location *) match pos with | Some pos -> let callstack = Position.callstack pos in let source = Option.value ~default:(Position.pos pos) source (* Append callstack if requested *) and append = append_callstack ?stacktrace ?append ~callstack in aborter ?current:None ~source ~append | None -> let callstack = Callstack.get_current () in let append = append_callstack ?stacktrace ?append ~callstack in aborter ?current ?source ~append let lift_printer (printer : 'a Log.pretty_printer) : 'a pretty_printer = fun ?emitwith ?once -> lift_aborter (printer ?emitwith ?once) let result ?level ?dkey = lift_printer (result ?level ?dkey) let feedback ?ontty ?level ?dkey = lift_printer (feedback ?ontty ?level ?dkey ) let debug ?level ?dkey = lift_printer (debug ?level ?dkey) let warning ?wkey : 'a pretty_printer = lift_printer (warning ?wkey) let alarm ?emitwith = warning ~wkey:wkey_alarm ?emitwith let error ?emitwith = lift_printer error ?emitwith let abort ?pos = lift_aborter abort ?pos let failure ?emitwith = lift_printer failure ?emitwith let fatal ?pos = lift_aborter fatal ?pos
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>