EdgeCFG edge. Corresponds to a (primitive) program statement between program points (and their states).
type asm_out = (string option * string * CilType.Lval.t) listval hash_asm_out : asm_out -> intval asm_out_to_yojson : asm_out -> Yojson.Safe.ttype asm_in = (string option * string * CilType.Exp.t) listval hash_asm_in : asm_in -> intval asm_in_to_yojson : asm_in -> Yojson.Safe.tval _ : asm_in -> Yojson.Safe.ttype t = | Assign of CilType.Lval.t * CilType.Exp.tAssignments lval = exp
*)| Proc of CilType.Lval.t option * CilType.Exp.t * CilType.Exp.t listFunction calls of the form lva = fexp (e1, e2, ...)
*)| Entry of CilType.Fundec.tEntry edge that relates function declaration to function body. You can use * this to initialize the local variables.
*)| Ret of CilType.Exp.t option * CilType.Fundec.tReturn edge is between the return statement, which may optionally contain * a return value, and the function. The result of the call is then * transferred to the function node!
*)| Test of CilType.Exp.t * boolThe true-branch or false-branch of a conditional exp
*)| ASM of string list * asm_out * asm_inInline assembly statements, and the annotations for output and input * variables.
*)| VDecl of CilType.Varinfo.tVDecl edge for the variable in varinfo. Whether such an edge is there for all * local variables or only when it is not possible to pull the declaration up, is * determined by alwaysGenerateVarDecl in cabs2cil.ml in CIL. One case in which a VDecl * is always there is for VLA. If there is a VDecl edge, it is where the declaration originally * appeared
*)| SkipThis is here for historical reasons. I never use Skip edges!
*)val hash : t -> intval pretty : unit -> t -> GoblintCil.Pretty.docval pretty_plain : unit -> t -> GoblintCil.Pretty.docval to_yojson : t -> [> `Assoc of (string * Yojson.Safe.t) list ]