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 -> t
val top : t
val bottom : t
val is_addr : t -> bool
val is_ctrl : t -> bool
val is_data : t -> bool
val adc_value : t -> bool * bool * bool
val is_bottom : t -> bool
val pretty_td : Stdlib.Format.formatter -> td -> unit
val pretty : Stdlib.Format.formatter -> t -> unit