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
278f7e9e
Commit
278f7e9e
authored
May 20, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r1034
parent
df6ee552
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
51 additions
and
7 deletions
+51
-7
gcc/reload1.c
+51
-7
No files found.
gcc/reload1.c
View file @
278f7e9e
...
...
@@ -4479,6 +4479,7 @@ emit_reload_insns (insn)
int
special
;
/* Values to be put in spill_reg_store are put here first. */
rtx
new_spill_reg_store
[
FIRST_PSEUDO_REGISTER
];
int
is_asm
=
asm_noperands
(
PATTERN
(
insn
))
>=
0
;
/* If this is a CALL_INSN preceded by USE insns, any reload insns
must go in front of the first USE insn, not in front of INSN. */
...
...
@@ -4850,7 +4851,15 @@ emit_reload_insns (insn)
{
reload_insn
=
gen_input_reload
(
second_reload_reg
,
oldequiv
,
where
);
oldequiv
,
where
,
is_asm
);
/* If we can't create the reload insn,
report an error and give up. */
if
(
reload_insn
==
0
)
{
error_for_asm
(
insn
,
"`asm' operand requires impossible reload"
);
return
;
}
if
(
this_reload_insn
==
0
)
this_reload_insn
=
reload_insn
;
oldequiv
=
second_reload_reg
;
...
...
@@ -4863,7 +4872,15 @@ emit_reload_insns (insn)
if
(
!
special
)
{
reload_insn
=
gen_input_reload
(
reloadreg
,
oldequiv
,
where
);
oldequiv
,
where
,
is_asm
);
/* If we can't create the reload insn,
report an error and give up. */
if
(
reload_insn
==
0
)
{
error_for_asm
(
insn
,
"`asm' operand requires impossible reload"
);
return
;
}
if
(
this_reload_insn
==
0
)
this_reload_insn
=
reload_insn
;
}
...
...
@@ -5379,13 +5396,17 @@ emit_reload_insns (insn)
}
/* Emit code before BEFORE_INSN to perform an input reload of IN to RELOADREG.
Returns first insn emitted. */
Returns first insn emitted.
If IS_ASM, check the emitted insns for validity.
If they are invalid, delete them and return 0. */
rtx
gen_input_reload
(
reloadreg
,
in
,
before_insn
)
gen_input_reload
(
reloadreg
,
in
,
before_insn
,
is_asm
)
rtx
reloadreg
;
rtx
in
;
rtx
before_insn
;
int
is_asm
;
{
register
rtx
prev_insn
=
PREV_INSN
(
before_insn
);
...
...
@@ -5493,16 +5514,39 @@ gen_input_reload (reloadreg, in, before_insn)
/* If IN is a simple operand, use gen_move_insn. */
else
if
(
GET_RTX_CLASS
(
GET_CODE
(
in
))
==
'o'
||
GET_CODE
(
in
)
==
SUBREG
)
emit_insn_before
(
gen_move_insn
(
reloadreg
,
in
),
before_insn
);
{
rtx
x
=
emit_insn_before
(
gen_move_insn
(
reloadreg
,
in
),
before_insn
);
if
(
is_asm
&&
recog_memoized
(
x
)
<
0
)
{
delete_insn
(
x
);
return
0
;
}
}
#ifdef HAVE_reload_load_address
else
if
(
HAVE_reload_load_address
)
emit_insn_before
(
gen_reload_load_address
(
reloadreg
,
in
),
before_insn
);
{
rtx
x
=
emit_insn_before
(
gen_reload_load_address
(
reloadreg
,
in
),
before_insn
);
if
(
is_asm
&&
recog_memoized
(
x
)
<
0
)
{
delete_insn
(
x
);
return
0
;
}
}
#endif
/* Otherwise, just write (set REGLOADREG IN) and hope for the best. */
else
emit_insn_before
(
gen_rtx
(
SET
,
VOIDmode
,
reloadreg
,
in
),
before_insn
);
{
rtx
x
=
emit_insn_before
(
gen_rtx
(
SET
,
VOIDmode
,
reloadreg
,
in
),
before_insn
);
if
(
is_asm
&&
recog_memoized
(
x
)
<
0
)
{
delete_insn
(
x
);
return
0
;
}
}
/* Return the first insn emitted.
We can not just return PREV_INSN (before_insn), because there may have
...
...
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