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
0b064172
Commit
0b064172
authored
Apr 29, 2013
by
Ian Bolton
Committed by
Ian Bolton
Apr 29, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[AArch64] Support LDR/STR from/to S and D registers
From-SVN: r198425
parent
473cec55
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
8 deletions
+18
-8
gcc/ChangeLog
+6
-0
gcc/config/aarch64/aarch64.md
+12
-8
No files found.
gcc/ChangeLog
View file @
0b064172
2013-04-29 Ian Bolton <ian.bolton@arm.com>
* config/aarch64/aarch64.md (movsi_aarch64): Support LDR/STR
from/to S register.
(movdi_aarch64): Support LDR/STR from/to D register.
2013-04-29 Ian Bolton <ian.bolton@arm.com>
* common/config/aarch64/aarch64-common.c: Enable REE pass at O2
or higher by default.
...
...
gcc/config/aarch64/aarch64.md
View file @
0b064172
...
...
@@ -809,26 +809,28 @@
)
(define_insn "
*
movsi_aarch64"
[
(set (match_operand:SI 0 "nonimmediate_operand" "=r,r,r,
m,
*w, r,*
w")
(match_operand:SI 1 "aarch64_mov_operand"
" r,M,m,rZ
,rZ,
*w,*
w"))]
[
(set (match_operand:SI 0 "nonimmediate_operand" "=r,r,r,
*w,m, m,
*
w, r,
*
w")
(match_operand:SI 1 "aarch64_mov_operand"
" r,M,m, m,rZ,
*w
,rZ,*
w,
*
w"))]
"(register_operand (operands
[
0
]
, SImode)
|| aarch64_reg_or_zero (operands
[
1
]
, SImode))"
"@
mov
\\
t%w0, %w1
mov
\\
t%w0, %1
ldr
\\
t%w0, %1
ldr
\\
t%s0, %1
str
\\
t%w1, %0
str
\\
t%s1, %0
fmov
\\
t%s0, %w1
fmov
\\
t%w0, %s1
fmov
\\
t%s0, %s1"
[
(set_attr "v8type" "move,alu,load1,store1,fmov,fmov,fmov")
[
(set_attr "v8type" "move,alu,load1,
load1,store1,
store1,fmov,fmov,fmov")
(set_attr "mode" "SI")
(set_attr "fp" "
*,*
,
*,*
,yes,yes,yes")]
(set_attr "fp" "
*,*
,
*,*
,
*,*
,
yes,yes,yes")]
)
(define_insn "
*
movdi_aarch64"
[
(set (match_operand:DI 0 "nonimmediate_operand" "=r,k,r,r,r,
m,
r, r,
*w, r,*
w,w")
(match_operand:DI 1 "aarch64_mov_operand" " r,r,k,N,m,
rZ
,Usa,Ush,rZ,
*w,*
w,Dd"))]
[
(set (match_operand:DI 0 "nonimmediate_operand" "=r,k,r,r,r,
*w,m, m,
r, r, *
w, r,
*
w,w")
(match_operand:DI 1 "aarch64_mov_operand" " r,r,k,N,m,
m,rZ,
*w
,Usa,Ush,rZ,*
w,
*
w,Dd"))]
"(register_operand (operands
[
0
]
, DImode)
|| aarch64_reg_or_zero (operands
[
1
]
, DImode))"
"@
...
...
@@ -837,16 +839,18 @@
mov
\\
t%x0, %1
mov
\\
t%x0, %1
ldr
\\
t%x0, %1
ldr
\\
t%d0, %1
str
\\
t%x1, %0
str
\\
t%d1, %0
adr
\\
t%x0, %a1
adrp
\\
t%x0, %A1
fmov
\\
t%d0, %x1
fmov
\\
t%x0, %d1
fmov
\\
t%d0, %d1
movi
\\
t%d0, %1"
[
(set_attr "v8type" "move,move,move,alu,load1,store1,adr,adr,fmov,fmov,fmov,fmov")
[
(set_attr "v8type" "move,move,move,alu,load1,
load1,store1,
store1,adr,adr,fmov,fmov,fmov,fmov")
(set_attr "mode" "DI")
(set_attr "fp" "
*,*
,
*,*
,
*,*
,
*,*
,yes,yes,yes,yes")]
(set_attr "fp" "
*,*
,
*,*
,
*,*
,
*,*
,
*,*
,
yes,yes,yes,yes")]
)
(define_insn "insv_imm
<mode>
"
...
...
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