package frama-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
 - 
  
    
    NNicolas Stouls
 - 
  
    
    KKostyantyn Vorobyov
 - 
  
    
    BBoris Yakobowski
 
Maintainers
Sources
sha256=095ffbb3086a6cd963a03e3defab4f0dc32e9a43f026e552ec9ae346a6e20522
    
    
  doc/frama-c.kernel/Frama_c_kernel/Ast_diff/index.html
Module Frama_c_kernel.Ast_diff
Compute diff information from an existing project.
module Orig_project : State_builder.Option_ref with type data = Project.tthe original project from which a diff is computed.
type 'a correspondence = [ | `Same of 'a(*symbol with identical definition has been found.
*)| `Not_present(*no correspondence
*)
 ]possible correspondences between new items and original ones.
type partial_correspondence = [ | `Spec_changed(*body and callees haven't changed
*)| `Body_changed(*spec hasn't changed
*)| `Callees_changed(*spec and body haven't changed
*)| `Callees_spec_changed(*body hasn't changed
*)
 ]for kernel function, we are a bit more precise than a yes/no answer. More precisely, we check whether a function has the same spec, the same body, and whether its callees have changed (provided the body itself is identical, otherwise, there's no point in checking the callees.
module type Correspondence_table = sig ... endmodule Varinfo : 
  Correspondence_table
    with type key = Cil_types.varinfo
     and type data = Cil_types.varinfo correspondencevarinfos correspondences
module Compinfo : 
  Correspondence_table
    with type key = Cil_types.compinfo
     and type data = Cil_types.compinfo correspondencemodule Enuminfo : 
  Correspondence_table
    with type key = Cil_types.enuminfo
     and type data = Cil_types.enuminfo correspondencemodule Enumitem : 
  Correspondence_table
    with type key = Cil_types.enumitem
     and type data = Cil_types.enumitem correspondencemodule Typeinfo : 
  Correspondence_table
    with type key = Cil_types.typeinfo
     and type data = Cil_types.typeinfo correspondencemodule Stmt : 
  Correspondence_table
    with type key = Cil_types.stmt
     and type data = Cil_types.stmt code_correspondencemodule Logic_info : 
  Correspondence_table
    with type key = Cil_types.logic_info
     and type data = Cil_types.logic_info correspondencemodule Logic_type_info : 
  Correspondence_table
    with type key = Cil_types.logic_type_info
     and type data = Cil_types.logic_type_info correspondencemodule Logic_ctor_info : 
  Correspondence_table
    with type key = Cil_types.logic_ctor_info
     and type data = Cil_types.logic_ctor_info correspondencemodule Fieldinfo : 
  Correspondence_table
    with type key = Cil_types.fieldinfo
     and type data = Cil_types.fieldinfo correspondencemodule Model_info : 
  Correspondence_table
    with type key = Cil_types.model_info
     and type data = Cil_types.model_info correspondencemodule Logic_var : 
  Correspondence_table
    with type key = Cil_types.logic_var
     and type data = Cil_types.logic_var correspondencemodule Kernel_function : 
  Correspondence_table
    with type key = Cil_types.kernel_function
     and type data = Cil_types.kernel_function code_correspondencemodule Fundec : 
  Correspondence_table
    with type key = Cil_types.fundec
     and type data = Cil_types.fundec correspondenceval is_same_list : 
  ('a -> 'a -> is_same_env -> bool) ->
  'a list ->
  'a list ->
  is_same_env ->
  boolval is_same_term : Cil_types.term -> Cil_types.term -> is_same_env -> boolval is_same_predicate : 
  Cil_types.predicate ->
  Cil_types.predicate ->
  is_same_env ->
  boolval set_extension_diff : 
  is_same_ext:
    (plugin:string ->
      string ->
      Cil_types.acsl_extension_kind ->
      Cil_types.acsl_extension_kind ->
      is_same_env ->
      bool) ->
  unitperforms a comparison of AST between the current and the original project, which must have been set beforehand.
val compare_from_prj : Project.t -> unitcompare_from_prj prj sets prj as the original project and fill the tables.