package frama-c

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

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.

type t
type td =
  1. | Ctrl
  2. | Addr
  3. | Data
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_dpd : td -> t -> bool
val is_bottom : t -> bool
val is_included : t -> t -> bool
val compare : t -> t -> int
val equal : t -> t -> bool
val combine : t -> t -> t
val add : t -> td -> t
val inter : t -> t -> t
val intersect : t -> t -> bool
val minus : t -> t -> t
val pretty_td : Format.formatter -> td -> unit
val pretty : Format.formatter -> t -> unit