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
 - 
  
    
    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
 - 
  
    
    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
 - 
  
    
    NNicolas Stouls
 - 
  
    
    KKostyantyn Vorobyov
 - 
  
    
    BBoris Yakobowski
 
Maintainers
Sources
  
    
      frama-c-30.0-Zinc.tar.gz
    
    
        
    
  
  
  
    
  
        sha256=3ac0f995261ec829a7bd042bf70fc29ac6379029eb9df30bcc044748eb4d2a56
    
    
  doc/src/frama-c-wp.core/Probe.ml.html
Source file Probe.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(**************************************************************************) (* *) (* This file is part of WP plug-in of Frama-C. *) (* *) (* Copyright (C) 2007-2024 *) (* CEA (Commissariat a l'energie atomique et aux energies *) (* 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). *) (* *) (**************************************************************************) open Cil_types (* -------------------------------------------------------------------------- *) (* --- User-Defined Probes --- *) (* -------------------------------------------------------------------------- *) type probe = { id : int; name : string ; stmt : stmt option ; loc : location ; } let create = let id = ref (-1) in fun ~loc ?stmt ~name () -> incr id; { id = !id ; loc ; stmt ; name } module S = struct include Datatype.Undefined let name = "WP.Conditions.Probe.t" let reprs = [{ loc = Cil_datatype.Location.unknown; stmt = None; name = ""; id=1 }] type t = probe let hash x = x.id let equal x y = Int.equal x.id y.id let compare x y = Int.compare y.id x.id (* lastly created first (wp) *) let pretty fmt p = if Wp_parameters.debug_atleast 1 then Format.fprintf fmt "%s#%d" p.name p.id else Format.fprintf fmt "%s" p.name end include Datatype.Make_with_collections(S) (* -------------------------------------------------------------------------- *) (* --- ACSL Extension --- *) (* -------------------------------------------------------------------------- *) let rec name_of_host = function | TVar { lv_name = x } -> x | TResult _ -> "result" (* currently not used, but could be one day *) | TMem t -> name_of_term t and name_of_term (t : term) = match t.term_name with a::_ -> a | _ -> match t.term_node with | TLval (lh,_) | TAddrOf (lh,_) | TStartOf (lh,_) -> name_of_host lh | _ -> raise Not_found let annotations stmt = let collect _emitter annot acc = match annot.annot_content with | Cil_types.AExtended (_, _, { ext_name="probe" ; ext_kind=Ext_terms ps ; }) -> List.rev_append ps acc | _ -> acc in let mk_probe t = try name_of_term t, t with Not_found -> Wp_parameters.abort ~source:(fst t.term_loc) "Missing name for probe, use @probe A: term;" in List.rev_map mk_probe (Annotations.fold_code_annot collect stmt []) let parse_probe : Acsl_extension.extension_typer = fun context _loc terms -> (* use default context of the code-annotation (like an assert clause) *) let parse_term = context.type_term context context.pre_state in Ext_terms (List.map parse_term terms) let registered = ref false let register () = if not !registered && Wp_parameters.Probes.get () then begin registered := true ; Acsl_extension.register_code_annot ~plugin:"wp" "probe" parse_probe false ; end let () = Cmdline.run_after_configuring_stage register (* -------------------------------------------------------------------------- *)
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >