Commit e033a023 by David Edelsohn Committed by David Edelsohn

* config/rs6000/rs6000.md (save_fpregs_{si,di}): Add length attribute.

From-SVN: r67160
parent f33f871f
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> 2003-05-24 Nathanael Nerode <neroden@gcc.gnu.org>
* config/rs6000/440.md, config/stormy16/stormy16protos.h, * config/rs6000/440.md, config/stormy16/stormy16protos.h,
......
...@@ -14439,31 +14439,33 @@ ...@@ -14439,31 +14439,33 @@
[(set_attr "type" "mfcr")]) [(set_attr "type" "mfcr")])
(define_insn "*stmw" (define_insn "*stmw"
[(match_parallel 0 "stmw_operation" [(match_parallel 0 "stmw_operation"
[(set (match_operand:SI 1 "memory_operand" "=m") [(set (match_operand:SI 1 "memory_operand" "=m")
(match_operand:SI 2 "gpc_reg_operand" "r"))])] (match_operand:SI 2 "gpc_reg_operand" "r"))])]
"TARGET_MULTIPLE" "TARGET_MULTIPLE"
"{stm|stmw} %2,%1") "{stm|stmw} %2,%1")
(define_insn "*save_fpregs_si" (define_insn "*save_fpregs_si"
[(match_parallel 0 "any_operand" [(match_parallel 0 "any_operand"
[(clobber (match_operand:SI 1 "register_operand" "=l")) [(clobber (match_operand:SI 1 "register_operand" "=l"))
(use (match_operand:SI 2 "call_operand" "s")) (use (match_operand:SI 2 "call_operand" "s"))
(set (match_operand:DF 3 "memory_operand" "=m") (set (match_operand:DF 3 "memory_operand" "=m")
(match_operand:DF 4 "gpc_reg_operand" "f"))])] (match_operand:DF 4 "gpc_reg_operand" "f"))])]
"TARGET_32BIT" "TARGET_32BIT"
"bl %z2" "bl %z2"
[(set_attr "type" "branch")]) [(set_attr "type" "branch")
(set_attr "length" "4")])
(define_insn "*save_fpregs_di" (define_insn "*save_fpregs_di"
[(match_parallel 0 "any_operand" [(match_parallel 0 "any_operand"
[(clobber (match_operand:DI 1 "register_operand" "=l")) [(clobber (match_operand:DI 1 "register_operand" "=l"))
(use (match_operand:DI 2 "call_operand" "s")) (use (match_operand:DI 2 "call_operand" "s"))
(set (match_operand:DF 3 "memory_operand" "=m") (set (match_operand:DF 3 "memory_operand" "=m")
(match_operand:DF 4 "gpc_reg_operand" "f"))])] (match_operand:DF 4 "gpc_reg_operand" "f"))])]
"TARGET_64BIT" "TARGET_64BIT"
"bl %z2" "bl %z2"
[(set_attr "type" "branch")]) [(set_attr "type" "branch")
(set_attr "length" "4")])
; These are to explain that changes to the stack pointer should ; These are to explain that changes to the stack pointer should
; not be moved over stores to stack memory. ; not be moved over stores to stack memory.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment