Frama-C API - Eva
Eva public API.
The main modules are:
- Analysis: run the analysis.
- Results: access analysis results, especially the values of expressions and memory locations of lvalues at each program point.
The following modules allow configuring the Eva analysis:
- Parameters: change the configuration of the analysis.
- Eva_annotations: add local annotations to guide the analysis.
- Builtins: register ocaml builtins to be used by the cvalue domain instead of analysing the body of some C functions.
Other modules are for internal use only.
module Analysis : sig ... endmodule Callstack : sig ... endmodule Deps : sig ... endmodule Results : sig ... endEva's result API is a new interface to access the results of an analysis, once it is completed. It may slightly change in the future.
module Parameters : sig ... endConfiguration of the analysis.
module Eva_annotations : sig ... endRegister special annotations to locally guide the Eva analysis:
module Eval : sig ... endmodule Assigns : sig ... endmodule Eva_ast : sig ... endEva Syntax Tree.
module Builtins : sig ... endEva analysis builtins for the cvalue domain, more efficient than their equivalent in C.
module Cvalue_callbacks : sig ... endRegister actions to performed during the Eva analysis, with access to the states of the cvalue domain. This API is for internal use only, and may be modified or removed in a future version. Please contact us if you need to register callbacks to be executed during an Eva analysis.
module Eva_perf : sig ... endStatistics about the analysis performance.
module Logic_inout : sig ... endFunctions used by the Inout and From plugins to interpret predicate and assigns clauses. This API may change according to these plugins development.
module Unit_tests : sig ... endCurrently tested by this module:
module Export : sig ... endmodule Statistics : sig ... endThis module keeps track of statistics collected by Eva during an analysis.
