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
e033a023
Commit
e033a023
authored
May 25, 2003
by
David Edelsohn
Committed by
David Edelsohn
May 25, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/rs6000/rs6000.md (save_fpregs_{si,di}): Add length attribute.
From-SVN: r67160
parent
f33f871f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
21 deletions
+27
-21
gcc/ChangeLog
+4
-0
gcc/config/rs6000/rs6000.md
+23
-21
No files found.
gcc/ChangeLog
View file @
e033a023
2003-05-24 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.md (save_fpregs_{si,di}): Add length attribute.
2003-05-24 Nathanael Nerode <neroden@gcc.gnu.org>
* config/rs6000/440.md, config/stormy16/stormy16protos.h,
...
...
gcc/config/rs6000/rs6000.md
View file @
e033a023
...
...
@@ -14439,31 +14439,33 @@
[
(set_attr "type" "mfcr")
]
)
(define_insn "
*
stmw"
[
(match_parallel 0 "stmw_operation"
[
(set (match_operand:SI 1 "memory_operand" "=m")
(match_operand:SI 2 "gpc_reg_operand" "r"))])]
"TARGET_MULTIPLE"
"{stm|stmw} %2,%1")
[
(match_parallel 0 "stmw_operation"
[
(set (match_operand:SI 1 "memory_operand" "=m")
(match_operand:SI 2 "gpc_reg_operand" "r"))])]
"TARGET_MULTIPLE"
"{stm|stmw} %2,%1")
(define_insn "
*
save_fpregs_si"
[
(match_parallel 0 "any_operand"
[
(clobber (match_operand:SI 1 "register_operand" "=l"))
(use (match_operand:SI 2 "call_operand" "s"))
(set (match_operand:DF 3 "memory_operand" "=m")
(match_operand:DF 4 "gpc_reg_operand" "f"))])]
"TARGET_32BIT"
"bl %z2"
[
(set_attr "type" "branch")
]
)
[
(match_parallel 0 "any_operand"
[
(clobber (match_operand:SI 1 "register_operand" "=l"))
(use (match_operand:SI 2 "call_operand" "s"))
(set (match_operand:DF 3 "memory_operand" "=m")
(match_operand:DF 4 "gpc_reg_operand" "f"))])]
"TARGET_32BIT"
"bl %z2"
[
(set_attr "type" "branch")
(set_attr "length" "4")])
(define_insn "
*
save_fpregs_di"
[
(match_parallel 0 "any_operand"
[
(clobber (match_operand:DI 1 "register_operand" "=l"))
(use (match_operand:DI 2 "call_operand" "s"))
(set (match_operand:DF 3 "memory_operand" "=m")
(match_operand:DF 4 "gpc_reg_operand" "f"))])]
"TARGET_64BIT"
"bl %z2"
[
(set_attr "type" "branch")
]
)
[
(match_parallel 0 "any_operand"
[
(clobber (match_operand:DI 1 "register_operand" "=l"))
(use (match_operand:DI 2 "call_operand" "s"))
(set (match_operand:DF 3 "memory_operand" "=m")
(match_operand:DF 4 "gpc_reg_operand" "f"))])]
"TARGET_64BIT"
"bl %z2"
[
(set_attr "type" "branch")
(set_attr "length" "4")])
; These are to explain that changes to the stack pointer should
; not be moved over stores to stack memory.
...
...
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