Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
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
lvzhengyang
riscv-gcc-1
Commits
e92d3048
Commit
e92d3048
authored
Apr 08, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(fold, case GT_EXPR): Simplify X < (1 << Y) into X >> Y == 0.
From-SVN: r6999
parent
69887ad9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
gcc/fold-const.c
+24
-0
No files found.
gcc/fold-const.c
View file @
e92d3048
...
...
@@ -4517,6 +4517,30 @@ fold (expr)
return
build
(
code
==
EQ_EXPR
?
NE_EXPR
:
EQ_EXPR
,
type
,
arg0
,
integer_zero_node
);
/* If X is unsigned, convert X < (1 << Y) into X >> Y == 0
and similarly for <= into !=. */
if
((
code
==
LT_EXPR
||
code
==
GE_EXPR
)
&&
TREE_UNSIGNED
(
TREE_TYPE
(
arg0
))
&&
TREE_CODE
(
arg1
)
==
LSHIFT_EXPR
&&
integer_onep
(
TREE_OPERAND
(
arg1
,
0
)))
return
build
(
code
==
LT_EXPR
?
EQ_EXPR
:
NE_EXPR
,
type
,
build
(
RSHIFT_EXPR
,
TREE_TYPE
(
arg0
),
arg0
,
TREE_OPERAND
(
arg1
,
1
)),
convert
(
TREE_TYPE
(
arg0
),
integer_zero_node
));
else
if
((
code
==
LT_EXPR
||
code
==
GE_EXPR
)
&&
TREE_UNSIGNED
(
TREE_TYPE
(
arg0
))
&&
(
TREE_CODE
(
arg1
)
==
NOP_EXPR
||
TREE_CODE
(
arg1
)
==
CONVERT_EXPR
)
&&
TREE_CODE
(
TREE_OPERAND
(
arg1
,
0
))
==
LSHIFT_EXPR
&&
integer_onep
(
TREE_OPERAND
(
TREE_OPERAND
(
arg1
,
0
),
0
)))
return
build
(
code
==
LT_EXPR
?
EQ_EXPR
:
NE_EXPR
,
type
,
convert
(
TREE_TYPE
(
arg0
),
build
(
RSHIFT_EXPR
,
TREE_TYPE
(
arg0
),
arg0
,
TREE_OPERAND
(
TREE_OPERAND
(
arg1
,
0
),
1
))),
convert
(
TREE_TYPE
(
arg0
),
integer_zero_node
));
/* Simplify comparison of something with itself. (For IEEE
floating-point, we can only do some of these simplifications.) */
if
(
operand_equal_p
(
arg0
,
arg1
,
0
))
...
...
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