Frama-C API - Dpd
Dpd stands for 'dependence'. This object is used as a label on the edges of the PDG. There are three kinds of dependencies :
- control dependency,
- address dependency,
- data dependency.
An edge can carry one or several kinds. A bottom edge means that there are no relation.
val make : ?a:bool -> ?d:bool -> ?c:bool -> unit -> tval top : tval bottom : tval is_addr : t -> boolval is_ctrl : t -> boolval is_data : t -> boolval adc_value : t -> bool * bool * boolval is_bottom : t -> boolval pretty_td : Stdlib.Format.formatter -> td -> unitval pretty : Stdlib.Format.formatter -> t -> unit