Skip to content
Snippets Groups Projects
Commit cdc940d5 authored by Loïc Correnson's avatar Loïc Correnson
Browse files

[printer] clarify StmtStart

parent 00f24e09
No related branches found
No related tags found
No related merge requests found
...@@ -584,7 +584,7 @@ struct ...@@ -584,7 +584,7 @@ struct
method! pp_while ~stmt ~cond fmt = method! pp_while ~stmt ~cond fmt =
Format.fprintf fmt "@{<%s>%t@}" Format.fprintf fmt "@{<%s>%t@}"
(Tag.create (PStmt(Option.get self#current_kf,stmt))) (Tag.create (PStmtStart(Option.get self#current_kf,stmt)))
(super#pp_while ~stmt ~cond) (super#pp_while ~stmt ~cond)
method! next_stmt next fmt current = method! next_stmt next fmt current =
......
...@@ -27,18 +27,23 @@ open Cil_types ...@@ -27,18 +27,23 @@ open Cil_types
(** The kind of object that can be selected in the source viewer. *) (** The kind of object that can be selected in the source viewer. *)
type localizable = type localizable =
| PStmt of (kernel_function * stmt) | PStmt of (kernel_function * stmt)
(** Full statement (with attributes, annotations, etc.) *)
| PStmtStart of (kernel_function * stmt) | PStmtStart of (kernel_function * stmt)
(** Naked statement (only skind, without attributes, annotations, etc.) *)
| PLval of (kernel_function option * kinstr * lval) | PLval of (kernel_function option * kinstr * lval)
(** L-Values *)
| PExp of (kernel_function option * kinstr * exp) | PExp of (kernel_function option * kinstr * exp)
(** Non l-value expressions *)
| PTermLval of (kernel_function option * kinstr * Property.t * term_lval) | PTermLval of (kernel_function option * kinstr * Property.t * term_lval)
(** Term l-values inside properties *)
| PVDecl of (kernel_function option * kinstr * varinfo) | PVDecl of (kernel_function option * kinstr * varinfo)
(** Declaration and definition of variables and function. Check the type (** Declaration and definition of variables and function. Check the type
of the varinfo to distinguish between the various possibilities. of the varinfo to distinguish between the various possibilities.
If the varinfo is a global or a local, the kernel_function is the If the varinfo is a global or a local, the kernel_function is the
one in which the variable is declared. The [kinstr] argument is given one in which the variable is declared. The [kinstr] argument is given
for local variables with an explicit initializer. *) for local variables with an explicit initializer. *)
| PGlobal of global (** all globals but variable declarations and function | PGlobal of global
definitions. *) (** Global definitions except global variables and functions. *)
| PIP of Property.t | PIP of Property.t
| PType of typ | PType of typ
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment