module Dpd:sig
..end
Dpd
stands for 'dependence'. This object is used as a label on the edges
of the PDG. There are three kinds of dependencies :
Edges label for the Program Dependence Graph.
type
t
type
td =
| |
Ctrl |
| |
Addr |
| |
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