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
b4b4db94
Commit
b4b4db94
authored
33 years ago
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r223
parent
70beb075
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
4 deletions
+22
-4
gcc/global.c
+22
-4
No files found.
gcc/global.c
View file @
b4b4db94
...
...
@@ -308,15 +308,33 @@ global_alloc (file)
/* Track which registers have already been used. Start with registers
explicitly in the rtl, then registers allocated by local register
allocation.
We consider registers that do not have to be saved over calls as if
they were already used since there is no cost in using them. */
allocation. */
CLEAR_HARD_REG_SET
(
regs_used_so_far
);
#ifdef LEAF_REGISTERS
/* If we are doing the leaf function optimization, and this is a leaf
function, it means that the registers that take work to save are those
that need a register window. So prefer the ones that can be used in
a leaf function. */
{
char
*
cheap_regs
;
static
char
leaf_regs
[]
=
LEAF_REGISTERS
;
if
(
only_leaf_regs_used
()
&&
leaf_function_p
())
cheap_regs
=
leaf_regs
;
else
cheap_regs
=
call_used_regs
;
for
(
i
=
0
;
i
<
FIRST_PSEUDO_REGISTER
;
i
++
)
if
(
regs_ever_live
[
i
]
||
cheap_regs
[
i
])
SET_HARD_REG_BIT
(
regs_used_so_far
,
i
);
}
#else
/* We consider registers that do not have to be saved over calls as if
they were already used since there is no cost in using them. */
for
(
i
=
0
;
i
<
FIRST_PSEUDO_REGISTER
;
i
++
)
if
(
regs_ever_live
[
i
]
||
call_used_regs
[
i
])
SET_HARD_REG_BIT
(
regs_used_so_far
,
i
);
#endif
for
(
i
=
FIRST_PSEUDO_REGISTER
;
i
<
max_regno
;
i
++
)
if
(
reg_renumber
[
i
]
>=
0
)
...
...
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