You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
847 B
37 lines
847 B
(*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*)
|
|
open! IStd
|
|
|
|
type trace = WrittenTo of PulseTrace.t | Invalid of (PulseInvalidation.t * PulseTrace.t)
|
|
|
|
module ModifiedVar : sig
|
|
type nonempty_action_type = trace * trace list
|
|
|
|
type t = {var: Var.t; trace_list: nonempty_action_type}
|
|
end
|
|
|
|
module ModifiedVarSet : sig
|
|
include AbstractDomain.FiniteSetS with type elt = ModifiedVar.t
|
|
end
|
|
|
|
type t = {modified_params: ModifiedVarSet.t; modified_globals: ModifiedVarSet.t}
|
|
|
|
val pure : t
|
|
|
|
val is_pure : t -> bool
|
|
|
|
type param_source = Formal | Global
|
|
|
|
val add_to_errlog :
|
|
nesting:int
|
|
-> param_source
|
|
-> ModifiedVar.t
|
|
-> Errlog.loc_trace_elem list
|
|
-> Errlog.loc_trace_elem list
|
|
|
|
val join : t -> t -> t
|