module Clabels:sig..end
Normalized C-labels
Structural representation of logic labels. Compatible with stdlib comparison and structural equality.
type c_label
val is_here : c_label -> bool
val mem : c_label -> c_label list -> bool
val equal : c_label -> c_label -> bool
module T:sig..end
module LabelMap:Map.Swith type key = c_label
module LabelSet:Set.Swith type elt = c_label
val pre : c_label
val here : c_label
val next : c_label
val init : c_label
val post : c_label
val exit : c_label
val break : c_label
val continue : c_label
val default : c_label
val loopentry : c_label
val loopcurrent : c_label
val formal : string -> c_label
val case : int64 -> c_label
val stmt : Cil_types.stmt -> c_label
val stmt_post : Cil_types.stmt -> c_label
val loop_entry : Cil_types.stmt -> c_label
val loop_current : Cil_types.stmt -> c_label
val to_logic : c_label -> Cil_types.logic_label
val of_logic : Cil_types.logic_label -> c_labelAssumes the logic label only comes from normalized or non-ambiguous labels. Ambiguous labels are: Old, LoopEntry and LoopCurrent, since they points to different program points dependending on the context.
val is_post : Cil_types.logic_label -> boolChecks whether the logic-label is Post or to_logic post
val pretty : Stdlib.Format.formatter -> c_label -> unit
val name : Cil_types.logic_label -> string
val lookup : (Cil_types.logic_label * Cil_types.logic_label) list ->
string -> Cil_types.logic_labellookup bindings lparam retrieves the actual label
for the label in bindings for label parameter lparam.