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]

misc patch collection



These all came up while poking at other stuff.  The resource change
silences some warnings, the i386.h change is for correctness, and the
i386.md change is purely aesthetic.

Where are machine-specific predicates supposed to be prototyped?

zw

1999-10-04 13:12 -0700  Zack Weinberg  <zack@bitmover.com>

	* resource.c (find_free_register): Mark third arg constant.
	* resource.h: Adjust proto to match.

	* i386.h (PREDICATE_CODES): Add entry for long_memory_operand.
	* i386.md: Give all anonymous define_insns names.

===================================================================
Index: resource.c
--- resource.c	1999/09/20 09:59:52	1.14
+++ resource.c	1999/10/04 20:11:49
@@ -1249,7 +1249,7 @@ mark_end_of_function_resources (trial, i
 rtx
 find_free_register (current_insn, last_insn, class_str, mode, reg_set)
      rtx current_insn, last_insn;
-     char *class_str;
+     const char *class_str;
      int mode;
      HARD_REG_SET *reg_set;
 {
===================================================================
Index: resource.h
--- resource.h	1999/10/03 16:47:51	1.3
+++ resource.h	1999/10/04 20:11:49
@@ -42,6 +42,6 @@ extern void incr_ticks_for_insn		PROTO((
 extern void mark_end_of_function_resources PROTO ((rtx, int));
 extern void init_resource_info		PROTO((rtx));
 extern void free_resource_info		PROTO((void));
-extern rtx find_free_register		PROTO((rtx, rtx, char *, int,
+extern rtx find_free_register		PROTO((rtx, rtx, const char *, int,
 					       HARD_REG_SET *));
 extern int reg_dead_p			PROTO((rtx, rtx));
===================================================================
Index: config/i386/i386.h
--- i386.h	1999/09/20 09:59:58	1.71
+++ i386.h	1999/10/04 20:11:51
@@ -2395,7 +2395,8 @@ do { long l;						\
 				 LSHIFTRT, ROTATERT}},			\
   {"memory_displacement_operand", {MEM}},				\
   {"cmpsi_operand", {CONST_INT, CONST_DOUBLE, CONST, SYMBOL_REF,	\
-		     LABEL_REF, SUBREG, REG, MEM, AND}},
+		     LABEL_REF, SUBREG, REG, MEM, AND}},		\
+  {"long_memory_operand", {MEM}},
 
 /* Variables in i386.c */
 extern const char *ix86_cpu_string;		/* for -mcpu=<xxx> */
===================================================================
Index: config/i386/i386.md
--- i386.md	1999/10/02 17:59:37	1.87
+++ i386.md	1999/10/04 20:11:53
@@ -953,7 +953,7 @@
   "* return output_fp_compare (insn, operands, 0, 0);"
   [(set_attr "type" "fcmp")])
 
-(define_insn ""
+(define_insn "*cmpfp_2_sf_1"
   [(set (match_operand:HI 0 "register_operand" "=a")
 	(unspec:HI
 	  [(compare:CCFP
@@ -972,7 +972,7 @@
   "* return output_fp_compare (insn, operands, 0, 0);"
   [(set_attr "type" "fcmp")])
 
-(define_insn ""
+(define_insn "*cmpfp_2_df_1"
   [(set (match_operand:HI 0 "register_operand" "=a")
 	(unspec:HI
 	  [(compare:CCFP
@@ -991,7 +991,7 @@
   "* return output_fp_compare (insn, operands, 0, 0);"
   [(set_attr "type" "fcmp")])
 
-(define_insn ""
+(define_insn "*cmpfp_2_xf_1"
   [(set (match_operand:HI 0 "register_operand" "=a")
 	(unspec:HI
 	  [(compare:CCFP
@@ -1012,7 +1012,7 @@
   "* return output_fp_compare (insn, operands, 0, 1);"
   [(set_attr "type" "fcmp")])
 
-(define_insn ""
+(define_insn "*cmpfp_2u_1"
   [(set (match_operand:HI 0 "register_operand" "=a")
 	(unspec:HI
 	  [(compare:CCFPU
@@ -1031,7 +1031,7 @@
 ;; can get rid of this once we teach reload to do memory input reloads 
 ;; via pushes.
 
-(define_insn ""
+(define_insn "x86_ficom_1"
   [(set (reg:CCFP 18)
 	(compare:CCFP
 	  (match_operand 0 "register_operand" "f,f")
@@ -2372,7 +2372,7 @@
 ;; emit moves.
 
 ;; %%% Kill these when call knows how to work out a DFmode push earlier. 
-(define_insn ""
+(define_insn "x86_dummy_extendsfdf2"
   [(set (match_operand:DF 0 "push_operand" "=<")
 	(float_extend:DF (match_operand:SF 1 "nonimmediate_operand" "f")))]
   "0"
@@ -2385,7 +2385,7 @@
   [(set (reg:SI 7) (plus:SI (reg:SI 7) (const_int -8)))
    (set (mem:DF (reg:SI 7)) (float_extend:DF (match_dup 1)))])
 
-(define_insn ""
+(define_insn "x86_dummy_extendsfxf2"
   [(set (match_operand:XF 0 "push_operand" "=<")
 	(float_extend:XF (match_operand:SF 1 "nonimmediate_operand" "f")))]
   "0"
@@ -2398,7 +2398,7 @@
   [(set (reg:SI 7) (plus:SI (reg:SI 7) (const_int -12)))
    (set (mem:DF (reg:SI 7)) (float_extend:XF (match_dup 1)))])
 
-(define_insn ""
+(define_insn "x86_dummy_extenddfxf2"
   [(set (match_operand:XF 0 "push_operand" "=<")
 	(float_extend:XF (match_operand:DF 1 "nonimmediate_operand" "f")))]
   "0"
@@ -3117,7 +3117,7 @@
   [(set_attr "type" "alu")])
 
 ;; %%% Conditionally split these post-reload for better scheduling.
-(define_insn ""
+(define_insn "*addsi_lea_1"
   [(set (match_operand:SI 0 "register_operand" "=r")
         (plus:SI (plus:SI (match_operand:SI 1 "register_operand" "r")
 			  (match_operand:SI 2 "register_operand" "%r"))
@@ -3130,7 +3130,7 @@
 }"
   [(set_attr "type" "lea")])
 
-(define_insn ""
+(define_insn "*addsi_lea_2"
   [(set (match_operand:SI 0 "register_operand" "=r")
         (plus:SI (mult:SI (match_operand:SI 1 "reg_no_sp_operand" "r")
 			  (match_operand:SI 2 "const248_operand" "I"))
@@ -3143,7 +3143,7 @@
 }"
   [(set_attr "type" "lea")])
 
-(define_insn ""
+(define_insn "*addsi_lea_3"
   [(set (match_operand:SI 0 "register_operand" "=r")
         (plus:SI (plus:SI (mult:SI (match_operand:SI 1 "reg_no_sp_operand" "r")
 				   (match_operand:SI 2 "const248_operand" "I"))
@@ -3855,7 +3855,8 @@
   "{cltd|cdq}\;idiv{l}\\t%2"
   [(set_attr "type" "multi")])
 
-(define_insn ""
+;; ??? If edx contains garbage, result will be wrong?
+(define_insn "*divmodsi_short"
   [(set (match_operand:SI 0 "register_operand" "=a")
 	(div:SI (match_operand:SI 1 "register_operand" "A")
 		(match_operand:SI 2 "nonimmediate_operand" "rm")))
@@ -3920,7 +3921,8 @@
   "xor{l}\\t%3, %3\;div{l}\\t%2"
   [(set_attr "type" "multi")])
 
-(define_insn ""
+;; ??? Garbage in edx, invalid result?
+(define_insn "*udivmodsi4_short"
   [(set (match_operand:SI 0 "register_operand" "=a")
 	(udiv:SI (match_operand:SI 1 "register_operand" "0")
 		 (match_operand:SI 2 "nonimmediate_operand" "rm")))
@@ -3964,7 +3966,7 @@
   ""
   "operands[4] = gen_reg_rtx (HImode);")
 
-(define_insn "*udivmodhi_1"
+(define_insn "*udivmodhi_short"
   [(set (match_operand:HI 0 "register_operand" "=a")
 	(udiv:HI (match_operand:HI 1 "register_operand" "0")
 		 (match_operand:HI 2 "nonimmediate_operand" "rm")))
@@ -4084,7 +4086,7 @@
   [(set_attr "type" "icmp")])
 
 ;; Combine likes to form bit extractions for some tests.  Humor it.
-(define_insn ""
+(define_insn "*testqi_ext_3"
   [(set (reg:CCNO 17)
         (compare:CCNO (zero_extract:SI
 			(match_operand 0 "nonimmediate_operand" "rm")
@@ -4693,7 +4695,7 @@
   "neg{l}\\t%0"
   [(set_attr "type" "negnot")])
 
-(define_insn ""
+(define_insn "*negsi2_cmpno"
   [(set (reg:CCNO 17)
 	(compare:CCNO (neg:SI (match_operand:SI 1 "nonimmediate_operand" "0"))
 		 (const_int 0)))
@@ -4703,7 +4705,7 @@
   "neg{l}\\t%0"
   [(set_attr "type" "negnot")])
 
-(define_insn ""
+(define_insn "*negsi2_cmp"
   [(set (reg:CC 17)
 	(compare:CC (neg:SI (match_operand:SI 1 "nonimmediate_operand" "0"))
 		 (const_int 0)))
@@ -4721,7 +4723,7 @@
   "neg{w}\\t%0"
   [(set_attr "type" "negnot")])
 
-(define_insn ""
+(define_insn "*neghi2_cmpno"
   [(set (reg:CCNO 17)
 	(compare:CCNO (neg:HI (match_operand:HI 1 "nonimmediate_operand" "0"))
 		 (const_int 0)))
@@ -4731,7 +4733,7 @@
   "neg{w}\\t%0"
   [(set_attr "type" "negnot")])
 
-(define_insn ""
+(define_insn "*neghi2_cmp"
   [(set (reg:CC 17)
 	(compare:CC (neg:HI (match_operand:HI 1 "nonimmediate_operand" "0"))
 		 (const_int 0)))
@@ -4749,7 +4751,7 @@
   "neg{b}\\t%0"
   [(set_attr "type" "negnot")])
 
-(define_insn ""
+(define_insn "*negqi2_cmpno"
   [(set (reg:CCNO 17)
 	(compare:CCNO (neg:QI (match_operand:QI 1 "nonimmediate_operand" "0"))
 		 (const_int 0)))
@@ -4759,7 +4761,7 @@
   "neg{b}\\t%0"
   [(set_attr "type" "negnot")])
 
-(define_insn ""
+(define_insn "*negqi2_cmp"
   [(set (reg:CC 17)
 	(compare:CC (neg:QI (match_operand:QI 1 "nonimmediate_operand" "0"))
 		 (const_int 0)))
@@ -4785,7 +4787,7 @@
   [(set_attr "type" "fsgn")
    (set_attr "ppro_uops" "few")])
 
-(define_insn ""
+(define_insn "x86_negextendsfdf2"
   [(set (match_operand:DF 0 "register_operand" "=f")
 	(neg:DF (float_extend:DF
 		  (match_operand:SF 1 "register_operand" "0"))))]
@@ -4802,7 +4804,7 @@
   [(set_attr "type" "fsgn")
    (set_attr "ppro_uops" "few")])
 
-(define_insn ""
+(define_insn "x86_negextenddfxf2"
   [(set (match_operand:XF 0 "register_operand" "=f")
 	(neg:XF (float_extend:XF
 		  (match_operand:DF 1 "register_operand" "0"))))]
@@ -4811,7 +4813,7 @@
   [(set_attr "type" "fsgn")
    (set_attr "ppro_uops" "few")])
 
-(define_insn ""
+(define_insn "x86_negextendsfxf2"
   [(set (match_operand:XF 0 "register_operand" "=f")
 	(neg:XF (float_extend:XF
 		  (match_operand:SF 1 "register_operand" "0"))))]
@@ -4836,7 +4838,7 @@
   "fabs"
   [(set_attr "type" "fsgn")])
 
-(define_insn ""
+(define_insn "x86_absextendsfdf2"
   [(set (match_operand:DF 0 "register_operand" "=f")
 	(abs:DF (float_extend:DF
 		  (match_operand:SF 1 "register_operand" "0"))))]
@@ -4851,7 +4853,7 @@
   "fabs"
   [(set_attr "type" "fsgn")])
 
-(define_insn ""
+(define_insn "x86_absextenddfxf2"
   [(set (match_operand:XF 0 "register_operand" "=f")
 	(abs:XF (float_extend:XF
 	  (match_operand:DF 1 "register_operand" "0"))))]
@@ -4859,7 +4861,7 @@
   "fabs"
   [(set_attr "type" "fsgn")])
 
-(define_insn ""
+(define_insn "x86_absextendsfxf2"
   [(set (match_operand:XF 0 "register_operand" "=f")
 	(abs:XF (float_extend:XF
 	  (match_operand:SF 1 "register_operand" "0"))))]
@@ -4876,7 +4878,7 @@
   "not{l}\\t%0"
   [(set_attr "type" "negnot")])
 
-(define_insn ""
+(define_insn "*one_cmplsi2_1"
   [(set (reg:CCNO 17)
 	(compare:CCNO (not:SI (match_operand:SI 1 "nonimmediate_operand" "0"))
 		    (const_int 0)))
@@ -4917,7 +4919,7 @@
   "operands[0] = gen_lowpart (SImode, operands[0]);
    operands[1] = gen_lowpart (SImode, operands[1]);")
 
-(define_insn ""
+(define_insn "*one_cmplhi2_1"
   [(set (reg:CCNO 17)
 	(compare:CCNO (not:HI (match_operand:HI 1 "nonimmediate_operand" "0"))
 		      (const_int 0)))
@@ -4951,7 +4953,7 @@
    not{l}\\t%k0"
   [(set_attr "type" "negnot")])
 
-(define_insn ""
+(define_insn "*one_cmplqi2_1"
   [(set (reg:CCNO 17)
 	(compare:CCNO (not:QI (match_operand:QI 1 "nonimmediate_operand" "0"))
 		    (const_int 0)))
@@ -5156,7 +5158,7 @@
 	   ]
 	   (const_string "ishift")))])
 
-(define_insn ""
+(define_insn "*ashlsi3_cmpno"
   [(set (reg:CCNO 17)
 	(compare:CCNO
 	  (ashift:SI (match_operand:SI 1 "nonimmediate_operand" "0")
@@ -5232,7 +5234,7 @@
   "operands[0] = gen_lowpart (SImode, operands[0]);
    operands[1] = gen_lowpart (SImode, operands[1]);")
 
-(define_insn ""
+(define_insn "*ashlhi3_cmpno"
   [(set (reg:CCNO 17)
 	(compare:CCNO
 	  (ashift:HI (match_operand:HI 1 "nonimmediate_operand" "0")
@@ -5311,7 +5313,7 @@
 	   ]
 	   (const_string "ishift")))])
 
-(define_insn ""
+(define_insn "*ashlqi3_cmpno"
   [(set (reg:CCNO 17)
 	(compare:CCNO
 	  (ashift:QI (match_operand:QI 1 "nonimmediate_operand" "0")
@@ -5468,7 +5470,7 @@
    sar{l}\\t{%b2, %0|%0, %b2}"
   [(set_attr "type" "ishift")])
 
-(define_insn ""
+(define_insn "*ashrsi3_cmpno"
   [(set (reg:CCNO 17)
 	(compare:CCNO
 	  (ashiftrt:SI (match_operand:SI 1 "nonimmediate_operand" "0,0")
@@ -5493,7 +5495,7 @@
    sar{w}\\t{%b2, %0|%0, %b2}"
   [(set_attr "type" "ishift")])
 
-(define_insn ""
+(define_insn "*ashrhi3_cmpno"
   [(set (reg:CCNO 17)
 	(compare:CCNO
 	  (ashiftrt:HI (match_operand:HI 1 "nonimmediate_operand" "0,0")
@@ -5518,7 +5520,7 @@
    sar{b}\\t{%b2, %0|%0, %b2}"
   [(set_attr "type" "ishift")])
 
-(define_insn ""
+(define_insn "*ashrqi3_cmpno"
   [(set (reg:CCNO 17)
 	(compare:CCNO
 	  (ashiftrt:QI (match_operand:QI 1 "nonimmediate_operand" "0,0")
@@ -5600,7 +5602,7 @@
    shr{l}\\t{%b2, %0|%0, %b2}"
   [(set_attr "type" "ishift")])
 
-(define_insn ""
+(define_insn "*lshrsi3_cmpno"
   [(set (reg:CCNO 17)
 	(compare:CCNO
 	  (lshiftrt:SI (match_operand:SI 1 "nonimmediate_operand" "0,0")
@@ -5625,7 +5627,7 @@
    shr{w}\\t{%b2, %0|%0, %b2}"
   [(set_attr "type" "ishift")])
 
-(define_insn ""
+(define_insn "*lshrhi3_cmpno"
   [(set (reg:CCNO 17)
 	(compare:CCNO
 	  (lshiftrt:HI (match_operand:HI 1 "nonimmediate_operand" "0,0")
@@ -5650,7 +5652,7 @@
    shr{b}\\t{%b2, %0|%0, %b2}"
   [(set_attr "type" "ishift")])
 
-(define_insn ""
+(define_insn "*lshrqi2_cmpno"
   [(set (reg:CCNO 17)
 	(compare:CCNO
 	  (lshiftrt:QI (match_operand:QI 1 "nonimmediate_operand" "0,0")
@@ -5677,7 +5679,7 @@
    rol{l}\\t{%b2, %0|%0, %b2}"
   [(set_attr "type" "ishift")])
 
-(define_insn ""
+(define_insn "*rotlsi3_cmpno"
   [(set (reg:CCNO 17)
 	(compare:CCNO
 	  (rotate:SI (match_operand:SI 1 "nonimmediate_operand" "0,0")
@@ -5702,7 +5704,7 @@
    rol{w}\\t{%b2, %0|%0, %b2}"
   [(set_attr "type" "ishift")])
 
-(define_insn ""
+(define_insn "*rotlhi3_cmpno"
   [(set (reg:CCNO 17)
 	(compare:CCNO
 	  (rotate:HI (match_operand:HI 1 "nonimmediate_operand" "0,0")
@@ -5727,7 +5729,7 @@
    rol{b}\\t{%b2, %0|%0, %b2}"
   [(set_attr "type" "ishift")])
 
-(define_insn ""
+(define_insn "*rotlqi3_cmpno"
   [(set (reg:CCNO 17)
 	(compare:CCNO
 	  (rotate:QI (match_operand:QI 1 "nonimmediate_operand" "0,0")
@@ -5752,7 +5754,7 @@
    ror{l}\\t{%b2, %0|%0, %b2}"
   [(set_attr "type" "ishift")])
 
-(define_insn ""
+(define_insn "*rotrsi3_cmpno"
   [(set (reg:CCNO 17)
 	(compare:CCNO
 	  (rotatert:SI (match_operand:SI 1 "nonimmediate_operand" "0,0")
@@ -5777,7 +5779,7 @@
    ror{w}\\t{%b2, %0|%0, %b2}"
   [(set_attr "type" "ishift")])
 
-(define_insn ""
+(define_insn "*rotrhi3_cmpno"
   [(set (reg:CCNO 17)
 	(compare:CCNO
 	  (rotatert:HI (match_operand:HI 1 "nonimmediate_operand" "0,0")
@@ -5802,7 +5804,7 @@
    ror{b}\\t{%b2, %0|%0, %b2}"
   [(set_attr "type" "ishift")])
 
-(define_insn ""
+(define_insn "*rotrqi3_cmpno"
   [(set (reg:CCNO 17)
 	(compare:CCNO
 	  (rotatert:QI (match_operand:QI 1 "nonimmediate_operand" "0,0")
@@ -6224,7 +6226,7 @@
   current_function_uses_pic_offset_table = 1;
 }")
 
-(define_insn ""
+(define_insn "*tablejump_pic"
   [(set (pc) (match_operand:SI 0 "nonimmediate_operand" "rm"))
    (use (label_ref (match_operand 1 "" "")))]
   ""
@@ -6250,7 +6252,7 @@
   "TARGET_USE_LOOP"
   "")
 
-(define_insn ""
+(define_insn "*dbra_ne"
   [(set (pc)
 	(if_then_else (ne (match_operand:SI 1 "register_operand" "c,*r,*r")
 			  (const_int 1))
@@ -6282,7 +6284,7 @@
 		      (const_int 2)
 		      (const_int 16)))])
 
-(define_insn ""
+(define_insn "*dbra_ge"
   [(set (pc)
 	(if_then_else (ge (match_operand:SI 1 "register_operand" "c,*r,*r")
 			  (const_int 0))
@@ -6448,7 +6450,7 @@
 			copy_to_mode_reg (Pmode, XEXP (operands[0], 0)));
 }")
 
-(define_insn ""
+(define_insn "*call_pop_pic"
   [(call (match_operand:QI 0 "call_insn_operand" "m")
 	 (match_operand:SI 1 "general_operand" "g"))
    (set (reg:SI 7) (plus:SI (reg:SI 7)
@@ -6464,7 +6466,7 @@
 }"
   [(set_attr "type" "call")])
 
-(define_insn ""
+(define_insn "*call_pop_pic2"
   [(call (match_operand:QI 0 "constant_call_address_operand" "")
          (match_operand:SI 1 "general_operand" "g"))
    (set (reg:SI 7) (plus:SI (reg:SI 7)
@@ -6496,7 +6498,7 @@
 			copy_to_mode_reg (Pmode, XEXP (operands[0], 0)));
 }")
 
-(define_insn ""
+(define_insn "*call_pic"
   [(call (match_operand:QI 0 "call_insn_operand" "m")
 	 (match_operand:SI 1 "general_operand" "g"))]
   ;; Operand 1 not used on the i386.
@@ -6511,7 +6513,7 @@
 }"
   [(set_attr "type" "call")])
 
-(define_insn ""
+(define_insn "*call_pic2"
   [(call (match_operand:QI 0 "constant_call_address_operand" "")
          (match_operand:SI 1 "general_operand" "g"))]
   "!HALF_PIC_P ()"
@@ -6553,7 +6555,7 @@
 			copy_to_mode_reg (Pmode, XEXP (operands[1], 0)));
 }")
 
-(define_insn ""
+(define_insn "*call_value_pop_pic"
   [(set (match_operand 0 "" "=rf")
 	(call (match_operand:QI 1 "call_insn_operand" "m")
 	      (match_operand:SI 2 "general_operand" "g")))
@@ -6570,7 +6572,7 @@
 }"
   [(set_attr "type" "callv")])
 
-(define_insn ""
+(define_insn "*call_value_pop_pic2"
   [(set (match_operand 0 "" "=rf")
 	(call (match_operand:QI 1 "constant_call_address_operand" "")
 	      (match_operand:SI 2 "general_operand" "g")))
@@ -6604,7 +6606,7 @@
 			copy_to_mode_reg (Pmode, XEXP (operands[1], 0)));
 }")
 
-(define_insn ""
+(define_insn "*call_value_pic"
   [(set (match_operand 0 "" "=rf")
 	(call (match_operand:QI 1 "call_insn_operand" "m")
 	      (match_operand:SI 2 "general_operand" "g")))]
@@ -6620,7 +6622,7 @@
 }"
   [(set_attr "type" "callv")])
 
-(define_insn ""
+(define_insn "*call_value_pic2"
   [(set (match_operand 0 "" "=rf")
 	(call (match_operand:QI 1 "constant_call_address_operand" "")
 	      (match_operand:SI 2 "general_operand" "g")))]
@@ -7158,7 +7160,7 @@
   "fsqrt"
   [(set_attr "type" "fpspc")])
 
-(define_insn ""
+(define_insn "x86_sqrtextendsfdf2"
   [(set (match_operand:DF 0 "register_operand" "=f")
 	(sqrt:DF (float_extend:DF
 		  (match_operand:SF 1 "register_operand" "0"))))]
@@ -7174,7 +7176,7 @@
   "fsqrt"
   [(set_attr "type" "fpspc")])
 
-(define_insn ""
+(define_insn "x86_sqrtextenddfxf2"
   [(set (match_operand:XF 0 "register_operand" "=f")
 	(sqrt:XF (float_extend:XF
 		  (match_operand:DF 1 "register_operand" "0"))))]
@@ -7182,7 +7184,7 @@
   "fsqrt"
   [(set_attr "type" "fpspc")])
 
-(define_insn ""
+(define_insn "x86_sqrtextendsfxf2"
   [(set (match_operand:XF 0 "register_operand" "=f")
 	(sqrt:XF (float_extend:XF
 		  (match_operand:SF 1 "register_operand" "0"))))]
@@ -7204,7 +7206,7 @@
   "fsin"
   [(set_attr "type" "fpspc")])
 
-(define_insn ""
+(define_insn "x86_sinextendsfdf2"
   [(set (match_operand:DF 0 "register_operand" "=f")
 	(unspec:DF [(float_extend:DF
 		     (match_operand:SF 1 "register_operand" "0"))] 1))]
@@ -7233,7 +7235,7 @@
   "fcos"
   [(set_attr "type" "fpspc")])
 
-(define_insn ""
+(define_insn "x86_cosextendsfdf2"
   [(set (match_operand:DF 0 "register_operand" "=f")
 	(unspec:DF [(float_extend:DF
 		     (match_operand:SF 1 "register_operand" "0"))] 2))]
@@ -7594,7 +7596,7 @@
    (set_attr "imm_disp" "false")
    (set_attr "length" "2")])
 
-(define_insn ""
+(define_insn "*movsicc_noc"
   [(set (match_operand:SI 0 "register_operand" "=r,r")
 	(if_then_else:SI (match_operator 1 "no_comparison_operator" 
 				[(reg 17) (const_int 0)])
@@ -7606,7 +7608,7 @@
    cmov%c1\\t{%3, %0|%0, %3}"
   [(set_attr "type" "icmov")])
 
-(define_insn ""
+(define_insn "*movsicc_c"
   [(set (match_operand:SI 0 "register_operand" "=r,r")
 	(if_then_else:SI (match_operator 1 "comparison_operator" 
 				[(reg:CC 17) (const_int 0)])
@@ -7626,7 +7628,7 @@
   "TARGET_CMOVE"
   "if (!ix86_expand_int_movcc (operands)) FAIL; DONE;")
 
-(define_insn ""
+(define_insn "*movhicc_noc"
   [(set (match_operand:HI 0 "register_operand" "=r,r")
 	(if_then_else:HI (match_operator 1 "no_comparison_operator" 
 				[(reg 17) (const_int 0)])
@@ -7638,7 +7640,7 @@
    cmov%c1\\t{%3, %0|%0, %3}"
   [(set_attr "type" "icmov")])
 
-(define_insn ""
+(define_insn "*movhicc_c"
   [(set (match_operand:HI 0 "register_operand" "=r,r")
 	(if_then_else:HI (match_operator 1 "comparison_operator" 
 				[(reg:CC 17) (const_int 0)])
@@ -7671,7 +7673,7 @@
   "TARGET_CMOVE"
   "if (! ix86_expand_fp_movcc (operands)) FAIL; DONE;")
 
-(define_insn ""
+(define_insn "*movsfcc_1"
   [(set (match_operand:SF 0 "register_operand" "=f,f")
 	(if_then_else:SF (match_operator 1 "fcmov_comparison_operator" 
 				[(reg 17) (const_int 0)])
@@ -7691,7 +7693,7 @@
   "TARGET_CMOVE"
   "if (! ix86_expand_fp_movcc (operands)) FAIL; DONE;")
 
-(define_insn ""
+(define_insn "*movdfcc_1"
   [(set (match_operand:DF 0 "register_operand" "=f,f")
 	(if_then_else:DF (match_operator 1 "fcmov_comparison_operator" 
 				[(reg 17) (const_int 0)])
@@ -7711,7 +7713,7 @@
   "TARGET_CMOVE"
   "if (! ix86_expand_fp_movcc (operands)) FAIL; DONE;")
 
-(define_insn ""
+(define_insn "*movxfcc_1"
   [(set (match_operand:XF 0 "register_operand" "=f,f")
 	(if_then_else:XF (match_operator 1 "fcmov_comparison_operator" 
 				[(reg 17) (const_int 0)])


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