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
11b25716
Commit
11b25716
authored
Jan 26, 2004
by
Fariborz Jahanian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use adjust_address_nv directly with appropriate mode.
OKed by David Edelsohn. From-SVN: r76645
parent
4c45af42
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
gcc/config/rs6000/rs6000.md
+8
-7
No files found.
gcc/config/rs6000/rs6000.md
View file @
11b25716
...
...
@@ -9898,13 +9898,13 @@
"
{
rtx temp = gen_reg_rtx (Pmode);
int units_per_word = (TARGET_32BIT) ? 4 : 8;
enum machine_mode wmode = (TARGET_32BIT) ? SImode : word_mode;
/
* Copy the backchain to the first word, sp to the second. *
/
emit_move_insn (temp, gen_rtx_MEM (Pmode, operands
[
1
]
));
emit_move_insn (operand_subword (operands
[
0
]
, 0, 0,
(TARGET_32BIT ? DImode : TImode)),
temp);
emit_move_insn (operand_subword (operands
[
0
]
, 1, 0, (TARGET_32BIT ? DImode : TImode)),
emit_move_insn (adjust_address_nv (operands
[
0
]
, wmode, 0), temp);
emit_move_insn (adjust_address_nv (operands
[
0
]
, wmode, units_per_word),
operands
[
1
]
);
DONE;
}")
...
...
@@ -9916,13 +9916,14 @@
"
{
rtx temp = gen_reg_rtx (Pmode);
int units_per_word = (TARGET_32BIT) ? 4 : 8;
enum machine_mode wmode = (TARGET_32BIT) ? SImode : word_mode;
/
* Restore the backchain from the first word, sp from the second. *
/
emit_move_insn (temp,
operand_subword (operands
[
1
]
, 0, 0, (TARGET_32BIT ? DImode : TImode)
));
adjust_address_nv (operands
[
1
]
, wmode, 0
));
emit_move_insn (operands
[
0
]
,
operand_subword (operands
[
1
]
, 1, 0,
(TARGET_32BIT ? DImode : TImode)));
adjust_address_nv (operands
[
1
]
, wmode, units_per_word));
emit_move_insn (gen_rtx_MEM (Pmode, operands
[
0
]
), temp);
DONE;
}")
...
...
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