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
b874ef99
Commit
b874ef99
authored
4 years ago
by
David Bühler
Browse files
Options
Downloads
Patches
Plain Diff
[Eva] Slightly improves the automatic loop unrolling on loops with goto statements.
parent
21410a36
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/plugins/value/partitioning/auto_loop_unroll.ml
+14
-7
14 additions, 7 deletions
src/plugins/value/partitioning/auto_loop_unroll.ml
tests/value/oracle/auto_loop_unroll.1.res.oracle
+6
-15
6 additions, 15 deletions
tests/value/oracle/auto_loop_unroll.1.res.oracle
with
20 additions
and
22 deletions
src/plugins/value/partitioning/auto_loop_unroll.ml
+
14
−
7
View file @
b874ef99
...
...
@@ -200,7 +200,7 @@ let is_safe_instruction lval = function
|
Asm
_
->
false
(* Returns true if the statement [stmt] of function [kf] does not modify [lval].
[lval] is a candidate for the automatic loop unrolling of
[loop]
[loop]. *)
[lval] is a candidate for the automatic loop unrolling of [loop]. *)
let
is_constant
kf
~
loop
lval
stmt
=
let
rec
is_safe_stmt
~
goto
stmt
=
match
stmt
.
skind
with
...
...
@@ -224,12 +224,19 @@ let is_constant kf ~loop lval stmt =
that contains the current loop, which we don't want to unroll. *)
let
dest_blocks
=
Kernel_function
.
find_all_enclosing_blocks
!
dest
in
List
.
exists
(
Cil_datatype
.
Block
.
equal
loop
)
dest_blocks
&&
(* Otherwise, the goto stays within the loop: check that the block
englobing both the source and the destination is safe. *)
let
block
=
Kernel_function
.
common_block
!
dest
stmt
in
(* If this block is the loop itself, then it is not safe,
as [lval] is modified within the loop. *)
not
(
block
==
loop
)
&&
is_safe_block
~
goto
:
true
block
(* Otherwise, the goto stays within the loop. *)
begin
(* If the successors all exits the loop block, then the goto is safe.
This is the case for gotos coming from "continue" statement. *)
let
all_stmts
=
Stmts_graph
.
get_block_stmts
loop
in
let
is_outside_loop
s
=
not
(
Cil_datatype
.
Stmt
.
Set
.
mem
s
all_stmts
)
in
List
.
for_all
is_outside_loop
!
dest
.
succs
||
(* Otherwise, check that the block englobing both the source and the
destination is safe. If this block is the loop itself, then it is
not safe, as [lval] is modified within the loop. *)
let
block
=
Kernel_function
.
common_block
!
dest
stmt
in
not
(
block
==
loop
)
&&
is_safe_block
~
goto
:
true
block
end
|
_
->
false
(* A block is safe if all its statements are safe. *)
and
is_safe_block
~
goto
b
=
List
.
for_all
(
is_safe_stmt
~
goto
)
b
.
bstmts
in
...
...
This diff is collapsed.
Click to expand it.
tests/value/oracle/auto_loop_unroll.1.res.oracle
+
6
−
15
View file @
b874ef99
...
...
@@ -395,21 +395,12 @@
[eva:alarm] tests/value/auto_loop_unroll.c:291: Warning:
signed overflow. assert res + 1 ≤ 2147483647;
[eva] tests/value/auto_loop_unroll.c:296: Frama_C_show_each_top: [0..2147483647]
[eva] tests/value/auto_loop_unroll.c:299: starting to merge loop iterations
[eva:alarm] tests/value/auto_loop_unroll.c:302: Warning:
signed overflow. assert res + 1 ≤ 2147483647;
[eva] tests/value/auto_loop_unroll.c:304:
Frama_C_show_each_0_35: [0..2147483647]
[eva] tests/value/auto_loop_unroll.c:307: starting to merge loop iterations
[eva:alarm] tests/value/auto_loop_unroll.c:307: Warning:
signed overflow. assert res + 1 ≤ 2147483647;
[eva:alarm] tests/value/auto_loop_unroll.c:307: Warning:
signed overflow. assert -2147483648 ≤ i - 1;
[eva] tests/value/auto_loop_unroll.c:311: Frama_C_show_each_36: [0..2147483647]
[eva] tests/value/auto_loop_unroll.c:314: starting to merge loop iterations
[eva:alarm] tests/value/auto_loop_unroll.c:317: Warning:
signed overflow. assert res + 1 ≤ 2147483647;
[eva] tests/value/auto_loop_unroll.c:319: Frama_C_show_each_27: [0..2147483647]
[eva:loop-unroll] tests/value/auto_loop_unroll.c:299: Automatic loop unrolling.
[eva] tests/value/auto_loop_unroll.c:304: Frama_C_show_each_0_35: [0..35]
[eva:loop-unroll] tests/value/auto_loop_unroll.c:307: Automatic loop unrolling.
[eva] tests/value/auto_loop_unroll.c:311: Frama_C_show_each_36: {36}
[eva:loop-unroll] tests/value/auto_loop_unroll.c:314: Automatic loop unrolling.
[eva] tests/value/auto_loop_unroll.c:319: Frama_C_show_each_27: {27}
[eva] Recording results for loops_with_goto
[eva] Done for function loops_with_goto
[eva] computing for function non_natural_loops <- main.
...
...
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