Module Concurrency.StarvationDomain
module ThreadDomain : sig ... end
Domain for thread-type. The main goals are
module Lock : sig ... end
Abstract address for a lock. There are two notions of equality:
module VarDomain : sig ... end
module Event : sig ... end
module LockState : Absint.AbstractDomain.WithTop
module Acquisition : sig ... end
a lock acquisition with location information
module Acquisitions : sig ... end
A set of lock acquisitions with source locations and procnames.
module CriticalPairElement : sig ... end
An event and the currently-held locks at the time it occurred.
module CriticalPair : sig ... end
A
CriticalPairElement
equipped with a call stack. The intuition is that if we have a critical pair `(locks, event)` in the summary of a method then there is a trace of that method where `event` occurs, and right before it occurs the locks held are exactly `locks` (no over/under approximation). We call it "critical" because the information here alone determines deadlock conditions.
module CriticalPairs : Absint.AbstractDomain.FiniteSetS with type FiniteSetS.elt = CriticalPair.t
module Attribute : sig ... end
Tracks expression attributes
module AttributeDomain : sig ... end
Tracks all expressions assigned values of
Attribute
module ScheduledWorkItem : sig ... end
A record of scheduled parallel work: the method scheduled to run, where, and on what thread.
module ScheduledWorkDomain : Absint.AbstractDomain.FiniteSetS with type FiniteSetS.elt = ScheduledWorkItem.t
type t
=
{
ignore_blocking_calls : bool;
guard_map : GuardToLockMap.t;
lock_state : LockState.t;
critical_pairs : CriticalPairs.t;
attributes : AttributeDomain.t;
thread : ThreadDomain.t;
scheduled_work : ScheduledWorkDomain.t;
var_state : VarDomain.t;
}
include Absint.AbstractDomain.S with type t := t
include Absint.AbstractDomain.NoJoin
include IStdlib.PrettyPrintable.PrintableType
val pp : IStdlib.PrettyPrintable.F.formatter -> t -> unit
val initial : t
initial domain state
val acquire : tenv:IR.Tenv.t -> t -> procname:IR.Procname.t -> loc:IBase.Location.t -> Lock.t list -> t
simultaneously acquire a number of locks, no-op if list is empty
val blocking_call : callee:IR.Procname.t -> loc:IBase.Location.t -> t -> t
val ipc : callee:IR.Procname.t -> loc:IBase.Location.t -> t -> t
val wait_on_monitor : loc:IBase.Location.t -> Absint.FormalMap.t -> Absint.HilExp.t list -> t -> t
val future_get : callee:IR.Procname.t -> loc:IBase.Location.t -> Absint.HilExp.t list -> t -> t
val strict_mode_call : callee:IR.Procname.t -> loc:IBase.Location.t -> t -> t
val arbitrary_code_execution : callee:IR.Procname.t -> loc:IBase.Location.t -> t -> t
val add_guard : acquire_now:bool -> procname:IR.Procname.t -> loc:IBase.Location.t -> IR.Tenv.t -> t -> Absint.HilExp.t -> Lock.t -> t
Install a mapping from the guard expression to the lock provided, and optionally lock it.
val lock_guard : procname:IR.Procname.t -> loc:IBase.Location.t -> IR.Tenv.t -> t -> Absint.HilExp.t -> t
Acquire the lock the guard was constructed with.
val remove_guard : t -> Absint.HilExp.t -> t
Destroy the guard and release its lock.
val unlock_guard : t -> Absint.HilExp.t -> t
Release the lock the guard was constructed with.
val schedule_work : IBase.Location.t -> StarvationModels.scheduler_thread_constraint -> t -> IR.Procname.t -> t
record the fact that a method is scheduled to run on a certain thread/executor
type summary
=
{
critical_pairs : CriticalPairs.t;
thread : ThreadDomain.t;
scheduled_work : ScheduledWorkDomain.t;
attributes : AttributeDomain.t;
final-state attributes that affect instance variables only
return_attribute : Attribute.t;
}
val empty_summary : summary
val pp_summary : F.formatter -> summary -> unit
val integrate_summary : tenv:IR.Tenv.t -> lhs:Absint.HilExp.AccessExpression.t -> subst:Lock.subst -> Absint.CallSite.t -> t -> summary -> t
apply a callee summary to the current abstract state;
lhs
is the expression assigned the returned value, if any
val summary_of_astate : IR.Procdesc.t -> t -> summary
val set_ignore_blocking_calls_flag : t -> t
val remove_dead_vars : t -> IR.Var.t list -> t
val fold_critical_pairs_of_summary : (CriticalPair.t -> 'a -> 'a) -> summary -> 'a -> 'a