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
85d2e16c
Commit
85d2e16c
authored
Dec 28, 1992
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(fold, case BIT_IOR_EXPR): Convert the IOR of a pair of shifts into a
rotate when it is equivalent. From-SVN: r2970
parent
4a0094c3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
+22
-0
gcc/fold-const.c
+22
-0
No files found.
gcc/fold-const.c
View file @
85d2e16c
...
...
@@ -3496,6 +3496,28 @@ fold (expr)
t1
=
distribute_bit_expr
(
code
,
type
,
arg0
,
arg1
);
if
(
t1
!=
NULL_TREE
)
return
t1
;
/* (a << C1) | (a >> C2) if A is unsigned and C1+C2 is the size of A
is a rotate of A by C1 bits. */
if
((
TREE_CODE
(
arg0
)
==
RSHIFT_EXPR
||
TREE_CODE
(
arg0
)
==
LSHIFT_EXPR
)
&&
(
TREE_CODE
(
arg1
)
==
RSHIFT_EXPR
||
TREE_CODE
(
arg1
)
==
LSHIFT_EXPR
)
&&
TREE_CODE
(
arg0
)
!=
TREE_CODE
(
arg1
)
&&
operand_equal_p
(
TREE_OPERAND
(
arg0
,
0
),
TREE_OPERAND
(
arg1
,
0
),
0
)
&&
TREE_UNSIGNED
(
TREE_TYPE
(
TREE_OPERAND
(
arg0
,
0
)))
&&
TREE_CODE
(
TREE_OPERAND
(
arg0
,
1
))
==
INTEGER_CST
&&
TREE_CODE
(
TREE_OPERAND
(
arg1
,
1
))
==
INTEGER_CST
&&
TREE_INT_CST_HIGH
(
TREE_OPERAND
(
arg0
,
1
))
==
0
&&
TREE_INT_CST_HIGH
(
TREE_OPERAND
(
arg1
,
1
))
==
0
&&
((
TREE_INT_CST_LOW
(
TREE_OPERAND
(
arg0
,
1
))
+
TREE_INT_CST_LOW
(
TREE_OPERAND
(
arg1
,
1
)))
==
TYPE_PRECISION
(
TREE_TYPE
(
TREE_OPERAND
(
arg0
,
0
)))))
return
build
(
LROTATE_EXPR
,
type
,
TREE_OPERAND
(
arg0
,
0
),
TREE_CODE
(
arg0
)
==
LSHIFT_EXPR
?
TREE_OPERAND
(
arg0
,
1
)
:
TREE_OPERAND
(
arg1
,
1
));
goto
associate
;
case
BIT_XOR_EXPR
:
...
...
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