Module Absint.ProcCfg

module type NodeCommonS = sig ... end
module InstrNode : sig ... end
module type Node = sig ... end
module type S = sig ... end
module DefaultNode : Node with type t = IR.Procdesc.Node.t and type id = IR.Procdesc.Node.id
module Normal : S with type t = IR.Procdesc.t and module Node = DefaultNode and type instrs_dir = IR.Instrs.not_reversed

Forward CFG with no exceptional control-flow

module Exceptional : S with type t = IR.Procdesc.t * DefaultNode.t list IR.Procdesc.IdMap.t and module Node = DefaultNode and type instrs_dir = IR.Instrs.not_reversed

Forward CFG with exceptional control-flow

module Backward : functor (Base : S with type instrs_dir = IR.Instrs.not_reversed) -> S with type t = Base.t and module Node = Base.Node and type instrs_dir = IR.Instrs.reversed

Wrapper that reverses the direction of the CFG

module OneInstrPerNode : functor (Base : S with module Node = DefaultNode) -> sig ... end
module NormalOneInstrPerNode : module type of sig ... end
module MakeOcamlGraph : functor (Base : S) -> sig ... end