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
c74fa651
Commit
c74fa651
authored
May 21, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(choose_reload_regs): Handle earlyclobbers
when inheriting from reg_last_reload_reg. From-SVN: r4524
parent
6de47384
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
12 deletions
+34
-12
gcc/reload1.c
+34
-12
No files found.
gcc/reload1.c
View file @
c74fa651
...
...
@@ -4820,18 +4820,40 @@ choose_reload_regs (insn, avoid_return_reg)
if
(
k
==
nr
)
{
/* Mark the register as in use for this part of
the insn. */
mark_reload_reg_in_use
(
spill_regs
[
i
],
reload_opnum
[
r
],
reload_when_needed
[
r
],
reload_mode
[
r
]);
reload_reg_rtx
[
r
]
=
reg_last_reload_reg
[
regno
];
reload_inherited
[
r
]
=
1
;
reload_inheritance_insn
[
r
]
=
reg_reloaded_insn
[
i
];
reload_spill_index
[
r
]
=
i
;
SET_HARD_REG_BIT
(
reload_reg_used_for_inherit
,
spill_regs
[
i
]);
int
i1
;
/* We found a register that contains the
value we need. If this register is the
same as an `earlyclobber' operand of the
current insn, just mark it as a place to
reload from since we can't use it as the
reload register itself. */
for
(
i1
=
0
;
i1
<
n_earlyclobbers
;
i1
++
)
if
(
reg_overlap_mentioned_for_reload_p
(
reg_last_reload_reg
[
regno
],
reload_earlyclobbers
[
i1
]))
break
;
if
(
i1
!=
n_earlyclobbers
)
reload_override_in
[
r
]
=
reg_last_reload_reg
[
regno
];
else
{
/* We can use this as a reload reg. */
/* Mark the register as in use for this part of
the insn. */
mark_reload_reg_in_use
(
spill_regs
[
i
],
reload_opnum
[
r
],
reload_when_needed
[
r
],
reload_mode
[
r
]);
reload_reg_rtx
[
r
]
=
reg_last_reload_reg
[
regno
];
reload_inherited
[
r
]
=
1
;
reload_inheritance_insn
[
r
]
=
reg_reloaded_insn
[
i
];
reload_spill_index
[
r
]
=
i
;
SET_HARD_REG_BIT
(
reload_reg_used_for_inherit
,
spill_regs
[
i
]);
}
}
}
}
...
...
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