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
d1d18b46
Commit
d1d18b46
authored
Oct 07, 2001
by
Dale Johannesen
Committed by
Bernd Schmidt
Oct 07, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix reload conflict testing to take correct order of output reloads into account.
From-SVN: r46061
parent
0be6abca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
12 deletions
+28
-12
gcc/ChangeLog
+8
-0
gcc/reload1.c
+20
-12
No files found.
gcc/ChangeLog
View file @
d1d18b46
2001
-
10
-
07
Dale
Johannesen
<
dalej
@apple
.
com
>
*
reload1
.
c
(
reload_reg_free_p
)
:
Teach
register
interference
checking
that
multiple
output
reloads
are
emitted
in
reverse
order
.
reload1
.
c
(
reload_reg_reaches_end_p
)
:
Ditto
.
reload1
.
c
(
reloads_conflict
)
:
Ditto
.
2001
-
10
-
07
Joseph
S
.
Myers
<
jsm28
@cam
.
ac
.
uk
>
*
doc
/
c
-
tree
.
texi
,
doc
/
tm
.
texi
:
Consistently
put
NULL
and
...
...
gcc/reload1.c
View file @
d1d18b46
...
...
@@ -4417,11 +4417,13 @@ reload_reg_free_p (regno, opnum, type)
case
RELOAD_FOR_OUTPUT_ADDRESS
:
/* Can't use a register if it is used for an output address for this
operand or used as an output in this or a later operand. */
operand or used as an output in this or a later operand. Note
that multiple output operands are emitted in reverse order, so
the conflicting ones are those with lower indices. */
if
(
TEST_HARD_REG_BIT
(
reload_reg_used_in_output_addr
[
opnum
],
regno
))
return
0
;
for
(
i
=
opnum
;
i
<
reload_n_operands
;
i
++
)
for
(
i
=
0
;
i
<=
opnum
;
i
++
)
if
(
TEST_HARD_REG_BIT
(
reload_reg_used_in_output
[
i
],
regno
))
return
0
;
...
...
@@ -4430,11 +4432,13 @@ reload_reg_free_p (regno, opnum, type)
case
RELOAD_FOR_OUTADDR_ADDRESS
:
/* Can't use a register if it is used for an output address
for this operand or used as an output in this or a
later operand. */
later operand. Note that multiple output operands are
emitted in reverse order, so the conflicting ones are
those with lower indices. */
if
(
TEST_HARD_REG_BIT
(
reload_reg_used_in_outaddr_addr
[
opnum
],
regno
))
return
0
;
for
(
i
=
opnum
;
i
<
reload_n_operands
;
i
++
)
for
(
i
=
0
;
i
<=
opnum
;
i
++
)
if
(
TEST_HARD_REG_BIT
(
reload_reg_used_in_output
[
i
],
regno
))
return
0
;
...
...
@@ -4457,7 +4461,9 @@ reload_reg_free_p (regno, opnum, type)
case
RELOAD_FOR_OUTPUT
:
/* This cannot share a register with RELOAD_FOR_INSN reloads, other
outputs, or an operand address for this or an earlier output. */
outputs, or an operand address for this or an earlier output.
Note that multiple output operands are emitted in reverse order,
so the conflicting ones are those with higher indices. */
if
(
TEST_HARD_REG_BIT
(
reload_reg_used_in_insn
,
regno
))
return
0
;
...
...
@@ -4465,7 +4471,7 @@ reload_reg_free_p (regno, opnum, type)
if
(
TEST_HARD_REG_BIT
(
reload_reg_used_in_output
[
i
],
regno
))
return
0
;
for
(
i
=
0
;
i
<=
opnum
;
i
++
)
for
(
i
=
opnum
;
i
<
reload_n_operands
;
i
++
)
if
(
TEST_HARD_REG_BIT
(
reload_reg_used_in_output_addr
[
i
],
regno
)
||
TEST_HARD_REG_BIT
(
reload_reg_used_in_outaddr_addr
[
i
],
regno
))
return
0
;
...
...
@@ -4601,7 +4607,7 @@ reload_reg_reaches_end_p (regno, opnum, type)
/* These conflict with other outputs with RELOAD_OTHER. So
we need only check for output addresses. */
opnum
=
-
1
;
opnum
=
reload_n_operands
;
/* ... fall through ... */
...
...
@@ -4609,8 +4615,10 @@ reload_reg_reaches_end_p (regno, opnum, type)
case
RELOAD_FOR_OUTPUT_ADDRESS
:
case
RELOAD_FOR_OUTADDR_ADDRESS
:
/* We already know these can't conflict with a later output. So the
only thing to check are later output addresses. */
for
(
i
=
opnum
+
1
;
i
<
reload_n_operands
;
i
++
)
only thing to check are later output addresses.
Note that multiple output operands are emitted in reverse order,
so the conflicting ones are those with lower indices. */
for
(
i
=
0
;
i
<
opnum
;
i
++
)
if
(
TEST_HARD_REG_BIT
(
reload_reg_used_in_output_addr
[
i
],
regno
)
||
TEST_HARD_REG_BIT
(
reload_reg_used_in_outaddr_addr
[
i
],
regno
))
return
0
;
...
...
@@ -4662,11 +4670,11 @@ reloads_conflict (r1, r2)
case
RELOAD_FOR_OUTPUT_ADDRESS
:
return
((
r2_type
==
RELOAD_FOR_OUTPUT_ADDRESS
&&
r2_opnum
==
r1_opnum
)
||
(
r2_type
==
RELOAD_FOR_OUTPUT
&&
r2_opnum
>
=
r1_opnum
));
||
(
r2_type
==
RELOAD_FOR_OUTPUT
&&
r2_opnum
<
=
r1_opnum
));
case
RELOAD_FOR_OUTADDR_ADDRESS
:
return
((
r2_type
==
RELOAD_FOR_OUTADDR_ADDRESS
&&
r2_opnum
==
r1_opnum
)
||
(
r2_type
==
RELOAD_FOR_OUTPUT
&&
r2_opnum
>
=
r1_opnum
));
||
(
r2_type
==
RELOAD_FOR_OUTPUT
&&
r2_opnum
<
=
r1_opnum
));
case
RELOAD_FOR_OPERAND_ADDRESS
:
return
(
r2_type
==
RELOAD_FOR_INPUT
||
r2_type
==
RELOAD_FOR_INSN
...
...
@@ -4680,7 +4688,7 @@ reloads_conflict (r1, r2)
return
(
r2_type
==
RELOAD_FOR_INSN
||
r2_type
==
RELOAD_FOR_OUTPUT
||
((
r2_type
==
RELOAD_FOR_OUTPUT_ADDRESS
||
r2_type
==
RELOAD_FOR_OUTADDR_ADDRESS
)
&&
r2_opnum
<
=
r1_opnum
));
&&
r2_opnum
>
=
r1_opnum
));
case
RELOAD_FOR_INSN
:
return
(
r2_type
==
RELOAD_FOR_INPUT
||
r2_type
==
RELOAD_FOR_OUTPUT
...
...
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