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
6e498949
Commit
6e498949
authored
May 28, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(simplify_and_const_int, case IOR, XOR, NOT): Don't
create constant wider than mode of VAROP. From-SVN: r4583
parent
53f26922
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
gcc/combine.c
+11
-3
No files found.
gcc/combine.c
View file @
6e498949
...
...
@@ -5968,13 +5968,18 @@ simplify_and_const_int (x, mode, varop, constop)
case
XOR
:
/* If VAROP is (ior (lshiftrt FOO C1) C2), try to commute the IOR and
LSHIFT so we end up with an (and (lshiftrt (ior ...) ...) ...)
operation which may be a bitfield extraction. */
operation which may be a bitfield extraction. Ensure
that the constant we form is not wider than the mode of
VAROP. */
if
(
GET_CODE
(
XEXP
(
varop
,
0
))
==
LSHIFTRT
&&
GET_CODE
(
XEXP
(
XEXP
(
varop
,
0
),
1
))
==
CONST_INT
&&
INTVAL
(
XEXP
(
XEXP
(
varop
,
0
),
1
))
>=
0
&&
INTVAL
(
XEXP
(
XEXP
(
varop
,
0
),
1
))
<
HOST_BITS_PER_WIDE_INT
&&
GET_CODE
(
XEXP
(
varop
,
1
))
==
CONST_INT
&&
((
INTVAL
(
XEXP
(
XEXP
(
varop
,
0
),
1
))
+
floor_log2
(
INTVAL
(
XEXP
(
varop
,
1
))))
<
GET_MODE_BITSIZE
(
GET_MODE
(
varop
)))
&&
(
INTVAL
(
XEXP
(
varop
,
1
))
&
~
nonzero_bits
(
XEXP
(
varop
,
0
),
GET_MODE
(
varop
))
==
0
))
{
...
...
@@ -6003,12 +6008,15 @@ simplify_and_const_int (x, mode, varop, constop)
XEXP
(
varop
,
1
),
constop
))));
case
NOT
:
/* (and (not FOO)) is (and (xor FOO CONST_OP)) so if FOO is an
LSHIFTRT we can do the same as above. */
/* (and (not FOO)) is (and (xor FOO CONST)), so if FOO is an
LSHIFTRT, we can do the same as above. Ensure that the constant
we form is not wider than the mode of VAROP. */
if
(
GET_CODE
(
XEXP
(
varop
,
0
))
==
LSHIFTRT
&&
GET_CODE
(
XEXP
(
XEXP
(
varop
,
0
),
1
))
==
CONST_INT
&&
INTVAL
(
XEXP
(
XEXP
(
varop
,
0
),
1
))
>=
0
&&
(
INTVAL
(
XEXP
(
XEXP
(
varop
,
0
),
1
))
+
floor_log2
(
constop
)
<
GET_MODE_BITSIZE
(
GET_MODE
(
varop
)))
&&
INTVAL
(
XEXP
(
XEXP
(
varop
,
0
),
1
))
<
HOST_BITS_PER_WIDE_INT
)
{
temp
=
GEN_INT
(
constop
<<
INTVAL
(
XEXP
(
XEXP
(
varop
,
0
),
1
)));
...
...
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