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. var_opt : CilType.Varinfo.t option;
    2. kind : AccessKind.t;
    }
    (*

    Access varinfo (unknown if None).

    *)
  8. | Assign of {
    1. lval : CilType.Lval.t;
    2. exp : CilType.Exp.t;
    }
    (*

    Used to simulate old ctx.assign.

    *)
val pretty : unit -> t -> Prelude.Ana.doc