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
2edc8d65
Commit
2edc8d65
authored
Oct 20, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(reload_reg_free_p, reloads_conflict): RELOAD_OTHER and
RELOAD_FOR_OTHER_ADDRESS conflict. From-SVN: r12980
parent
8a892040
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
15 deletions
+8
-15
gcc/reload1.c
+8
-15
No files found.
gcc/reload1.c
View file @
2edc8d65
...
...
@@ -4301,20 +4301,15 @@ reload_reg_free_p (regno, opnum, type)
{
int
i
;
/* In use for a RELOAD_OTHER means it's not available for anything except
RELOAD_FOR_OTHER_ADDRESS. Recall that RELOAD_FOR_OTHER_ADDRESS is known
to be used only for inputs. */
if
(
type
!=
RELOAD_FOR_OTHER_ADDRESS
&&
TEST_HARD_REG_BIT
(
reload_reg_used
,
regno
))
/* In use for a RELOAD_OTHER means it's not available for anything. */
if
(
TEST_HARD_REG_BIT
(
reload_reg_used
,
regno
))
return
0
;
switch
(
type
)
{
case
RELOAD_OTHER
:
/* In use for anything except RELOAD_FOR_OTHER_ADDRESS means
we can't use it for RELOAD_OTHER. */
if
(
TEST_HARD_REG_BIT
(
reload_reg_used
,
regno
)
/* In use for anything means we can't use it for RELOAD_OTHER. */
if
(
TEST_HARD_REG_BIT
(
reload_reg_used_in_other_addr
,
regno
)
||
TEST_HARD_REG_BIT
(
reload_reg_used_in_op_addr
,
regno
)
||
TEST_HARD_REG_BIT
(
reload_reg_used_in_insn
,
regno
))
return
0
;
...
...
@@ -4665,10 +4660,8 @@ reloads_conflict (r1, r2)
int
r1_opnum
=
reload_opnum
[
r1
];
int
r2_opnum
=
reload_opnum
[
r2
];
/* RELOAD_OTHER conflicts with everything except
RELOAD_FOR_OTHER_ADDRESS. */
if
(
r2_type
==
RELOAD_OTHER
&&
r1_type
!=
RELOAD_FOR_OTHER_ADDRESS
)
/* RELOAD_OTHER conflicts with everything. */
if
(
r2_type
==
RELOAD_OTHER
)
return
1
;
/* Otherwise, check conflicts differently for each type. */
...
...
@@ -4712,7 +4705,7 @@ reloads_conflict (r1, r2)
return
r2_type
==
RELOAD_FOR_OTHER_ADDRESS
;
case
RELOAD_OTHER
:
return
r2_type
!=
RELOAD_FOR_OTHER_ADDRESS
;
return
1
;
default
:
abort
();
...
...
@@ -6508,7 +6501,7 @@ emit_reload_insns (insn)
RELOAD_FOR_OTHER_ADDRESS reloads for input addresses.
RELOAD_OTHER reloads
, output in ascending order by reload number
.
RELOAD_OTHER reloads.
For each operand, any RELOAD_FOR_INPUT_ADDRESS reloads followed by
the RELOAD_FOR_INPUT reload for the operand.
...
...
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