Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
cdc940d5
Commit
cdc940d5
authored
2 years ago
by
Loïc Correnson
Browse files
Options
Downloads
Patches
Plain Diff
[printer] clarify StmtStart
parent
00f24e09
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/kernel_services/ast_printing/printer_tag.ml
+1
-1
1 addition, 1 deletion
src/kernel_services/ast_printing/printer_tag.ml
src/kernel_services/ast_printing/printer_tag.mli
+7
-2
7 additions, 2 deletions
src/kernel_services/ast_printing/printer_tag.mli
with
8 additions
and
3 deletions
src/kernel_services/ast_printing/printer_tag.ml
+
1
−
1
View file @
cdc940d5
...
@@ -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
(
PStmt
Start
(
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
=
...
...
This diff is collapsed.
Click to expand it.
src/kernel_services/ast_printing/printer_tag.mli
+
7
−
2
View file @
cdc940d5
...
@@ -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
defini
tions. *)
(** Global definitions except global variables and func
tions. *)
|
PIP
of
Property
.
t
|
PIP
of
Property
.
t
|
PType
of
typ
|
PType
of
typ
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment