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
24e46fc4
Commit
24e46fc4
authored
28 years ago
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(move_deaths): Handle partial REG_DEAD note for
multi-reg hard register. From-SVN: r13836
parent
7b05e286
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
5 deletions
+15
-5
gcc/combine.c
+15
-5
No files found.
gcc/combine.c
View file @
24e46fc4
...
...
@@ -10800,7 +10800,7 @@ move_deaths (x, maybe_kill_insn, from_cuid, to_insn, pnotes)
if
(
note
!=
0
&&
regno
<
FIRST_PSEUDO_REGISTER
&&
(
GET_MODE_SIZE
(
GET_MODE
(
XEXP
(
note
,
0
)))
!=
GET_MODE_SIZE
(
GET_MODE
(
x
))))
>
GET_MODE_SIZE
(
GET_MODE
(
x
))))
{
int
deadregno
=
REGNO
(
XEXP
(
note
,
0
));
int
deadend
...
...
@@ -10816,18 +10816,28 @@ move_deaths (x, maybe_kill_insn, from_cuid, to_insn, pnotes)
gen_rtx
(
REG
,
reg_raw_mode
[
i
],
i
),
REG_NOTES
(
where_dead
));
}
/* If we didn't find any note, and we have a multi-reg hard
/* If we didn't find any note, or if we found a REG_DEAD note that
covers only part of the given reg, and we have a multi-reg hard
register, then to be safe we must check for REG_DEAD notes
for each register other than the first. They could have
their own REG_DEAD notes lying around. */
else
if
(
note
==
0
&&
regno
<
FIRST_PSEUDO_REGISTER
else
if
((
note
==
0
||
(
note
!=
0
&&
(
GET_MODE_SIZE
(
GET_MODE
(
XEXP
(
note
,
0
)))
<
GET_MODE_SIZE
(
GET_MODE
(
x
)))))
&&
regno
<
FIRST_PSEUDO_REGISTER
&&
HARD_REGNO_NREGS
(
regno
,
GET_MODE
(
x
))
>
1
)
{
int
ourend
=
regno
+
HARD_REGNO_NREGS
(
regno
,
GET_MODE
(
x
));
int
i
;
int
i
,
offset
;
rtx
oldnotes
=
0
;
for
(
i
=
regno
+
1
;
i
<
ourend
;
i
++
)
if
(
note
)
offset
=
HARD_REGNO_NREGS
(
regno
,
GET_MODE
(
XEXP
(
note
,
0
)));
else
offset
=
1
;
for
(
i
=
regno
+
offset
;
i
<
ourend
;
i
++
)
move_deaths
(
gen_rtx
(
REG
,
reg_raw_mode
[
i
],
i
),
maybe_kill_insn
,
from_cuid
,
to_insn
,
&
oldnotes
);
}
...
...
This diff is collapsed.
Click to expand it.
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