sig
  val register_global_state : bool -> t Eval.or_bottom -> unit
  val register_initial_state : Value_types.callstack -> t -> unit
  val register_state_before_stmt :
    Value_types.callstack -> Cil_types.stmt -> t -> unit
  val register_state_after_stmt :
    Value_types.callstack -> Cil_types.stmt -> t -> unit
  val get_global_state : unit -> t Eval.or_bottom
  val get_initial_state : Cil_types.kernel_function -> t Eval.or_bottom
  val get_initial_state_by_callstack :
    Cil_types.kernel_function ->
    t Value_types.Callstack.Hashtbl.t Eval.or_top_or_bottom
  val get_stmt_state : after:bool -> Cil_types.stmt -> t Eval.or_bottom
  val get_stmt_state_by_callstack :
    after:bool ->
    Cil_types.stmt -> t Value_types.Callstack.Hashtbl.t Eval.or_top_or_bottom
  val mark_as_computed : unit -> unit
  val is_computed : unit -> bool
end