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
5d7ef82a
Commit
5d7ef82a
authored
May 17, 2001
by
Bernd Schmidt
Committed by
Bernd Schmidt
May 17, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correctly count substitutions if eliminations are going on.
From-SVN: r42198
parent
2e2ed7d2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
gcc/ChangeLog
+3
-0
gcc/reload1.c
+7
-4
No files found.
gcc/ChangeLog
View file @
5d7ef82a
...
...
@@ -3,6 +3,9 @@
*
stmt
.
c
(
expand_asm_operands
)
:
For
inout
operands
,
make
sure
the
substitution
of
'='
for
'+'
makes
it
into
the
rtl
.
*
reload1
.
c
(
delete_output_reload
)
:
Call
eliminate_regs
on
substed
.
(
reload_as_needed
)
:
Call
update_eliminable_offsets
a
bit
later
.
2001
-
05
-
17
Gerald
Pfeifer
<
pfeifer
@dbai
.
tuwien
.
ac
.
at
>
*
gcc
.
texi
(
gccbug
)
:
Refer
to
the
web
pages
for
detailed
information
...
...
gcc/reload1.c
View file @
5d7ef82a
...
...
@@ -3874,9 +3874,6 @@ reload_as_needed (live_known)
spill_reg_order
);
}
if
(
num_eliminable
&&
chain
->
need_elim
)
update_eliminable_offsets
();
if
(
n_reloads
>
0
)
{
rtx
next
=
NEXT_INSN
(
insn
);
...
...
@@ -3923,6 +3920,10 @@ reload_as_needed (live_known)
NOTE_LINE_NUMBER
(
p
)
=
NOTE_INSN_DELETED
;
}
}
if
(
num_eliminable
&&
chain
->
need_elim
)
update_eliminable_offsets
();
/* Any previously reloaded spilled pseudo reg, stored in this insn,
is no longer validly lying around to save a future reload.
Note that this does not detect pseudos that were reloaded
...
...
@@ -7599,7 +7600,9 @@ delete_output_reload (insn, j, last_reload_reg)
}
n_occurrences
=
count_occurrences
(
PATTERN
(
insn
),
reg
,
0
);
if
(
substed
)
n_occurrences
+=
count_occurrences
(
PATTERN
(
insn
),
substed
,
0
);
n_occurrences
+=
count_occurrences
(
PATTERN
(
insn
),
eliminate_regs
(
substed
,
0
,
NULL_RTX
),
0
);
if
(
n_occurrences
>
n_inherited
)
return
;
...
...
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