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
d9b7db12
Commit
d9b7db12
authored
Jan 26, 2004
by
Fariborz Jahanian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Split slow unaligned load/store into smaller loads and stores.
OKed by David Edelsohn. From-SVN: r76646
parent
11b25716
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
gcc/config/rs6000/rs6000.c
+40
-0
No files found.
gcc/config/rs6000/rs6000.c
View file @
d9b7db12
...
...
@@ -3426,6 +3426,46 @@ rs6000_emit_move (rtx dest, rtx source, enum machine_mode mode)
adjust_address
(
operands
[
1
],
SImode
,
4
));
return
;
}
else
if
(
mode
==
DImode
&&
TARGET_POWERPC64
&&
GET_CODE
(
operands
[
0
])
==
REG
&&
GET_CODE
(
operands
[
1
])
==
MEM
&&
optimize
>
0
&&
SLOW_UNALIGNED_ACCESS
(
DImode
,
MEM_ALIGN
(
operands
[
1
])
>
32
?
32
:
MEM_ALIGN
(
operands
[
1
]))
&&
!
no_new_pseudos
)
{
rtx
mem
;
rtx
reg
=
gen_reg_rtx
(
SImode
);
mem
=
adjust_address
(
operands
[
1
],
SImode
,
0
);
emit_insn
(
gen_rtx_SET
(
SImode
,
reg
,
mem
));
reg
=
simplify_gen_subreg
(
DImode
,
reg
,
SImode
,
0
);
emit_insn
(
gen_insvdi
(
operands
[
0
],
GEN_INT
(
32
),
const0_rtx
,
reg
));
reg
=
gen_reg_rtx
(
SImode
);
mem
=
adjust_address
(
operands
[
1
],
SImode
,
4
);
emit_insn
(
gen_rtx_SET
(
SImode
,
reg
,
mem
));
reg
=
simplify_gen_subreg
(
DImode
,
reg
,
SImode
,
0
);
emit_insn
(
gen_insvdi
(
operands
[
0
],
GEN_INT
(
32
),
GEN_INT
(
32
),
reg
));
return
;
}
else
if
(
mode
==
DImode
&&
TARGET_POWERPC64
&&
GET_CODE
(
operands
[
1
])
==
REG
&&
GET_CODE
(
operands
[
0
])
==
MEM
&&
optimize
>
0
&&
SLOW_UNALIGNED_ACCESS
(
DImode
,
MEM_ALIGN
(
operands
[
0
])
>
32
?
32
:
MEM_ALIGN
(
operands
[
0
]))
&&
!
no_new_pseudos
)
{
rtx
mem
;
rtx
reg
=
gen_reg_rtx
(
DImode
);
emit_move_insn
(
reg
,
gen_rtx_LSHIFTRT
(
DImode
,
operands
[
1
],
GEN_INT
(
32
)));
mem
=
adjust_address
(
operands
[
0
],
SImode
,
0
);
emit_move_insn
(
mem
,
simplify_gen_subreg
(
SImode
,
reg
,
DImode
,
0
));
mem
=
adjust_address
(
operands
[
0
],
SImode
,
4
);
emit_move_insn
(
mem
,
simplify_gen_subreg
(
SImode
,
operands
[
1
],
DImode
,
0
));
return
;
}
if
(
!
no_new_pseudos
)
{
...
...
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