Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
cwe_checker
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-depend
cwe_checker
Commits
9ad700d7
Unverified
Commit
9ad700d7
authored
Nov 24, 2022
by
Enkelmann
Committed by
GitHub
Nov 24, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
substitute more trivial expressions (#362)
parent
b4697385
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
129 additions
and
0 deletions
+129
-0
tests.rs
...r_lib/src/intermediate_representation/expression/tests.rs
+32
-0
trivial_operation_substitution.rs
...presentation/expression/trivial_operation_substitution.rs
+97
-0
No files found.
src/cwe_checker_lib/src/intermediate_representation/expression/tests.rs
View file @
9ad700d7
...
...
@@ -182,6 +182,38 @@ fn trivial_expression_substitution() {
}
#[test]
fn
test_complicated_a_less_than_b_substitution
()
{
use
BinOpType
::
*
;
use
Expression
::
*
;
let
sborrow_expr
=
BinOp
{
op
:
IntSBorrow
,
lhs
:
Box
::
new
(
Var
(
Variable
::
mock
(
"RAX"
,
8
))),
rhs
:
Box
::
new
(
Var
(
Variable
::
mock
(
"RBX"
,
8
))),
};
let
a_minus_b_less_zero_expr
=
BinOp
{
op
:
IntSLess
,
lhs
:
Box
::
new
(
BinOp
{
op
:
IntSub
,
lhs
:
Box
::
new
(
Var
(
Variable
::
mock
(
"RAX"
,
8
))),
rhs
:
Box
::
new
(
Var
(
Variable
::
mock
(
"RBX"
,
8
))),
}),
rhs
:
Box
::
new
(
Const
(
Bitvector
::
from_u64
(
0
))),
};
let
mut
expr
=
BinOp
{
op
:
IntNotEqual
,
lhs
:
Box
::
new
(
sborrow_expr
),
rhs
:
Box
::
new
(
a_minus_b_less_zero_expr
),
};
expr
.substitute_trivial_operations
();
let
expected_expr
=
BinOp
{
op
:
IntSLess
,
lhs
:
Box
::
new
(
Var
(
Variable
::
mock
(
"RAX"
,
8
))),
rhs
:
Box
::
new
(
Var
(
Variable
::
mock
(
"RBX"
,
8
))),
};
assert_eq!
(
expr
,
expected_expr
);
}
#[test]
fn
display
()
{
let
expr
=
Expression
::
const_from_i32
(
2
);
let
mul
=
Expression
::
BinOp
{
...
...
src/cwe_checker_lib/src/intermediate_representation/expression/trivial_operation_substitution.rs
View file @
9ad700d7
...
...
@@ -263,6 +263,59 @@ impl Expression {
}
}
/// Substitute the expression `(a - b < 0 ) != (a IntSBorrow b)` with the equivalent `a < b`
/// and the expression `(a - b < 0 ) == (a IntSBorrow b)` with the equivalent `b <= a`,
/// both for `a` and `b` signed integers.
fn
substitute_complicated_a_less_than_b
(
&
mut
self
)
{
use
BinOpType
::
*
;
use
Expression
::
*
;
let
mut
expr_a
=
None
;
let
mut
expr_b
=
None
;
if
let
BinOp
{
op
:
IntNotEqual
|
IntEqual
,
lhs
,
rhs
,
}
=
self
{
if
let
Some
((
expr_a_left
,
expr_b_left
))
=
unpack_a_minus_b_less_than_zero
(
lhs
)
{
if
let
Some
((
expr_a_right
,
expr_b_right
))
=
unpack_a_intsborrow_b
(
rhs
)
{
if
expr_a_left
==
expr_a_right
&&
expr_b_left
==
expr_b_right
{
expr_a
=
Some
(
expr_a_left
.clone
());
expr_b
=
Some
(
expr_b_left
.clone
());
}
}
}
else
if
let
Some
((
expr_a_left
,
expr_b_left
))
=
unpack_a_intsborrow_b
(
lhs
)
{
if
let
Some
((
expr_a_right
,
expr_b_right
))
=
unpack_a_minus_b_less_than_zero
(
rhs
)
{
if
expr_a_left
==
expr_a_right
&&
expr_b_left
==
expr_b_right
{
expr_a
=
Some
(
expr_a_left
.clone
());
expr_b
=
Some
(
expr_b_left
.clone
());
}
}
}
if
let
(
Some
(
a
),
Some
(
b
))
=
(
expr_a
,
expr_b
)
{
if
let
BinOp
{
op
,
..
}
=
self
{
if
*
op
==
IntNotEqual
{
*
self
=
Expression
::
BinOp
{
op
:
IntSLess
,
lhs
:
Box
::
new
(
a
),
rhs
:
Box
::
new
(
b
),
}
}
else
if
*
op
==
IntEqual
{
*
self
=
Expression
::
BinOp
{
op
:
IntSLessEqual
,
lhs
:
Box
::
new
(
b
),
rhs
:
Box
::
new
(
a
),
}
}
else
{
panic!
()
}
}
else
{
panic!
()
}
}
}
}
/// Simplify arithmetic operations where intermediate results can be computed because some operands are constants.
fn
substitute_arithmetics_with_constants
(
&
mut
self
)
{
use
BinOpType
::
*
;
...
...
@@ -333,6 +386,7 @@ impl Expression {
self
.substitute_binop_for_lhs_equal_rhs
();
self
.substitute_and_xor_or_with_constant
();
self
.substitute_equivalent_comparison_ops
();
self
.substitute_complicated_a_less_than_b
();
self
.substitute_arithmetics_with_constants
();
}
...
...
@@ -475,3 +529,46 @@ impl Expression {
}
}
}
/// If the input expression is of the form `(a - b) < 0` then return `Some(a, b)`.
/// Else return `None`.
fn
unpack_a_minus_b_less_than_zero
(
expr
:
&
Expression
)
->
Option
<
(
&
Expression
,
&
Expression
)
>
{
use
BinOpType
::
*
;
if
let
Expression
::
BinOp
{
op
:
IntSLess
,
lhs
:
lhs_compare
,
rhs
:
rhs_compare
,
}
=
expr
{
if
let
Expression
::
Const
(
constant
)
=
&**
rhs_compare
{
if
!
constant
.is_zero
()
{
return
None
;
}
if
let
Expression
::
BinOp
{
op
:
IntSub
,
lhs
,
rhs
,
}
=
&**
lhs_compare
{
return
Some
((
&**
lhs
,
&**
rhs
));
}
}
}
None
}
/// If the input expression is of the form `a IntSBorrow b` then return `Some(a, b)`.
/// Else return `None`.
fn
unpack_a_intsborrow_b
(
expr
:
&
Expression
)
->
Option
<
(
&
Expression
,
&
Expression
)
>
{
use
BinOpType
::
*
;
if
let
Expression
::
BinOp
{
op
:
IntSBorrow
,
lhs
,
rhs
,
}
=
expr
{
Some
((
&**
lhs
,
&**
rhs
))
}
else
{
None
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment