This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] h8300.md: Don't push the stack pointer.


Hi,

Attached is a patch to prevent the stack pointer from being pushed.

Without this patch, locale-inst.cc in libstdc++ doesn't build with -ms
-mn.

Tested on h8300 port.  Committed.

Kazu Hirata

2002-12-19  Kazu Hirata  <kazu@cs.umass.edu>

	* config/h8300/h8300.md (pushqi_h8300): Don't push the stack
	pointer.
	(pushqi_h8300hs): Likewise.
	(pushhi_h8300): Likewise.
	(pushhi_h8300hs): Likewise.

Index: h8300.md
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/h8300/h8300.md,v
retrieving revision 1.124
diff -u -r1.124 h8300.md
--- h8300.md	16 Dec 2002 18:21:14 -0000	1.124
+++ h8300.md	19 Dec 2002 20:12:47 -0000
@@ -117,7 +117,8 @@
 		   (plus:HI (reg:HI SP_REG) (const_int -2)))
 	      (set (mem:QI (plus:HI (reg:HI SP_REG) (const_int -1)))
 		   (match_operand:QI 0 "register_operand" "r"))])]
-  "TARGET_H8300"
+  "TARGET_H8300
+   && REGNO (operands[0]) != SP_REG"
   "mov.w\\t%T0,@-r7"
   [(set_attr "length" "2")
    (set_attr "cc" "clobber")])
@@ -127,7 +128,8 @@
 		   (plus:SI (reg:SI SP_REG) (const_int -4)))
 	      (set (mem:QI (plus:SI (reg:SI SP_REG) (const_int -3)))
 		   (match_operand:QI 0 "register_operand" "r"))])]
-  "TARGET_H8300H || TARGET_H8300S"
+  "(TARGET_H8300H || TARGET_H8300S)
+   && REGNO (operands[0]) != SP_REG"
   "mov.l\\t%S0,@-er7"
   [(set_attr "length" "4")
    (set_attr "cc" "clobber")])
@@ -209,7 +211,8 @@
 (define_expand "pushhi1_h8300"
   [(set (mem:HI (pre_dec:HI (reg:HI SP_REG)))
 	(match_operand:HI 0 "register_operand" ""))]
-  "TARGET_H8300"
+  "TARGET_H8300
+   && REGNO (operands[0]) != SP_REG"
   "")
 
 (define_insn "pushhi1_h8300hs"
@@ -217,7 +220,8 @@
 		   (plus:SI (reg:SI SP_REG) (const_int -4)))
 	      (set (mem:HI (plus:SI (reg:SI SP_REG) (const_int -2)))
 		   (match_operand:HI 0 "register_operand" "r"))])]
-  "TARGET_H8300H || TARGET_H8300S"
+  "(TARGET_H8300H || TARGET_H8300S)
+   && REGNO (operands[0]) != SP_REG"
   "mov.l\\t%S0,@-er7"
   [(set_attr "length" "4")
    (set_attr "cc" "clobber")])


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]