Module Components.Component


module Component: sig .. end

module M: Map.Make(Components.NodeKf)

type fwd_kind =
| Impact
| Security

type kind =
| Direct
| Indirect_Backward
| Forward of fwd_kind

type value = {
   pdg : Db.Pdg.t;
   mutable callstack_length : int;
   mutable direct : bool;
   mutable indirect_backward : bool;
   mutable forward : bool;
}
type t = value M.t 
val is_direct : value -> bool
val is_indirect_backward : value -> bool
val is_forward : value -> bool
val check_and_add : bool ->
M.key ->
kind ->
Db.Pdg.t ->
int ->
value M.t ->
bool * value M.t
Returns found, new_already with:
val one_step_related_nodes : kind -> Db.Pdg.t -> Db.Pdg.t_node -> Db.Pdg.t_node list
val search_input : kind -> Kernel_function.t -> 'a list Lazy.t -> 'a list
val add_from_deep : Db_types.kernel_function ->
Components.Todolist.t -> Db.Pdg.t_node -> Components.Todolist.t
val forward_caller : Db_types.kernel_function ->
Db.Pdg.t_node -> Components.Todolist.t -> Components.Todolist.t
val related_nodes_of_nodes : kind ->
value M.t ->
Components.Todolist.t -> value M.t
val initial_nodes : Db_types.kernel_function -> Cil_types.stmt -> Components.Todolist.todo list
val direct : Db_types.kernel_function ->
Cil_types.stmt -> value M.t
val backward : Db_types.kernel_function ->
Cil_types.stmt -> value M.t
val whole : Db_types.kernel_function ->
Cil_types.stmt -> value M.t
val forward : fwd_kind ->
Db_types.kernel_function -> Cil_types.stmt -> Cilutil.StmtSet.elt list
val get_component : kind -> Cil_types.stmt -> Cilutil.StmtSet.elt list
val iter : bool ->
(M.key -> unit) ->
Db_types.kernel_function -> Cil_types.stmt -> unit