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
92065e1f
Commit
92065e1f
authored
Aug 19, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(calculate_giv_inc): Handle increment computed by ASHIFT.
From-SVN: r10256
parent
3c8db3f2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
gcc/unroll.c
+9
-3
No files found.
gcc/unroll.c
View file @
92065e1f
...
...
@@ -1412,10 +1412,13 @@ calculate_giv_inc (pattern, src_insn, regno)
one of the LO_SUM rtx. */
if
(
GET_CODE
(
increment
)
==
LO_SUM
)
increment
=
XEXP
(
increment
,
1
);
else
if
(
GET_CODE
(
increment
)
==
IOR
)
else
if
(
GET_CODE
(
increment
)
==
IOR
||
GET_CODE
(
increment
)
==
ASHIFT
)
{
/* The rs6000 port loads some constants with IOR. */
/* The rs6000 port loads some constants with IOR.
The alpha port loads some constants with ASHIFT. */
rtx
second_part
=
XEXP
(
increment
,
1
);
enum
rtx_code
code
=
GET_CODE
(
increment
);
src_insn
=
PREV_INSN
(
src_insn
);
increment
=
SET_SRC
(
PATTERN
(
src_insn
));
...
...
@@ -1426,7 +1429,10 @@ calculate_giv_inc (pattern, src_insn, regno)
||
GET_CODE
(
increment
)
!=
CONST_INT
)
abort
();
increment
=
GEN_INT
(
INTVAL
(
increment
)
|
INTVAL
(
second_part
));
if
(
code
==
IOR
)
increment
=
GEN_INT
(
INTVAL
(
increment
)
|
INTVAL
(
second_part
));
else
increment
=
GEN_INT
(
INTVAL
(
increment
)
<<
INTVAL
(
second_part
));
}
if
(
GET_CODE
(
increment
)
!=
CONST_INT
)
...
...
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