package goblint

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t =
  1. | Lock of LockDomain.Lockset.Lock.t
  2. | Unlock of Goblint_lib.LockDomain.Addr.t
  3. | Escape of EscapeDomain.EscapedVars.t
  4. | EnterMultiThreaded
  5. | SplitBranch of Prelude.Ana.exp * bool
    (*

    Used to simulate old branch-based split.

    *)
  6. | AssignSpawnedThread of Prelude.Ana.lval * Goblint_lib.ThreadIdDomain.Thread.t
    (*

    Assign spawned thread's ID to lval.

    *)
  7. | Access of {
    1. exp : CilType.Exp.t;
    2. lvals : Queries.LS.t;
    3. kind : AccessKind.t;
    4. reach : bool;
    }
  8. | Assign of {
    1. lval : CilType.Lval.t;
    2. exp : CilType.Exp.t;
    }
    (*

    Used to simulate old ctx.assign.

    *)
  9. | UpdateExpSplit of Prelude.Ana.exp
    (*

    Used by expsplit analysis to evaluate exp on post-state.

    *)
  10. | Assert of Prelude.Ana.exp
val pretty : unit -> t -> Prelude.Ana.doc