sparc.c (INIT_TARGET_OPTABS): If ARCH64, set the 32-bit ABI libfuncs to NULL.
authorDavid S. Miller <davem@redhat.com>
Mon, 24 Jun 2002 12:58:43 +0000 (05:58 -0700)
committerDavid S. Miller <davem@gcc.gnu.org>
Mon, 24 Jun 2002 12:58:43 +0000 (05:58 -0700)
2002-06-24  David S. Miller  <davem@redhat.com>

* config/sparc/sparc.c (INIT_TARGET_OPTABS): If ARCH64, set the
32-bit ABI libfuncs to NULL.

From-SVN: r54952

gcc/ChangeLog
gcc/config/sparc/sparc.md

index 5cef4142515c6a2235811eff3c3430ead27dc839..8f577798c9d8100ecceeb70ee95a84ce76db4b1b 100644 (file)
@@ -3,7 +3,8 @@
        * config/sparc/sparc.c (INIT_TARGET_OPTABS): If ARCH64, set the
        32-bit ABI libfuncs to NULL.
 
-       * config/sparc/sparc.md: Use define_insn_and_split.
+       * config/sparc/sparc.md: Use define_insn_and_split.  Use braced
+       strings instead of quoted strings for code blocks.
 
        * expmed.c (expand_divmod): Do not set optab1/optab2 to the shift
        optabs if op1 is const0_rtx.
index 6b8e029d599c20e8ed21cac0062deb338adf3471..6e802c8516efc76639093bfa40a44eb07cd9e946 100644 (file)
        (compare:CC (match_operand:SI 0 "register_operand" "")
                    (match_operand:SI 1 "arith_operand" "")))]
   ""
-  "
 {
   sparc_compare_op0 = operands[0];
   sparc_compare_op1 = operands[1];
   DONE;
-}")
+})
 
 (define_expand "cmpdi"
   [(set (reg:CCX 100)
        (compare:CCX (match_operand:DI 0 "register_operand" "")
                     (match_operand:DI 1 "arith_double_operand" "")))]
   "TARGET_ARCH64"
-  "
 {
   sparc_compare_op0 = operands[0];
   sparc_compare_op1 = operands[1];
   DONE;
-}")
+})
 
 (define_expand "cmpsf"
   ;; The 96 here isn't ever used by anyone.
        (compare:CCFP (match_operand:SF 0 "register_operand" "")
                      (match_operand:SF 1 "register_operand" "")))]
   "TARGET_FPU"
-  "
 {
   sparc_compare_op0 = operands[0];
   sparc_compare_op1 = operands[1];
   DONE;
-}")
+})
 
 (define_expand "cmpdf"
   ;; The 96 here isn't ever used by anyone.
        (compare:CCFP (match_operand:DF 0 "register_operand" "")
                      (match_operand:DF 1 "register_operand" "")))]
   "TARGET_FPU"
-  "
 {
   sparc_compare_op0 = operands[0];
   sparc_compare_op1 = operands[1];
   DONE;
-}")
+})
 
 (define_expand "cmptf"
   ;; The 96 here isn't ever used by anyone.
        (compare:CCFP (match_operand:TF 0 "register_operand" "")
                      (match_operand:TF 1 "register_operand" "")))]
   "TARGET_FPU"
-  "
 {
   sparc_compare_op0 = operands[0];
   sparc_compare_op1 = operands[1];
   DONE;
-}")
+})
 
 ;; Now the compare DEFINE_INSNs.
 
        (compare:CCFPE (match_operand:SF 1 "register_operand" "f")
                       (match_operand:SF 2 "register_operand" "f")))]
   "TARGET_FPU"
-  "*
 {
   if (TARGET_V9)
-    return \"fcmpes\\t%0, %1, %2\";
-  return \"fcmpes\\t%1, %2\";
-}"
+    return "fcmpes\\t%0, %1, %2";
+  return "fcmpes\\t%1, %2";
+}
   [(set_attr "type" "fpcmp")])
 
 (define_insn "*cmpdf_fpe"
        (compare:CCFPE (match_operand:DF 1 "register_operand" "e")
                       (match_operand:DF 2 "register_operand" "e")))]
   "TARGET_FPU"
-  "*
 {
   if (TARGET_V9)
-    return \"fcmped\\t%0, %1, %2\";
-  return \"fcmped\\t%1, %2\";
-}"
+    return "fcmped\\t%0, %1, %2";
+  return "fcmped\\t%1, %2";
+}
   [(set_attr "type" "fpcmp")
    (set_attr "fptype" "double")])
 
        (compare:CCFPE (match_operand:TF 1 "register_operand" "e")
                       (match_operand:TF 2 "register_operand" "e")))]
   "TARGET_FPU && TARGET_HARD_QUAD"
-  "*
 {
   if (TARGET_V9)
-    return \"fcmpeq\\t%0, %1, %2\";
-  return \"fcmpeq\\t%1, %2\";
-}"
+    return "fcmpeq\\t%0, %1, %2";
+  return "fcmpeq\\t%1, %2";
+}
   [(set_attr "type" "fpcmp")])
 
 (define_insn "*cmpsf_fp"
        (compare:CCFP (match_operand:SF 1 "register_operand" "f")
                      (match_operand:SF 2 "register_operand" "f")))]
   "TARGET_FPU"
-  "*
 {
   if (TARGET_V9)
-    return \"fcmps\\t%0, %1, %2\";
-  return \"fcmps\\t%1, %2\";
-}"
+    return "fcmps\\t%0, %1, %2";
+  return "fcmps\\t%1, %2";
+}
   [(set_attr "type" "fpcmp")])
 
 (define_insn "*cmpdf_fp"
        (compare:CCFP (match_operand:DF 1 "register_operand" "e")
                      (match_operand:DF 2 "register_operand" "e")))]
   "TARGET_FPU"
-  "*
 {
   if (TARGET_V9)
-    return \"fcmpd\\t%0, %1, %2\";
-  return \"fcmpd\\t%1, %2\";
-}"
+    return "fcmpd\\t%0, %1, %2";
+  return "fcmpd\\t%1, %2";
+}
   [(set_attr "type" "fpcmp")
    (set_attr "fptype" "double")])
 
        (compare:CCFP (match_operand:TF 1 "register_operand" "e")
                      (match_operand:TF 2 "register_operand" "e")))]
   "TARGET_FPU && TARGET_HARD_QUAD"
-  "*
 {
   if (TARGET_V9)
-    return \"fcmpq\\t%0, %1, %2\";
-  return \"fcmpq\\t%1, %2\";
-}"
+    return "fcmpq\\t%0, %1, %2";
+  return "fcmpq\\t%1, %2";
+}
   [(set_attr "type" "fpcmp")])
 \f
 ;; Next come the scc insns.  For seq, sne, sgeu, and sltu, we can do this
                   (eq:SI (match_dup 3) (const_int 0)))
              (clobber (reg:CC 100))])]
   ""
-  "{ operands[3] = gen_reg_rtx (SImode); }")
+  { operands[3] = gen_reg_rtx (SImode); })
 
 (define_expand "seqdi_special"
   [(set (match_dup 3)
    (set (match_operand:DI 0 "register_operand" "")
        (eq:DI (match_dup 3) (const_int 0)))]
   "TARGET_ARCH64"
-  "{ operands[3] = gen_reg_rtx (DImode); }")
+  { operands[3] = gen_reg_rtx (DImode); })
 
 (define_expand "snesi_special"
   [(set (match_dup 3)
                   (ne:SI (match_dup 3) (const_int 0)))
              (clobber (reg:CC 100))])]
   ""
-  "{ operands[3] = gen_reg_rtx (SImode); }")
+  { operands[3] = gen_reg_rtx (SImode); })
 
 (define_expand "snedi_special"
   [(set (match_dup 3)
    (set (match_operand:DI 0 "register_operand" "")
        (ne:DI (match_dup 3) (const_int 0)))]
   "TARGET_ARCH64"
-  "{ operands[3] = gen_reg_rtx (DImode); }")
+  { operands[3] = gen_reg_rtx (DImode); })
 
 (define_expand "seqdi_special_trunc"
   [(set (match_dup 3)
    (set (match_operand:SI 0 "register_operand" "")
        (eq:SI (match_dup 3) (const_int 0)))]
   "TARGET_ARCH64"
-  "{ operands[3] = gen_reg_rtx (DImode); }")
+  { operands[3] = gen_reg_rtx (DImode); })
 
 (define_expand "snedi_special_trunc"
   [(set (match_dup 3)
    (set (match_operand:SI 0 "register_operand" "")
        (ne:SI (match_dup 3) (const_int 0)))]
   "TARGET_ARCH64"
-  "{ operands[3] = gen_reg_rtx (DImode); }")
+  { operands[3] = gen_reg_rtx (DImode); })
 
 (define_expand "seqsi_special_extend"
   [(set (match_dup 3)
                   (eq:DI (match_dup 3) (const_int 0)))
              (clobber (reg:CC 100))])]
   "TARGET_ARCH64"
-  "{ operands[3] = gen_reg_rtx (SImode); }")
+  { operands[3] = gen_reg_rtx (SImode); })
 
 (define_expand "snesi_special_extend"
   [(set (match_dup 3)
                   (ne:DI (match_dup 3) (const_int 0)))
              (clobber (reg:CC 100))])]
   "TARGET_ARCH64"
-  "{ operands[3] = gen_reg_rtx (SImode); }")
+  { operands[3] = gen_reg_rtx (SImode); })
 
 ;; ??? v9: Operand 0 needs a mode, so SImode was chosen.
 ;; However, the code handles both SImode and DImode.
   [(set (match_operand:SI 0 "intreg_operand" "")
        (eq:SI (match_dup 1) (const_int 0)))]
   ""
-  "
 {
   if (GET_MODE (sparc_compare_op0) == SImode)
     {
       /* fall through */
     }
   FAIL;
-}")
+})
 
 ;; ??? v9: Operand 0 needs a mode, so SImode was chosen.
 ;; However, the code handles both SImode and DImode.
   [(set (match_operand:SI 0 "intreg_operand" "")
        (ne:SI (match_dup 1) (const_int 0)))]
   ""
-  "
 {
   if (GET_MODE (sparc_compare_op0) == SImode)
     {
       /* fall through */
     }
   FAIL;
-}")
+})
 
 (define_expand "sgt"
   [(set (match_operand:SI 0 "intreg_operand" "")
        (gt:SI (match_dup 1) (const_int 0)))]
   ""
-  "
 {
   if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
     {
       /* fall through */
     }
   FAIL;
-}")
+})
 
 (define_expand "slt"
   [(set (match_operand:SI 0 "intreg_operand" "")
        (lt:SI (match_dup 1) (const_int 0)))]
   ""
-  "
 {
   if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
     {
       /* fall through */
     }
   FAIL;
-}")
+})
 
 (define_expand "sge"
   [(set (match_operand:SI 0 "intreg_operand" "")
        (ge:SI (match_dup 1) (const_int 0)))]
   ""
-  "
 {
   if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
     {
       /* fall through */
     }
   FAIL;
-}")
+})
 
 (define_expand "sle"
   [(set (match_operand:SI 0 "intreg_operand" "")
        (le:SI (match_dup 1) (const_int 0)))]
   ""
-  "
 {
   if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
     {
       /* fall through */
     }
   FAIL;
-}")
+})
 
 (define_expand "sgtu"
   [(set (match_operand:SI 0 "intreg_operand" "")
        (gtu:SI (match_dup 1) (const_int 0)))]
   ""
-  "
 {
   if (! TARGET_V9)
     {
        DONE;
     }
   FAIL;
-}")
+})
 
 (define_expand "sltu"
   [(set (match_operand:SI 0 "intreg_operand" "")
        (ltu:SI (match_dup 1) (const_int 0)))]
   ""
-  "
 {
   if (TARGET_V9)
     {
        DONE;
     }
   operands[1] = gen_compare_reg (LTU, sparc_compare_op0, sparc_compare_op1);
-}")
+})
 
 (define_expand "sgeu"
   [(set (match_operand:SI 0 "intreg_operand" "")
        (geu:SI (match_dup 1) (const_int 0)))]
   ""
-  "
 {
   if (TARGET_V9)
     {
        DONE;
     }
   operands[1] = gen_compare_reg (GEU, sparc_compare_op0, sparc_compare_op1);
-}")
+})
 
 (define_expand "sleu"
   [(set (match_operand:SI 0 "intreg_operand" "")
        (leu:SI (match_dup 1) (const_int 0)))]
   ""
-  "
 {
   if (! TARGET_V9)
     {
        DONE;
     }
   FAIL;
-}")
+})
 
 ;; Now the DEFINE_INSNs for the scc cases.
 
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "
 {
   if (TARGET_ARCH64 && sparc_compare_op1 == const0_rtx
       && GET_CODE (sparc_compare_op0) == REG
       DONE;
     }
   operands[1] = gen_compare_reg (EQ, sparc_compare_op0, sparc_compare_op1);
-}")
+})
 
 (define_expand "bne"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "
 {
   if (TARGET_ARCH64 && sparc_compare_op1 == const0_rtx
       && GET_CODE (sparc_compare_op0) == REG
       DONE;
     }
   operands[1] = gen_compare_reg (NE, sparc_compare_op0, sparc_compare_op1);
-}")
+})
 
 (define_expand "bgt"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "
 {
   if (TARGET_ARCH64 && sparc_compare_op1 == const0_rtx
       && GET_CODE (sparc_compare_op0) == REG
       DONE;
     }
   operands[1] = gen_compare_reg (GT, sparc_compare_op0, sparc_compare_op1);
-}")
+})
 
 (define_expand "bgtu"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "
-{ operands[1] = gen_compare_reg (GTU, sparc_compare_op0, sparc_compare_op1);
-}")
+{
+  operands[1] = gen_compare_reg (GTU, sparc_compare_op0, sparc_compare_op1);
+})
 
 (define_expand "blt"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "
 {
   if (TARGET_ARCH64 && sparc_compare_op1 == const0_rtx
       && GET_CODE (sparc_compare_op0) == REG
       DONE;
     }
   operands[1] = gen_compare_reg (LT, sparc_compare_op0, sparc_compare_op1);
-}")
+})
 
 (define_expand "bltu"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "
-{ operands[1] = gen_compare_reg (LTU, sparc_compare_op0, sparc_compare_op1);
-}")
+{
+  operands[1] = gen_compare_reg (LTU, sparc_compare_op0, sparc_compare_op1);
+})
 
 (define_expand "bge"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "
 {
   if (TARGET_ARCH64 && sparc_compare_op1 == const0_rtx
       && GET_CODE (sparc_compare_op0) == REG
       DONE;
     }
   operands[1] = gen_compare_reg (GE, sparc_compare_op0, sparc_compare_op1);
-}")
+})
 
 (define_expand "bgeu"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "
-{ operands[1] = gen_compare_reg (GEU, sparc_compare_op0, sparc_compare_op1);
-}")
+{
+  operands[1] = gen_compare_reg (GEU, sparc_compare_op0, sparc_compare_op1);
+})
 
 (define_expand "ble"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "
 {
   if (TARGET_ARCH64 && sparc_compare_op1 == const0_rtx
       && GET_CODE (sparc_compare_op0) == REG
       DONE;
     }
   operands[1] = gen_compare_reg (LE, sparc_compare_op0, sparc_compare_op1);
-}")
+})
 
 (define_expand "bleu"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "
-{ operands[1] = gen_compare_reg (LEU, sparc_compare_op0, sparc_compare_op1);
-}")
+{
+  operands[1] = gen_compare_reg (LEU, sparc_compare_op0, sparc_compare_op1);
+})
 
 (define_expand "bunordered"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "
 {
   if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
     {
     }
   operands[1] = gen_compare_reg (UNORDERED, sparc_compare_op0,
                                 sparc_compare_op1);
-}")
+})
 
 (define_expand "bordered"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "
 {
   if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
     {
     }
   operands[1] = gen_compare_reg (ORDERED, sparc_compare_op0,
                                 sparc_compare_op1);
-}")
+})
 
 (define_expand "bungt"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "
 {
   if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
     {
       DONE;
     }
   operands[1] = gen_compare_reg (UNGT, sparc_compare_op0, sparc_compare_op1);
-}")
+})
 
 (define_expand "bunlt"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "
 {
   if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
     {
       DONE;
     }
   operands[1] = gen_compare_reg (UNLT, sparc_compare_op0, sparc_compare_op1);
-}")
+})
 
 (define_expand "buneq"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "
 {
   if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
     {
       DONE;
     }
   operands[1] = gen_compare_reg (UNEQ, sparc_compare_op0, sparc_compare_op1);
-}")
+})
 
 (define_expand "bunge"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "
 {
   if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
     {
       DONE;
     }
   operands[1] = gen_compare_reg (UNGE, sparc_compare_op0, sparc_compare_op1);
-}")
+})
 
 (define_expand "bunle"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "
 {
   if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
     {
       DONE;
     }
   operands[1] = gen_compare_reg (UNLE, sparc_compare_op0, sparc_compare_op1);
-}")
+})
 
 (define_expand "bltgt"
   [(set (pc)
                      (label_ref (match_operand 0 "" ""))
                      (pc)))]
   ""
-  "
 {
   if (GET_MODE (sparc_compare_op0) == TFmode && ! TARGET_HARD_QUAD)
     {
       DONE;
     }
   operands[1] = gen_compare_reg (LTGT, sparc_compare_op0, sparc_compare_op1);
-}")
+})
 \f
 ;; Now match both normal and inverted jump.
 
                      (label_ref (match_operand 1 "" ""))
                      (pc)))]
   ""
-  "*
 {
   return output_cbranch (operands[0], operands[1], 1, 0,
                         final_sequence && INSN_ANNULLED_BRANCH_P (insn),
                         ! final_sequence, insn);
-}"
+}
   [(set_attr "type" "branch")
    (set_attr "branch_type" "icc")])
 
                      (pc)
                      (label_ref (match_operand 1 "" ""))))]
   ""
-  "*
 {
   return output_cbranch (operands[0], operands[1], 1, 1,
                         final_sequence && INSN_ANNULLED_BRANCH_P (insn),
                         ! final_sequence, insn);
-}"
+}
   [(set_attr "type" "branch")
    (set_attr "branch_type" "icc")])
 
                      (label_ref (match_operand 2 "" ""))
                      (pc)))]
   ""
-  "*
 {
   return output_cbranch (operands[1], operands[2], 2, 0,
                         final_sequence && INSN_ANNULLED_BRANCH_P (insn),
                         ! final_sequence, insn);
-}"
+}
   [(set_attr "type" "branch")
    (set_attr "branch_type" "fcc")])
 
                      (pc)
                      (label_ref (match_operand 2 "" ""))))]
   ""
-  "*
 {
   return output_cbranch (operands[1], operands[2], 2, 1,
                         final_sequence && INSN_ANNULLED_BRANCH_P (insn),
                         ! final_sequence, insn);
-}"
+}
   [(set_attr "type" "branch")
    (set_attr "branch_type" "fcc")])
 
                      (label_ref (match_operand 2 "" ""))
                      (pc)))]
   ""
-  "*
 {
   return output_cbranch (operands[1], operands[2], 2, 0,
                         final_sequence && INSN_ANNULLED_BRANCH_P (insn),
                         ! final_sequence, insn);
-}"
+}
   [(set_attr "type" "branch")
    (set_attr "branch_type" "fcc")])
 
                      (pc)
                      (label_ref (match_operand 2 "" ""))))]
   ""
-  "*
 {
   return output_cbranch (operands[1], operands[2], 2, 1,
                         final_sequence && INSN_ANNULLED_BRANCH_P (insn),
                         ! final_sequence, insn);
-}"
+}
   [(set_attr "type" "branch")
    (set_attr "branch_type" "fcc")])
 
                      (label_ref (match_operand 2 "" ""))
                      (pc)))]
   "TARGET_ARCH64"
-  "*
 {
   return output_v9branch (operands[0], operands[2], 1, 2, 0,
                          final_sequence && INSN_ANNULLED_BRANCH_P (insn),
                          ! final_sequence, insn);
-}"
+}
   [(set_attr "type" "branch")
    (set_attr "branch_type" "reg")])
 
                      (pc)
                      (label_ref (match_operand 2 "" ""))))]
   "TARGET_ARCH64"
-  "*
 {
   return output_v9branch (operands[0], operands[2], 1, 2, 1,
                          final_sequence && INSN_ANNULLED_BRANCH_P (insn),
                          ! final_sequence, insn);
-}"
+}
   [(set_attr "type" "branch")
    (set_attr "branch_type" "reg")])
 \f
   [(set (match_operand:QI 0 "general_operand" "")
        (match_operand:QI 1 "general_operand" ""))]
   ""
-  "
 {
   /* Working with CONST_INTs is easier, so convert
      a double if needed.  */
 
  movqi_is_ok:
   ;
-}")
+})
 
 (define_insn "*movqi_insn"
   [(set (match_operand:QI 0 "nonimmediate_operand" "=r,r,m")
   [(set (match_operand:HI 0 "general_operand" "")
        (match_operand:HI 1 "general_operand" ""))]
   ""
-  "
 {
   /* Working with CONST_INTs is easier, so convert
      a double if needed.  */
     }
  movhi_is_ok:
   ;
-}")
+})
 
 (define_insn "*movhi_const64_special"
   [(set (match_operand:HI 0 "register_operand" "=r")
   [(set (match_operand:SI 0 "general_operand" "")
        (match_operand:SI 1 "general_operand" ""))]
   ""
-  "
 {
   /* Working with CONST_INTs is easier, so convert
      a double if needed.  */
     }
  movsi_is_ok:
   ;
-}")
+})
 
 ;; This is needed to show CSE exactly which bits are set
 ;; in a 64-bit register by sethi instructions.
    (set (match_operand:SI 0 "register_operand" "=r")
        (minus:SI (match_dup 5) (match_dup 4)))]
   "flag_pic"
-  "
 {
   current_function_uses_pic_offset_table = 1;
-  operands[2] = gen_rtx_SYMBOL_REF (Pmode, \"_GLOBAL_OFFSET_TABLE_\");
+  operands[2] = gen_rtx_SYMBOL_REF (Pmode, "_GLOBAL_OFFSET_TABLE_");
   if (no_new_pseudos)
     {
       operands[3] = operands[0];
       operands[4] = gen_reg_rtx (SImode);
     }
   operands[5] = pic_offset_table_rtx;
-}")
+})
 
 (define_insn "*movsi_high_pic_label_ref"
   [(set (match_operand:SI 0 "register_operand" "=r")
   [(set (match_operand:DI 0 "reg_or_nonsymb_mem_operand" "")
        (match_operand:DI 1 "general_operand" ""))]
   ""
-  "
 {
   /* Where possible, convert CONST_DOUBLE into a CONST_INT.  */
   if (GET_CODE (operands[1]) == CONST_DOUBLE
 
  movdi_is_ok:
   ;
-}")
+})
 
 ;; Be careful, fmovd does not exist when !arch64.
 ;; We match MEM moves directly when we have correct even
    (set (match_operand:DI 0 "register_operand" "=r")
         (minus:DI (match_dup 5) (match_dup 4)))]
   "TARGET_ARCH64 && flag_pic"
-  "
 {
   current_function_uses_pic_offset_table = 1;
-  operands[2] = gen_rtx_SYMBOL_REF (Pmode, \"_GLOBAL_OFFSET_TABLE_\");
+  operands[2] = gen_rtx_SYMBOL_REF (Pmode, "_GLOBAL_OFFSET_TABLE_");
   if (no_new_pseudos)
     {
       operands[3] = operands[0];
       operands[4] = gen_reg_rtx (DImode);
     }
   operands[5] = pic_offset_table_rtx;
-}")
+})
 
 (define_insn "*movdi_high_pic_label_ref"
   [(set (match_operand:DI 0 "register_operand" "=r")
   "(TARGET_CM_MEDANY
     || TARGET_CM_EMBMEDANY)
    && ! flag_pic"
-  "
 {
   sparc_emit_set_symbolic_const64 (operands[0], operands[1], operands[2]);
   DONE;
-}")
+})
 
 (define_expand "reload_outdi"
   [(parallel [(match_operand:DI 0 "register_operand" "=r")
   "(TARGET_CM_MEDANY
     || TARGET_CM_EMBMEDANY)
    && ! flag_pic"
-  "
 {
   sparc_emit_set_symbolic_const64 (operands[0], operands[1], operands[2]);
   DONE;
-}")
+})
 
 ;; Split up putting CONSTs and REGs into DI regs when !arch64
 (define_split
         (match_operand:DI 1 "const_int_operand" ""))]
   "! TARGET_ARCH64 && reload_completed"
   [(clobber (const_int 0))]
-  "
 {
 #if HOST_BITS_PER_WIDE_INT == 32
   emit_insn (gen_movsi (gen_highpart (SImode, operands[0]),
     emit_insn (gen_movsi (gen_lowpart (SImode, operands[0]), GEN_INT (low)));
 #endif
   DONE;
-}")
+})
 
 (define_split
   [(set (match_operand:DI 0 "register_operand" "")
         (match_operand:DI 1 "const_double_operand" ""))]
   "! TARGET_ARCH64 && reload_completed"
   [(clobber (const_int 0))]
-  "
 {
   emit_insn (gen_movsi (gen_highpart (SImode, operands[0]),
                        GEN_INT (CONST_DOUBLE_HIGH (operands[1]))));
                            GEN_INT (CONST_DOUBLE_LOW (operands[1]))));
     }
   DONE;
-}")
+})
 
 (define_split
   [(set (match_operand:DI 0 "register_operand" "")
         (match_operand:DI 1 "register_operand" ""))]
   "! TARGET_ARCH64 && reload_completed"
   [(clobber (const_int 0))]
-  "
 {
   rtx set_dest = operands[0];
   rtx set_src = operands[1];
       emit_insn (gen_movsi (dest2, src2));
     }
   DONE;
-}")
+})
 
 ;; Now handle the cases of memory moves from/to non-even
 ;; DI mode register pairs.
     && reload_completed
     && sparc_splitdi_legitimate (operands[0], operands[1]))"
   [(clobber (const_int 0))]
-  "
 {
   rtx word0 = adjust_address (operands[1], SImode, 0);
   rtx word1 = adjust_address (operands[1], SImode, 4);
       emit_insn (gen_movsi (low_part, word1));
     }
   DONE;
-}")
+})
 
 (define_split
   [(set (match_operand:DI 0 "memory_operand" "")
     && reload_completed
     && sparc_splitdi_legitimate (operands[1], operands[0]))"
   [(clobber (const_int 0))]
-  "
 {
   emit_insn (gen_movsi (adjust_address (operands[0], SImode, 0),
                        gen_highpart (SImode, operands[1])));
   emit_insn (gen_movsi (adjust_address (operands[0], SImode, 4),
                        gen_lowpart (SImode, operands[1])));
   DONE;
-}")
+})
 
 (define_split
   [(set (match_operand:DI 0 "memory_operand" "")
           && ! mem_min_alignment (operands[0], 8)))
    && offsettable_memref_p (operands[0])"
   [(clobber (const_int 0))]
-  "
 {
   emit_insn (gen_movsi (adjust_address (operands[0], SImode, 0), const0_rtx));
   emit_insn (gen_movsi (adjust_address (operands[0], SImode, 4), const0_rtx));
   DONE;
-}")
+})
 \f
 ;; Floating point move insns
 
    && (register_operand (operands[0], SFmode)
        || register_operand (operands[1], SFmode)
        || fp_zero_operand (operands[1], SFmode))"
-  "*
 {
   if (GET_CODE (operands[1]) == CONST_DOUBLE
       && (which_alternative == 2
   switch (which_alternative)
     {
     case 0:
-      return \"fmovs\\t%1, %0\";
+      return "fmovs\\t%1, %0";
     case 1:
-      return \"clr\\t%0\";
+      return "clr\\t%0";
     case 2:
-      return \"sethi\\t%%hi(%a1), %0\";
+      return "sethi\\t%%hi(%a1), %0";
     case 3:
-      return \"mov\\t%1, %0\";
+      return "mov\\t%1, %0";
     case 4:
-      return \"#\";
+      return "#";
     case 5:
     case 6:
-      return \"ld\\t%1, %0\";
+      return "ld\\t%1, %0";
     case 7:
     case 8:
-      return \"st\\t%r1, %0\";
+      return "st\\t%r1, %0";
     default:
       abort();
     }
-}"
+}
   [(set_attr "type" "fpmove,*,*,*,*,load,fpload,fpstore,store")])
 
 (define_insn "*movsf_insn_vis"
    && (register_operand (operands[0], SFmode)
        || register_operand (operands[1], SFmode)
        || fp_zero_operand (operands[1], SFmode))"
-  "*
 {
   if (GET_CODE (operands[1]) == CONST_DOUBLE
       && (which_alternative == 3
   switch (which_alternative)
     {
     case 0:
-      return \"fmovs\\t%1, %0\";
+      return "fmovs\\t%1, %0";
     case 1:
-      return \"fzeros\\t%0\";
+      return "fzeros\\t%0";
     case 2:
-      return \"clr\\t%0\";
+      return "clr\\t%0";
     case 3:
-      return \"sethi\\t%%hi(%a1), %0\";
+      return "sethi\\t%%hi(%a1), %0";
     case 4:
-      return \"mov\\t%1, %0\";
+      return "mov\\t%1, %0";
     case 5:
-      return \"#\";
+      return "#";
     case 6:
     case 7:
-      return \"ld\\t%1, %0\";
+      return "ld\\t%1, %0";
     case 8:
     case 9:
-      return \"st\\t%r1, %0\";
+      return "st\\t%r1, %0";
     default:
       abort();
     }
-}"
+}
   [(set_attr "type" "fpmove,fpmove,*,*,*,*,load,fpload,fpstore,store")])
 
 ;; Exactly the same as above, except that all `f' cases are deleted.
    && (register_operand (operands[0], SFmode)
        || register_operand (operands[1], SFmode)
        || fp_zero_operand (operands[1], SFmode))"
-  "*
 {
   if (GET_CODE (operands[1]) == CONST_DOUBLE
       && (which_alternative == 1
   switch (which_alternative)
     {
     case 0:
-      return \"clr\\t%0\";
+      return "clr\\t%0";
     case 1:
-      return \"sethi\\t%%hi(%a1), %0\";
+      return "sethi\\t%%hi(%a1), %0";
     case 2:
-      return \"mov\\t%1, %0\";
+      return "mov\\t%1, %0";
     case 3:
-      return \"#\";
+      return "#";
     case 4:
-      return \"ld\\t%1, %0\";
+      return "ld\\t%1, %0";
     case 5:
-      return \"st\\t%r1, %0\";
+      return "st\\t%r1, %0";
     default:
       abort();
     }
-}"
+}
   [(set_attr "type" "*,*,*,*,load,store")])
 
 (define_insn "*movsf_lo_sum"
         (lo_sum:SF (match_operand:SF 1 "register_operand" "r")
                    (match_operand:SF 2 "const_double_operand" "S")))]
   "fp_high_losum_p (operands[2])"
-  "*
 {
   REAL_VALUE_TYPE r;
   long i;
   REAL_VALUE_FROM_CONST_DOUBLE (r, operands[2]);
   REAL_VALUE_TO_TARGET_SINGLE (r, i);
   operands[2] = GEN_INT (i);
-  return \"or\\t%1, %%lo(%a2), %0\";
-}")
+  return "or\\t%1, %%lo(%a2), %0";
+})
 
 (define_insn "*movsf_high"
   [(set (match_operand:SF 0 "register_operand" "=r")
         (high:SF (match_operand:SF 1 "const_double_operand" "S")))]
   "fp_high_losum_p (operands[1])"
-  "*
 {
   REAL_VALUE_TYPE r;
   long i;
   REAL_VALUE_FROM_CONST_DOUBLE (r, operands[1]);
   REAL_VALUE_TO_TARGET_SINGLE (r, i);
   operands[1] = GEN_INT (i);
-  return \"sethi\\t%%hi(%1), %0\";
-}")
+  return "sethi\\t%%hi(%1), %0";
+})
 
 (define_split
   [(set (match_operand:SF 0 "register_operand" "")
   [(set (match_operand:SF 0 "general_operand" "")
        (match_operand:SF 1 "general_operand" ""))]
   ""
-  "
 {
   /* Force SFmode constants into memory.  */
   if (GET_CODE (operands[0]) == REG
 
  movsf_is_ok:
   ;
-}")
+})
 
 (define_expand "movdf"
   [(set (match_operand:DF 0 "general_operand" "")
        (match_operand:DF 1 "general_operand" ""))]
   ""
-  "
 {
   /* Force DFmode constants into memory.  */
   if (GET_CODE (operands[0]) == REG
 
  movdf_is_ok:
   ;
-}")
+})
 
 ;; Be careful, fmovd does not exist when !v9.
 (define_insn "*movdf_insn_sp32"
    && ! fp_zero_operand(operands[1], DFmode)
    && reload_completed"
   [(clobber (const_int 0))]
-  "
 {
   REAL_VALUE_TYPE r;
   long l[2];
         }
     }
   DONE;
-}")
+})
 
 ;; Ok, now the splits to handle all the multi insn and
 ;; mis-aligned memory address cases.
                 && REGNO (SUBREG_REG (operands[0])) < 32))))
    && reload_completed"
   [(clobber (const_int 0))]
-  "
 {
   rtx set_dest = operands[0];
   rtx set_src = operands[1];
       emit_insn (gen_movsf (dest2, src2));
     }
   DONE;
-}")
+})
 
 (define_split
   [(set (match_operand:DF 0 "register_operand" "")
        || ! mem_min_alignment (operands[1], 8))
    && offsettable_memref_p (operands[1])"
   [(clobber (const_int 0))]
-  "
 {
   rtx word0 = adjust_address (operands[1], SFmode, 0);
   rtx word1 = adjust_address (operands[1], SFmode, 4);
                            word1));
     }
   DONE;
-}")
+})
 
 (define_split
   [(set (match_operand:DF 0 "memory_operand" "")
        || ! mem_min_alignment (operands[0], 8))
    && offsettable_memref_p (operands[0])"
   [(clobber (const_int 0))]
-  "
 {
   rtx word0 = adjust_address (operands[0], SFmode, 0);
   rtx word1 = adjust_address (operands[0], SFmode, 4);
   emit_insn (gen_movsf (word1,
                        gen_lowpart (SFmode, operands[1])));
   DONE;
-}")
+})
 
 (define_split
   [(set (match_operand:DF 0 "memory_operand" "")
           && ! mem_min_alignment (operands[0], 8)))
    && offsettable_memref_p (operands[0])"
   [(clobber (const_int 0))]
-  "
 {
   rtx dest1, dest2;
 
   emit_insn (gen_movsf (dest1, CONST0_RTX (SFmode)));
   emit_insn (gen_movsf (dest2, CONST0_RTX (SFmode)));
   DONE;
-}")
+})
 
 (define_split
   [(set (match_operand:DF 0 "register_operand" "")
           && GET_CODE (SUBREG_REG (operands[0])) == REG
           && REGNO (SUBREG_REG (operands[0])) < 32))"
   [(clobber (const_int 0))]
-  "
 {
   rtx set_dest = operands[0];
   rtx dest1, dest2;
   emit_insn (gen_movsf (dest1, CONST0_RTX (SFmode)));
   emit_insn (gen_movsf (dest2, CONST0_RTX (SFmode)));
   DONE;
-}")
+})
 
 (define_expand "movtf"
   [(set (match_operand:TF 0 "general_operand" "")
        (match_operand:TF 1 "general_operand" ""))]
   ""
-  "
 {
   /* Force TFmode constants into memory.  */
   if (GET_CODE (operands[0]) == REG
 
  movtf_is_ok:
   ;
-}")
+})
 
 ;; Be careful, fmovq and {st,ld}{x,q} do not exist when !arch64 so
 ;; we must split them all.  :-(
            && ! TARGET_HARD_QUAD)
        || ! fp_register_operand (operands[0], TFmode))"
   [(clobber (const_int 0))]
-  "
 {
   rtx set_dest = operands[0];
   rtx set_src = operands[1];
       emit_insn (gen_movdf (dest2, src2));
     }
   DONE;
-}")
+})
 
 (define_split
   [(set (match_operand:TF 0 "nonimmediate_operand" "")
         (match_operand:TF 1 "fp_zero_operand" ""))]
   "reload_completed"
   [(clobber (const_int 0))]
-  "
 {
   rtx set_dest = operands[0];
   rtx dest1, dest2;
   emit_insn (gen_movdf (dest1, CONST0_RTX (DFmode)));
   emit_insn (gen_movdf (dest2, CONST0_RTX (DFmode)));
   DONE;
-}")
+})
 
 (define_split
   [(set (match_operand:TF 0 "register_operand" "")
        || ! TARGET_HARD_QUAD
        || ! fp_register_operand (operands[0], TFmode)))"
   [(clobber (const_int 0))]
-  "
 {
   rtx word0 = adjust_address (operands[1], DFmode, 0);
   rtx word1 = adjust_address (operands[1], DFmode, 8);
       emit_insn (gen_movdf (dest2, word1));
    }
   DONE;
-}")
+})
 
 (define_split
   [(set (match_operand:TF 0 "memory_operand" "")
        || ! TARGET_HARD_QUAD
        || ! fp_register_operand (operands[1], TFmode)))"
   [(clobber (const_int 0))]
-  "
 {
   rtx set_src = operands[1];
 
   emit_insn (gen_movdf (adjust_address (operands[0], DFmode, 8),
                        gen_df_reg (set_src, 1)));
   DONE;
-}")
+})
 \f
 ;; Sparc V9 conditional move instructions.
 
                         (match_operand:QI 2 "arith10_operand" "")
                         (match_operand:QI 3 "arith10_operand" "")))]
   "TARGET_V9"
-  "
 {
   enum rtx_code code = GET_CODE (operands[1]);
 
                                    sparc_compare_op0, sparc_compare_op1);
       operands[1] = gen_rtx_fmt_ee (code, GET_MODE (cc_reg), cc_reg, const0_rtx);
     }
-}")
+})
 
 (define_expand "movhicc"
   [(set (match_operand:HI 0 "register_operand" "")
                         (match_operand:HI 2 "arith10_operand" "")
                         (match_operand:HI 3 "arith10_operand" "")))]
   "TARGET_V9"
-  "
 {
   enum rtx_code code = GET_CODE (operands[1]);
 
                                    sparc_compare_op0, sparc_compare_op1);
       operands[1] = gen_rtx_fmt_ee (code, GET_MODE (cc_reg), cc_reg, const0_rtx);
     }
-}")
+})
 
 (define_expand "movsicc"
   [(set (match_operand:SI 0 "register_operand" "")
                         (match_operand:SI 2 "arith10_operand" "")
                         (match_operand:SI 3 "arith10_operand" "")))]
   "TARGET_V9"
-  "
 {
   enum rtx_code code = GET_CODE (operands[1]);
   enum machine_mode op0_mode = GET_MODE (sparc_compare_op0);
       operands[1] = gen_rtx_fmt_ee (code, GET_MODE (cc_reg),
                                    cc_reg, const0_rtx);
     }
-}")
+})
 
 (define_expand "movdicc"
   [(set (match_operand:DI 0 "register_operand" "")
                         (match_operand:DI 2 "arith10_double_operand" "")
                         (match_operand:DI 3 "arith10_double_operand" "")))]
   "TARGET_ARCH64"
-  "
 {
   enum rtx_code code = GET_CODE (operands[1]);
 
       operands[1] = gen_rtx_fmt_ee (code, GET_MODE (cc_reg),
                                    cc_reg, const0_rtx);
     }
-}")
+})
 
 (define_expand "movsfcc"
   [(set (match_operand:SF 0 "register_operand" "")
                         (match_operand:SF 2 "register_operand" "")
                         (match_operand:SF 3 "register_operand" "")))]
   "TARGET_V9 && TARGET_FPU"
-  "
 {
   enum rtx_code code = GET_CODE (operands[1]);
 
                                    sparc_compare_op0, sparc_compare_op1);
       operands[1] = gen_rtx_fmt_ee (code, GET_MODE (cc_reg), cc_reg, const0_rtx);
     }
-}")
+})
 
 (define_expand "movdfcc"
   [(set (match_operand:DF 0 "register_operand" "")
                         (match_operand:DF 2 "register_operand" "")
                         (match_operand:DF 3 "register_operand" "")))]
   "TARGET_V9 && TARGET_FPU"
-  "
 {
   enum rtx_code code = GET_CODE (operands[1]);
 
                                    sparc_compare_op0, sparc_compare_op1);
       operands[1] = gen_rtx_fmt_ee (code, GET_MODE (cc_reg), cc_reg, const0_rtx);
     }
-}")
+})
 
 (define_expand "movtfcc"
   [(set (match_operand:TF 0 "register_operand" "")
                         (match_operand:TF 2 "register_operand" "")
                         (match_operand:TF 3 "register_operand" "")))]
   "TARGET_V9 && TARGET_FPU"
-  "
 {
   enum rtx_code code = GET_CODE (operands[1]);
 
                                    sparc_compare_op0, sparc_compare_op1);
       operands[1] = gen_rtx_fmt_ee (code, GET_MODE (cc_reg), cc_reg, const0_rtx);
     }
-}")
+})
 
 ;; Conditional move define_insns.
 
   "#"
   "&& reload_completed"
   [(clobber (const_int 0))]
-  "
 {
   rtx set_dest = operands[0];
   rtx set_srca = operands[3];
       emit_insn (gen_movdf_cc_sp64 (dest2, operands[1], operands[2], srca2, srcb2));
     }
   DONE;
-}"
+}
   [(set_attr "length" "2")])
 
 (define_insn "*movqi_cc_reg_sp64"
   "#"
   "&& reload_completed"
   [(clobber (const_int 0))]
-  "
 {
   rtx set_dest = operands[0];
   rtx set_srca = operands[3];
       emit_insn (gen_movdf_cc_reg_sp64 (dest2, operands[1], operands[2], srca2, srcb2));
     }
   DONE;
-}"
+}
   [(set_attr "length" "2")])
 
 \f
   [(set (match_operand:SI 0 "register_operand" "")
        (zero_extend:SI (match_operand:HI 1 "register_operand" "")))]
   ""
-  "
 {
   rtx temp = gen_reg_rtx (SImode);
   rtx shift_16 = GEN_INT (16);
                          shift_16));
   emit_insn (gen_lshrsi3 (operand0, temp, shift_16));
   DONE;
-}")
+})
 
 (define_insn "*zero_extendhisi2_insn"
   [(set (match_operand:SI 0 "register_operand" "=r")
   [(set (match_operand:DI 0 "register_operand" "")
        (zero_extend:DI (match_operand:HI 1 "register_operand" "")))]
   "TARGET_ARCH64"
-  "
 {
   rtx temp = gen_reg_rtx (DImode);
   rtx shift_48 = GEN_INT (48);
                          shift_48));
   emit_insn (gen_lshrdi3 (operand0, temp, shift_48));
   DONE;
-}")
+})
 
 (define_insn "*zero_extendhidi2_insn"
   [(set (match_operand:DI 0 "register_operand" "=r")
   "&& reload_completed"
   [(set (match_dup 2) (match_dup 3))
    (set (match_dup 4) (match_dup 5))]
-  "
 {
   rtx dest1, dest2;
 
       operands[4] = dest2;
       operands[5] = operands[1];
     }
-}"
+}
   [(set_attr "length" "2")])
 
 ;; Simplify comparisons of extended values.
   [(set (match_operand:SI 0 "register_operand" "")
        (sign_extend:SI (match_operand:HI 1 "register_operand" "")))]
   ""
-  "
 {
   rtx temp = gen_reg_rtx (SImode);
   rtx shift_16 = GEN_INT (16);
                          shift_16));
   emit_insn (gen_ashrsi3 (operand0, temp, shift_16));
   DONE;
-}")
+})
 
 (define_insn "*sign_extendhisi2_insn"
   [(set (match_operand:SI 0 "register_operand" "=r")
   [(set (match_operand:HI 0 "register_operand" "")
        (sign_extend:HI (match_operand:QI 1 "register_operand" "")))]
   ""
-  "
 {
   rtx temp = gen_reg_rtx (SImode);
   rtx shift_24 = GEN_INT (24);
     operand0 = gen_rtx_SUBREG (SImode, operand0, op0_subbyte);
   emit_insn (gen_ashrsi3 (operand0, temp, shift_24));
   DONE;
-}")
+})
 
 (define_insn "*sign_extendqihi2_insn"
   [(set (match_operand:HI 0 "register_operand" "=r")
   [(set (match_operand:SI 0 "register_operand" "")
        (sign_extend:SI (match_operand:QI 1 "register_operand" "")))]
   ""
-  "
 {
   rtx temp = gen_reg_rtx (SImode);
   rtx shift_24 = GEN_INT (24);
                          shift_24));
   emit_insn (gen_ashrsi3 (operand0, temp, shift_24));
   DONE;
-}")
+})
 
 (define_insn "*sign_extendqisi2_insn"
   [(set (match_operand:SI 0 "register_operand" "=r")
   [(set (match_operand:DI 0 "register_operand" "")
        (sign_extend:DI (match_operand:QI 1 "register_operand" "")))]
   "TARGET_ARCH64"
-  "
 {
   rtx temp = gen_reg_rtx (DImode);
   rtx shift_56 = GEN_INT (56);
                          shift_56));
   emit_insn (gen_ashrdi3 (operand0, temp, shift_56));
   DONE;
-}")
+})
 
 (define_insn "*sign_extendqidi2_insn"
   [(set (match_operand:DI 0 "register_operand" "=r")
   [(set (match_operand:DI 0 "register_operand" "")
        (sign_extend:DI (match_operand:HI 1 "register_operand" "")))]
   "TARGET_ARCH64"
-  "
 {
   rtx temp = gen_reg_rtx (DImode);
   rtx shift_48 = GEN_INT (48);
                          shift_48));
   emit_insn (gen_ashrdi3 (operand0, temp, shift_48));
   DONE;
-}")
+})
 
 (define_insn "*sign_extendhidi2_insn"
   [(set (match_operand:DI 0 "register_operand" "=r")
     && INTVAL (operands[2]) > 19)
    || (GET_CODE (operands[2]) == CONST_DOUBLE
        && CONST_DOUBLE_LOW (operands[2]) > 19)"
-  "*
 {
   int len = (GET_CODE (operands[1]) == CONST_INT
              ? INTVAL (operands[1])
   HOST_WIDE_INT mask = ((1 << len) - 1) << pos;
 
   operands[1] = GEN_INT (mask);
-  return \"andcc\\t%0, %1, %%g0\";
-}"
+  return "andcc\\t%0, %1, %%g0";
+}
   [(set_attr "type" "compare")])
 
 (define_insn "*cmp_zero_extract_sp64"
         && INTVAL (operands[2]) > 51)
        || (GET_CODE (operands[2]) == CONST_DOUBLE
            && CONST_DOUBLE_LOW (operands[2]) > 51))"
-  "*
 {
   int len = (GET_CODE (operands[1]) == CONST_INT
              ? INTVAL (operands[1])
   HOST_WIDE_INT mask = (((unsigned HOST_WIDE_INT) 1 << len) - 1) << pos;
 
   operands[1] = GEN_INT (mask);
-  return \"andcc\\t%0, %1, %%g0\";
-}"
+  return "andcc\\t%0, %1, %%g0";
+}
   [(set_attr "type" "compare")])
 \f
 ;; Conversions between float, double and long double.
        (plus:DI (match_operand:DI 1 "arith_double_operand" "%r")
                 (match_operand:DI 2 "arith_double_add_operand" "rHI")))]
   ""
-  "
 {
   HOST_WIDE_INT i;
 
       emit_insn (gen_movdi (operands[0], GEN_INT (i + 4096)));
       DONE;
     }
-}")
+})
 
 (define_insn_and_split "adddi3_insn_sp32"
   [(set (match_operand:DI 0 "register_operand" "=r")
        (plus:SI (plus:SI (match_dup 7)
                          (match_dup 8))
                 (ltu:SI (reg:CC_NOOV 100) (const_int 0))))]
-  "
 {
   operands[3] = gen_lowpart (SImode, operands[0]);
   operands[4] = gen_lowpart (SImode, operands[1]);
   else
 #endif
     operands[8] = gen_highpart_mode (SImode, DImode, operands[2]);
-}"
+}
   [(set_attr "length" "2")])
 
 (define_split
        (minus:SI (minus:SI (match_dup 7)
                            (match_dup 8))
                  (ltu:SI (reg:CC_NOOV 100) (const_int 0))))]
-  "
 {
   operands[3] = gen_lowpart (SImode, operands[0]);
   operands[4] = gen_lowpart (SImode, operands[1]);
   else
 #endif
     operands[8] = gen_highpart_mode (SImode, DImode, operands[2]);
-}")
+})
 
 ;; LTU here means "carry set"
 (define_insn "addx"
        (plus:SI (match_operand:SI 1 "arith_operand" "%r,d")
                 (match_operand:SI 2 "arith_add_operand" "rI,d")))]
   ""
-  "
 {
   if (arith_4096_operand(operands[2], SImode))
     {
                                               GEN_INT(-4096))));
       DONE;
     }
-}")
+})
 
 (define_insn "*addsi3"
   [(set (match_operand:SI 0 "register_operand" "=r,d")
        (minus:DI (match_operand:DI 1 "register_operand" "r")
                  (match_operand:DI 2 "arith_double_add_operand" "rHI")))]
   ""
-  "
 {
   if (! TARGET_ARCH64)
     {
                                            GEN_INT(-4096))));
       DONE;
     }
-}")
+})
 
 (define_insn_and_split "*subdi3_sp32"
   [(set (match_operand:DI 0 "register_operand" "=r")
    && (GET_CODE (operands[2]) == CONST_INT
        || GET_CODE (operands[2]) == CONST_DOUBLE)"
   [(clobber (const_int 0))]
-  "
 {
   rtx highp, lowp;
 
                            highp));
     }
   DONE;
-}"
+}
   [(set_attr "length" "2")])
 
 (define_split
   "! TARGET_ARCH64
    && reload_completed"
   [(clobber (const_int 0))]
-  "
 {
   emit_insn (gen_cmp_minus_cc_set (gen_lowpart (SImode, operands[0]),
                                    gen_lowpart (SImode, operands[1]),
                        gen_highpart (SImode, operands[1]),
                        gen_highpart (SImode, operands[2])));
   DONE;
-}")
+})
 
 (define_insn_and_split ""
   [(set (match_operand:DI 0 "register_operand" "=r")
        (minus:SI (match_operand:SI 1 "register_operand" "r,d")
                  (match_operand:SI 2 "arith_add_operand" "rI,d")))]
   ""
-  "
 {
   if (arith_4096_operand(operands[2], SImode))
     {
                                            GEN_INT(-4096))));
       DONE;
     }
-}")
+})
 
 (define_insn "*subsi3"
   [(set (match_operand:SI 0 "register_operand" "=r,d")
        (mult:DI (match_operand:DI 1 "arith_double_operand" "%r")
                 (match_operand:DI 2 "arith_double_operand" "rHI")))]
   "TARGET_ARCH64 || TARGET_V8PLUS"
-  "
 {
   if (TARGET_V8PLUS)
     {
       emit_insn (gen_muldi3_v8plus (operands[0], operands[1], operands[2]));
       DONE;
     }
-}")
+})
 
 (define_insn "*muldi3_sp64"
   [(set (match_operand:DI 0 "register_operand" "=r")
    (clobber (match_scratch:SI 3 "=&h,X"))
    (clobber (match_scratch:SI 4 "=&h,X"))]
   "TARGET_V8PLUS"
-  "*
 {
   if (sparc_check_64 (operands[1], insn) <= 0)
-    output_asm_insn (\"srl\\t%L1, 0, %L1\", operands);
+    output_asm_insn ("srl\\t%L1, 0, %L1", operands);
   if (which_alternative == 1)
-    output_asm_insn (\"sllx\\t%H1, 32, %H1\", operands);
+    output_asm_insn ("sllx\\t%H1, 32, %H1", operands);
   if (GET_CODE (operands[2]) == CONST_INT)
     {
       if (which_alternative == 1)
-       return \"or\\t%L1, %H1, %H1\\n\\tmulx\\t%H1, %2, %L0\;srlx\\t%L0, 32, %H0\";
+       return "or\\t%L1, %H1, %H1\\n\\tmulx\\t%H1, %2, %L0\;srlx\\t%L0, 32, %H0";
       else
-       return \"sllx\\t%H1, 32, %3\\n\\tor\\t%L1, %3, %3\\n\\tmulx\\t%3, %2, %3\\n\\tsrlx\\t%3, 32, %H0\\n\\tmov\\t%3, %L0\";
+       return "sllx\\t%H1, 32, %3\\n\\tor\\t%L1, %3, %3\\n\\tmulx\\t%3, %2, %3\\n\\tsrlx\\t%3, 32, %H0\\n\\tmov\\t%3, %L0";
     }
   else if (rtx_equal_p (operands[1], operands[2]))
     {
       if (which_alternative == 1)
-       return \"or\\t%L1, %H1, %H1\\n\\tmulx\\t%H1, %H1, %L0\;srlx\\t%L0, 32, %H0\";
+       return "or\\t%L1, %H1, %H1\\n\\tmulx\\t%H1, %H1, %L0\;srlx\\t%L0, 32, %H0";
       else
-       return \"sllx\\t%H1, 32, %3\\n\\tor\\t%L1, %3, %3\\n\\tmulx\\t%3, %3, %3\\n\\tsrlx\\t%3, 32, %H0\\n\\tmov\\t%3, %L0\";
+       return "sllx\\t%H1, 32, %3\\n\\tor\\t%L1, %3, %3\\n\\tmulx\\t%3, %3, %3\\n\\tsrlx\\t%3, 32, %H0\\n\\tmov\\t%3, %L0";
     }
   if (sparc_check_64 (operands[2], insn) <= 0)
-    output_asm_insn (\"srl\\t%L2, 0, %L2\", operands);
+    output_asm_insn ("srl\\t%L2, 0, %L2", operands);
   if (which_alternative == 1)
-    return \"or\\t%L1, %H1, %H1\\n\\tsllx\\t%H2, 32, %L1\\n\\tor\\t%L2, %L1, %L1\\n\\tmulx\\t%H1, %L1, %L0\;srlx\\t%L0, 32, %H0\";
+    return "or\\t%L1, %H1, %H1\\n\\tsllx\\t%H2, 32, %L1\\n\\tor\\t%L2, %L1, %L1\\n\\tmulx\\t%H1, %L1, %L0\;srlx\\t%L0, 32, %H0";
   else
-    return \"sllx\\t%H1, 32, %3\\n\\tsllx\\t%H2, 32, %4\\n\\tor\\t%L1, %3, %3\\n\\tor\\t%L2, %4, %4\\n\\tmulx\\t%3, %4, %3\\n\\tsrlx\\t%3, 32, %H0\\n\\tmov\\t%3, %L0\";
-}"
+    return "sllx\\t%H1, 32, %3\\n\\tsllx\\t%H2, 32, %4\\n\\tor\\t%L1, %3, %3\\n\\tor\\t%L2, %4, %4\\n\\tmulx\\t%3, %4, %3\\n\\tsrlx\\t%3, 32, %H0\\n\\tmov\\t%3, %L0";
+}
   [(set_attr "type" "multi")
    (set_attr "length" "9,8")])
 
        (mult:DI (sign_extend:DI (match_operand:SI 1 "register_operand" ""))
                 (sign_extend:DI (match_operand:SI 2 "arith_operand" ""))))]
   "TARGET_HARD_MUL"
-  "
 {
   if (CONSTANT_P (operands[2]))
     {
       emit_insn (gen_mulsidi3_v8plus (operands[0], operands[1], operands[2]));
       DONE;
     }
-}")
+})
 
 ;; V9 puts the 64 bit product in a 64 bit register.  Only out or global
 ;; registers can hold 64 bit values in the V8plus environment.
        (mult:DI (sign_extend:DI (match_operand:SI 1 "register_operand" "r"))
                 (sign_extend:DI (match_operand:SI 2 "register_operand" "r"))))]
   "TARGET_HARD_MUL32"
-  "*
 {
-  return TARGET_SPARCLET ? \"smuld\\t%1, %2, %L0\" : \"smul\\t%1, %2, %L0\\n\\trd\\t%%y, %H0\";
-}"
+  return TARGET_SPARCLET
+         ? "smuld\\t%1, %2, %L0"
+         : "smul\\t%1, %2, %L0\\n\\trd\\t%%y, %H0";
+}
   [(set (attr "type")
        (if_then_else (eq_attr "isa" "sparclet")
                      (const_string "imul") (const_string "multi")))
        (mult:DI (sign_extend:DI (match_operand:SI 1 "register_operand" "r"))
                 (match_operand:SI 2 "small_int" "I")))]
   "TARGET_HARD_MUL32"
-  "*
 {
-  return TARGET_SPARCLET ? \"smuld\\t%1, %2, %L0\" : \"smul\\t%1, %2, %L0\\n\\trd\\t%%y, %H0\";
-}"
+  return TARGET_SPARCLET
+         ? "smuld\\t%1, %2, %L0"
+         : "smul\\t%1, %2, %L0\\n\\trd\\t%%y, %H0";
+}
   [(set (attr "type")
        (if_then_else (eq_attr "isa" "sparclet")
                      (const_string "imul") (const_string "multi")))
                               (sign_extend:DI (match_operand:SI 2 "arith_operand" "")))
                      (const_int 32))))]
   "TARGET_HARD_MUL && TARGET_ARCH32"
-  "
 {
   if (CONSTANT_P (operands[2]))
     {
                                              operands[2], GEN_INT (32)));
       DONE;
     }
-}")
+})
 
 ;; XXX
 (define_insn "smulsi3_highpart_v8plus"
        (mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" ""))
                 (zero_extend:DI (match_operand:SI 2 "uns_arith_operand" ""))))]
   "TARGET_HARD_MUL"
-  "
 {
   if (CONSTANT_P (operands[2]))
     {
       emit_insn (gen_umulsidi3_v8plus (operands[0], operands[1], operands[2]));
       DONE;
     }
-}")
+})
 
 ;; XXX
 (define_insn "umulsidi3_v8plus"
        (mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "r"))
                 (zero_extend:DI (match_operand:SI 2 "register_operand" "r"))))]
   "TARGET_HARD_MUL32"
-  "*
 {
-  return TARGET_SPARCLET ? \"umuld\\t%1, %2, %L0\" : \"umul\\t%1, %2, %L0\\n\\trd\\t%%y, %H0\";
-}"
+  return TARGET_SPARCLET
+         ? "umuld\\t%1, %2, %L0"
+         : "umul\\t%1, %2, %L0\\n\\trd\\t%%y, %H0";
+}
   [(set (attr "type")
         (if_then_else (eq_attr "isa" "sparclet")
                       (const_string "imul") (const_string "multi")))
        (mult:DI (zero_extend:DI (match_operand:SI 1 "register_operand" "r"))
                 (match_operand:SI 2 "uns_small_int" "")))]
   "TARGET_HARD_MUL32"
-  "*
 {
-  return TARGET_SPARCLET ? \"umuld\\t%1, %2, %L0\" : \"umul\\t%1, %2, %L0\\n\\trd\\t%%y, %H0\";
-}"
+  return TARGET_SPARCLET
+         ? "umuld\\t%1, %2, %L0"
+         : "umul\\t%1, %2, %L0\\n\\trd\\t%%y, %H0";
+}
   [(set (attr "type")
        (if_then_else (eq_attr "isa" "sparclet")
                      (const_string "imul") (const_string "multi")))
                               (zero_extend:DI (match_operand:SI 2 "uns_arith_operand" "")))
                      (const_int 32))))]
   "TARGET_HARD_MUL && TARGET_ARCH32"
-  "
 {
   if (CONSTANT_P (operands[2]))
     {
                                              operands[2], GEN_INT (32)));
       DONE;
     }
-}")
+})
 
 ;; XXX
 (define_insn "umulsi3_highpart_v8plus"
                           (match_operand:SI 2 "input_operand" "rI,m")))
              (clobber (match_scratch:SI 3 "=&r,&r"))])]
   "TARGET_V8 || TARGET_DEPRECATED_V8_INSNS"
-  "
 {
   if (TARGET_ARCH64)
     {
                                  operands[3]));
       DONE;
     }
-}")
+})
 
 (define_insn "divsi3_sp32"
   [(set (match_operand:SI 0 "register_operand" "=r,r")
    (clobber (match_scratch:SI 3 "=&r,&r"))]
   "(TARGET_V8 || TARGET_DEPRECATED_V8_INSNS)
    && TARGET_ARCH32"
-  "*
 {
   if (which_alternative == 0)
     if (TARGET_V9)
-      return \"sra\\t%1, 31, %3\\n\\twr\\t%3, 0, %%y\\n\\tsdiv\\t%1, %2, %0\";
+      return "sra\\t%1, 31, %3\\n\\twr\\t%3, 0, %%y\\n\\tsdiv\\t%1, %2, %0";
     else
-      return \"sra\\t%1, 31, %3\\n\\twr\\t%3, 0, %%y\\n\\tnop\\n\\tnop\\n\\tnop\\n\\tsdiv\\t%1, %2, %0\";
+      return "sra\\t%1, 31, %3\\n\\twr\\t%3, 0, %%y\\n\\tnop\\n\\tnop\\n\\tnop\\n\\tsdiv\\t%1, %2, %0";
   else
     if (TARGET_V9)
-      return \"sra\\t%1, 31, %3\\n\\twr\\t%3, 0, %%y\\n\\tld\\t%2, %3\\n\\tsdiv\\t%1, %3, %0\";
+      return "sra\\t%1, 31, %3\\n\\twr\\t%3, 0, %%y\\n\\tld\\t%2, %3\\n\\tsdiv\\t%1, %3, %0";
     else
-      return \"sra\\t%1, 31, %3\\n\\twr\\t%3, 0, %%y\\n\\tld\\t%2, %3\\n\\tnop\\n\\tnop\\n\\tsdiv\\t%1, %3, %0\";
-}"
+      return "sra\\t%1, 31, %3\\n\\twr\\t%3, 0, %%y\\n\\tld\\t%2, %3\\n\\tnop\\n\\tnop\\n\\tsdiv\\t%1, %3, %0";
+}
   [(set_attr "type" "multi")
    (set (attr "length")
        (if_then_else (eq_attr "isa" "v9")
        (div:SI (match_dup 1) (match_dup 2)))
    (clobber (match_scratch:SI 3 "=&r"))]
   "TARGET_V8 || TARGET_DEPRECATED_V8_INSNS"
-  "*
 {
   if (TARGET_V9)
-    return \"sra\\t%1, 31, %3\\n\\twr\\t%3, 0, %%y\\n\\tsdivcc\\t%1, %2, %0\";
+    return "sra\\t%1, 31, %3\\n\\twr\\t%3, 0, %%y\\n\\tsdivcc\\t%1, %2, %0";
   else
-    return \"sra\\t%1, 31, %3\\n\\twr\\t%3, 0, %%y\\n\\tnop\\n\\tnop\\n\\tnop\\n\\tsdivcc\\t%1, %2, %0\";
-}"
+    return "sra\\t%1, 31, %3\\n\\twr\\t%3, 0, %%y\\n\\tnop\\n\\tnop\\n\\tnop\\n\\tsdivcc\\t%1, %2, %0";
+}
   [(set_attr "type" "multi")
    (set (attr "length")
        (if_then_else (eq_attr "isa" "v9")
   "(TARGET_V8
     || TARGET_DEPRECATED_V8_INSNS)
    && TARGET_ARCH32"
-  "*
 {
-  output_asm_insn (\"wr\\t%%g0, %%g0, %%y\", operands);
+  output_asm_insn ("wr\\t%%g0, %%g0, %%y", operands);
   switch (which_alternative)
     {
     default:
-      return \"nop\\n\\tnop\\n\\tnop\\n\\tudiv\\t%1, %2, %0\";
+      return "nop\\n\\tnop\\n\\tnop\\n\\tudiv\\t%1, %2, %0";
     case 1:
-      return \"ld\\t%2, %0\\n\\tnop\\n\\tnop\\n\\tudiv\\t%1, %0, %0\";
+      return "ld\\t%2, %0\\n\\tnop\\n\\tnop\\n\\tudiv\\t%1, %0, %0";
     case 2:
-      return \"ld\\t%1, %0\\n\\tnop\\n\\tnop\\n\\tudiv\\t%0, %2, %0\";
+      return "ld\\t%1, %0\\n\\tnop\\n\\tnop\\n\\tudiv\\t%0, %2, %0";
     }
-}"
+}
   [(set_attr "type" "multi")
    (set_attr "length" "5")])
 
        (udiv:SI (match_dup 1) (match_dup 2)))]
   "TARGET_V8
    || TARGET_DEPRECATED_V8_INSNS"
-  "*
 {
   if (TARGET_V9)
-    return \"wr\\t%%g0, %%g0, %%y\\n\\tudivcc\\t%1, %2, %0\";
+    return "wr\\t%%g0, %%g0, %%y\\n\\tudivcc\\t%1, %2, %0";
   else
-    return \"wr\\t%%g0, %%g0, %%y\\n\\tnop\\n\\tnop\\n\\tnop\\n\\tudivcc\\t%1, %2, %0\";
-}"
+    return "wr\\t%%g0, %%g0, %%y\\n\\tnop\\n\\tnop\\n\\tnop\\n\\tudivcc\\t%1, %2, %0";
+}
   [(set_attr "type" "multi")
    (set (attr "length")
        (if_then_else (eq_attr "isa" "v9")
    && (INTVAL (operands[2]) & 0x3ff) == 0x3ff"
   [(set (match_dup 3) (match_dup 4))
    (set (match_dup 0) (and:SI (not:SI (match_dup 3)) (match_dup 1)))]
-  "
 {
   operands[4] = GEN_INT (~INTVAL (operands[2]));
-}")
+})
 
 ;; Split DImode logical operations requiring two instructions.
 (define_split
            && REGNO (SUBREG_REG (operands[0])) < 32))"
   [(set (match_dup 4) (match_op_dup:SI 1 [(match_dup 6) (match_dup 8)]))
    (set (match_dup 5) (match_op_dup:SI 1 [(match_dup 7) (match_dup 9)]))]
-  "
 {
   operands[4] = gen_highpart (SImode, operands[0]);
   operands[5] = gen_lowpart (SImode, operands[0]);
 #endif
     operands[8] = gen_highpart_mode (SImode, DImode, operands[3]);
   operands[9] = gen_lowpart (SImode, operands[3]);
-}")
+})
 
 (define_insn_and_split "*and_not_di_sp32"
   [(set (match_operand:DI 0 "register_operand" "=r,b")
    && (INTVAL (operands[2]) & 0x3ff) == 0x3ff"
   [(set (match_dup 3) (match_dup 4))
    (set (match_dup 0) (ior:SI (not:SI (match_dup 3)) (match_dup 1)))]
-  "
 {
   operands[4] = GEN_INT (~INTVAL (operands[2]));
-}")
+})
 
 (define_insn_and_split "*or_not_di_sp32"
   [(set (match_operand:DI 0 "register_operand" "=r,b")
    && (INTVAL (operands[2]) & 0x3ff) == 0x3ff"
   [(set (match_dup 3) (match_dup 4))
    (set (match_dup 0) (not:SI (xor:SI (match_dup 3) (match_dup 1))))]
-  "
 {
   operands[4] = GEN_INT (~INTVAL (operands[2]));
-}")
+})
 
 (define_split
   [(set (match_operand:SI 0 "register_operand" "")
    && (INTVAL (operands[2]) & 0x3ff) == 0x3ff"
   [(set (match_dup 3) (match_dup 4))
    (set (match_dup 0) (xor:SI (match_dup 3) (match_dup 1)))]
-  "
 {
   operands[4] = GEN_INT (~INTVAL (operands[2]));
-}")
+})
 
 ;; xnor patterns.  Note that (a ^ ~b) == (~a ^ b) == ~(a ^ b).
 ;; Combine now canonicalizes to the rightmost expression.
   [(set (match_operand:DI 0 "register_operand" "=r")
        (neg:DI (match_operand:DI 1 "register_operand" "r")))]
   ""
-  "
 {
   if (! TARGET_ARCH64)
     {
                                                           SPARC_ICC_REG)))));
       DONE;
     }
-}")
+})
 
 (define_insn_and_split "*negdi2_sp32"
   [(set (match_operand:DI 0 "register_operand" "=r")
        (ashift:SI (match_operand:SI 1 "register_operand" "r")
                   (match_operand:SI 2 "arith_operand" "rI")))]
   ""
-  "*
 {
   if (operands[2] == const1_rtx)
-    return \"add\\t%1, %1, %0\";
-  return \"sll\\t%1, %2, %0\";
-}"
+    return "add\\t%1, %1, %0";
+  return "sll\\t%1, %2, %0";
+}
   [(set (attr "type")
        (if_then_else (match_operand 2 "const1_operand" "")
                      (const_string "ialu") (const_string "shift")))])
        (ashift:DI (match_operand:DI 1 "register_operand" "r")
                   (match_operand:SI 2 "arith_operand" "rI")))]
   "TARGET_ARCH64 || TARGET_V8PLUS"
-  "
 {
   if (! TARGET_ARCH64)
     {
       emit_insn (gen_ashldi3_v8plus (operands[0], operands[1], operands[2]));
       DONE;
     }
-}")
+})
 
 (define_insn "*ashldi3_sp64"
   [(set (match_operand:DI 0 "register_operand" "=r")
        (ashift:DI (match_operand:DI 1 "register_operand" "r")
                   (match_operand:SI 2 "arith_operand" "rI")))]
   "TARGET_ARCH64"
-  "*
 {
   if (operands[2] == const1_rtx)
-    return \"add\\t%1, %1, %0\";
-  return \"sllx\\t%1, %2, %0\";
-}"
+    return "add\\t%1, %1, %0";
+  return "sllx\\t%1, %2, %0";
+}
   [(set (attr "type")
        (if_then_else (match_operand 2 "const1_operand" "")
                      (const_string "ialu") (const_string "shift")))])
                   (match_operand:SI 2 "arith_operand" "rI,rI,rI")))
    (clobber (match_scratch:SI 3 "=X,X,&h"))]
   "TARGET_V8PLUS"
-  "*return sparc_v8plus_shift (operands, insn, \"sllx\");"
+  { return sparc_v8plus_shift (operands, insn, "sllx"); }
   [(set_attr "type" "multi")
    (set_attr "length" "5,5,6")])
 
 ;                          (match_operand:SI 1 "arith_operand" "rI"))
 ;               (const_int -1)))]
 ;  "0 && TARGET_V8PLUS"
-;  "*
 ;{
 ;  if (GET_CODE (operands[1]) == REG && REGNO (operands[1]) == REGNO (operands[0]))
-;    return \"mov\\t1, %L0\;sllx\\t%L0, %1, %L0\;sub\\t%L0, 1, %L0\;srlx\\t%L0, 32, %H0\";
-;  return \"mov\\t1, %H0\;sllx\\t%H0, %1, %L0\;sub\\t%L0, 1, %L0\;srlx\\t%L0, 32, %H0\";
-;}"
+;    return "mov\\t1, %L0\;sllx\\t%L0, %1, %L0\;sub\\t%L0, 1, %L0\;srlx\\t%L0, 32, %H0";
+;  return "mov\\t1, %H0\;sllx\\t%H0, %1, %L0\;sub\\t%L0, 1, %L0\;srlx\\t%L0, 32, %H0";
+;}
 ;  [(set_attr "type" "multi")
 ;   (set_attr "length" "4")])
 
        (ashiftrt:SI (match_operand:SI 1 "register_operand" "r")
                     (match_operand:SI 2 "arith_operand" "rI")))]
   ""
-  "*
-{
-  return \"sra\\t%1, %2, %0\";
-}"
+  "sra\\t%1, %2, %0"
   [(set_attr "type" "shift")])
 
 (define_insn "*ashrsi3_extend"
           && !CONST_DOUBLE_HIGH (operands[2])
            && CONST_DOUBLE_LOW (operands[2]) >= 32
            && CONST_DOUBLE_LOW (operands[2]) < 64))"
-  "*
 {
   operands[2] = GEN_INT (INTVAL (operands[2]) - 32);
 
-  return \"sra\\t%1, %2, %0\";
-}"
+  return "sra\\t%1, %2, %0";
+}
   [(set_attr "type" "shift")])
 
 (define_expand "ashrdi3"
        (ashiftrt:DI (match_operand:DI 1 "register_operand" "r")
                     (match_operand:SI 2 "arith_operand" "rI")))]
   "TARGET_ARCH64 || TARGET_V8PLUS"
-  "
 {
   if (! TARGET_ARCH64)
     {
       emit_insn (gen_ashrdi3_v8plus (operands[0], operands[1], operands[2]));
       DONE;
     }
-}")
+})
 
 (define_insn ""
   [(set (match_operand:DI 0 "register_operand" "=r")
        (ashiftrt:DI (match_operand:DI 1 "register_operand" "r")
                     (match_operand:SI 2 "arith_operand" "rI")))]
   "TARGET_ARCH64"
-  "*
-{
-  return \"srax\\t%1, %2, %0\";
-}"
+  "srax\\t%1, %2, %0"
   [(set_attr "type" "shift")])
 
 ;; XXX
                     (match_operand:SI 2 "arith_operand" "rI,rI,rI")))
    (clobber (match_scratch:SI 3 "=X,X,&h"))]
   "TARGET_V8PLUS"
-  "*return sparc_v8plus_shift (operands, insn, \"srax\");"
+  { return sparc_v8plus_shift (operands, insn, "srax"); }
   [(set_attr "type" "multi")
    (set_attr "length" "5,5,6")])
 
        (lshiftrt:SI (match_operand:SI 1 "register_operand" "r")
                     (match_operand:SI 2 "arith_operand" "rI")))]
   ""
-  "*
-{
-  return \"srl\\t%1, %2, %0\";
-}"
+  "srl\\t%1, %2, %0"
   [(set_attr "type" "shift")])
 
 ;; This handles the case where
        || (GET_CODE (operands[2]) == CONST_DOUBLE
           && CONST_DOUBLE_HIGH (operands[2]) == 0
            && (unsigned HOST_WIDE_INT) CONST_DOUBLE_LOW (operands[2]) < 32))"
-  "*
 {
   operands[2] = GEN_INT (32 - INTVAL (operands[2]));
 
-  return \"srl\\t%1, %2, %0\";
-}"
+  return "srl\\t%1, %2, %0";
+}
   [(set_attr "type" "shift")])
 
 (define_expand "lshrdi3"
        (lshiftrt:DI (match_operand:DI 1 "register_operand" "r")
                     (match_operand:SI 2 "arith_operand" "rI")))]
   "TARGET_ARCH64 || TARGET_V8PLUS"
-  "
 {
   if (! TARGET_ARCH64)
     {
       emit_insn (gen_lshrdi3_v8plus (operands[0], operands[1], operands[2]));
       DONE;
     }
-}")
+})
 
 (define_insn ""
   [(set (match_operand:DI 0 "register_operand" "=r")
        (lshiftrt:DI (match_operand:DI 1 "register_operand" "r")
                     (match_operand:SI 2 "arith_operand" "rI")))]
   "TARGET_ARCH64"
-  "*
-{
-  return \"srlx\\t%1, %2, %0\";
-}"
+  "srlx\\t%1, %2, %0"
   [(set_attr "type" "shift")])
 
 ;; XXX
                     (match_operand:SI 2 "arith_operand" "rI,rI,rI")))
    (clobber (match_scratch:SI 3 "=X,X,&h"))]
   "TARGET_V8PLUS"
-  "*return sparc_v8plus_shift (operands, insn, \"srlx\");"
+  { return sparc_v8plus_shift (operands, insn, "srlx"); }
   [(set_attr "type" "multi")
    (set_attr "length" "5,5,6")])
 
        || (GET_CODE (operands[2]) == CONST_DOUBLE
           && !CONST_DOUBLE_HIGH (operands[2])
            && (unsigned HOST_WIDE_INT) CONST_DOUBLE_LOW (operands[2]) < 32))"
-  "*
 {
   operands[2] = GEN_INT (INTVAL (operands[2]) + 32);
 
-  return \"srax\\t%1, %2, %0\";
-}"
+  return "srax\\t%1, %2, %0";
+}
   [(set_attr "type" "shift")])
 
 (define_insn ""
        || (GET_CODE (operands[2]) == CONST_DOUBLE
           && !CONST_DOUBLE_HIGH (operands[2])
            && (unsigned HOST_WIDE_INT) CONST_DOUBLE_LOW (operands[2]) < 32))"
-  "*
 {
   operands[2] = GEN_INT (INTVAL (operands[2]) + 32);
 
-  return \"srlx\\t%1, %2, %0\";
-}"
+  return "srlx\\t%1, %2, %0";
+}
   [(set_attr "type" "shift")])
 
 (define_insn ""
    && (unsigned HOST_WIDE_INT) INTVAL (operands[2]) >= 32
    && (unsigned HOST_WIDE_INT) INTVAL (operands[3]) < 32
    && (unsigned HOST_WIDE_INT) (INTVAL (operands[2]) + INTVAL (operands[3])) < 64"
-  "*
 {
   operands[2] = GEN_INT (INTVAL (operands[2]) + INTVAL (operands[3]));
 
-  return \"srax\\t%1, %2, %0\";
-}"
+  return "srax\\t%1, %2, %0";
+}
   [(set_attr "type" "shift")])
 
 (define_insn ""
    && (unsigned HOST_WIDE_INT) INTVAL (operands[2]) >= 32
    && (unsigned HOST_WIDE_INT) INTVAL (operands[3]) < 32
    && (unsigned HOST_WIDE_INT) (INTVAL (operands[2]) + INTVAL (operands[3])) < 64"
-  "*
 {
   operands[2] = GEN_INT (INTVAL (operands[2]) + INTVAL (operands[3]));
 
-  return \"srlx\\t%1, %2, %0\";
-}"
+  return "srlx\\t%1, %2, %0";
+}
   [(set_attr "type" "shift")])
 \f
 ;; Unconditional and other jump instructions
 (define_insn "jump"
   [(set (pc) (label_ref (match_operand 0 "" "")))]
   ""
-  "*
 {
   /* TurboSparc is reported to have problems with
      with
   if (! TARGET_V9 && flag_delayed_branch
       && (INSN_ADDRESSES (INSN_UID (operands[0]))
          == INSN_ADDRESSES (INSN_UID (insn))))
-    return \"b\\t%l0%#\";
+    return "b\\t%l0%#";
   else
-    return TARGET_V9 ? \"ba,pt%*\\t%%xcc, %l0%(\" : \"b%*\\t%l0%(\";
-}"
+    return TARGET_V9 ? "ba,pt%*\\t%%xcc, %l0%(" : "b%*\\t%l0%(";
+}
   [(set_attr "type" "uncond_branch")])
 
 (define_expand "tablejump"
   [(parallel [(set (pc) (match_operand 0 "register_operand" "r"))
              (use (label_ref (match_operand 1 "" "")))])]
   ""
-  "
 {
   if (GET_MODE (operands[0]) != CASE_VECTOR_MODE)
     abort ();
       tmp = gen_rtx_PLUS (Pmode, tmp2, tmp);
       operands[0] = memory_address (Pmode, tmp);
     }
-}")
+})
 
 (define_insn "*tablejump_sp32"
   [(set (pc) (match_operand:SI 0 "address_operand" "p"))
   ;; operands[2] is next_arg_register
   ;; operands[3] is struct_value_size_rtx.
   ""
-  "
 {
   rtx fn_rtx, nregs_rtx;
 
 #endif
 
   DONE;
-}")
+})
 
 ;; We can't use the same pattern for these two insns, because then registers
 ;; in the address may not be properly reloaded.
   ;; operand 2 is stack_size_rtx
   ;; operand 3 is next_arg_register
   ""
-  "
 {
   rtx fn_rtx, nregs_rtx;
   rtvec vec;
   emit_call_insn (gen_rtx_PARALLEL (VOIDmode, vec));
 
   DONE;
-}")
+})
 
 (define_insn "*call_value_address_sp32"
   [(set (match_operand 0 "" "=rf")
              (match_operand 1 "" "")
              (match_operand 2 "" "")])]
   ""
-  "
 {
   int i;
 
   emit_insn (gen_blockage ());
 
   DONE;
-}")
+})
 
 ;;- tail calls
 (define_expand "sibcall"
   [(match_operand:BLK 0 "memory_operand" "")
    (match_operand 1 "" "")]
   ""
-  "
 {
   rtx valreg1 = gen_rtx_REG (DImode, 24);
   rtx valreg2 = gen_rtx_REG (TARGET_ARCH64 ? TFmode : DFmode, 32);
   expand_null_return ();
 
   DONE;
-}")
+})
 
 ;; This is a bit of a hack.  We're incrementing a fixed register (%i7),
 ;; and parts of the compiler don't want to believe that the add is needed.
    (match_operand:SI 2 "general_operand" "")
    (match_operand:SI 3 "" "")]
   ""
-  "
 {
 #if 0
   rtx chain = operands[0];
   emit_jump_insn (gen_goto_handler_and_restore (labreg));
   emit_barrier ();
   DONE;
-}")
+})
 
 ;; Special trap insn to flush register windows.
 (define_insn "flush_register_windows"
   [(unspec_volatile [(const_int 0)] UNSPECV_FLUSHW)]
   ""
-  "* return TARGET_V9 ? \"flushw\" : \"ta\\t3\";"
+  { return TARGET_V9 ? "flushw" : "ta\\t3"; }
   [(set_attr "type" "flushw")])
 
 (define_insn "goto_handler_and_restore"
 (define_expand "builtin_setjmp_setup"
   [(match_operand 0 "register_operand" "r")]
   ""
-  "
 {
   emit_insn (gen_do_builtin_setjmp_setup ());
   DONE;
-}")
+})
 
 (define_insn "do_builtin_setjmp_setup"
   [(unspec_volatile [(const_int 0)] UNSPECV_SETJMP)]
   ""
-  "*
 {
   if (! current_function_calls_alloca)
-    return \"\";
+    return "";
   if (! TARGET_V9 || TARGET_FLAT)
-    return \"\tta\t3\n\";
-  fputs (\"\tflushw\n\", asm_out_file);
+    return "\tta\t3\n";
+  fputs ("\tflushw\n", asm_out_file);
   if (flag_pic)
-    fprintf (asm_out_file, \"\tst%c\t%%l7, [%%sp+%d]\n\",
+    fprintf (asm_out_file, "\tst%c\t%%l7, [%%sp+%d]\n",
             TARGET_ARCH64 ? 'x' : 'w',
             SPARC_STACK_BIAS + 7 * UNITS_PER_WORD);
-  fprintf (asm_out_file, \"\tst%c\t%%fp, [%%sp+%d]\n\",
+  fprintf (asm_out_file, "\tst%c\t%%fp, [%%sp+%d]\n",
           TARGET_ARCH64 ? 'x' : 'w',
           SPARC_STACK_BIAS + 14 * UNITS_PER_WORD);
-  fprintf (asm_out_file, \"\tst%c\t%%i7, [%%sp+%d]\n\",
+  fprintf (asm_out_file, "\tst%c\t%%i7, [%%sp+%d]\n",
           TARGET_ARCH64 ? 'x' : 'w',
           SPARC_STACK_BIAS + 15 * UNITS_PER_WORD);
-  return \"\";
-}"
+  return "";
+}
   [(set_attr "type" "multi")
    (set (attr "length")
         (cond [(eq_attr "current_function_calls_alloca" "false")
 (define_expand "setjmp"
   [(const_int 0)]
   ""
-  "
 {
   if (TARGET_ARCH64)
     emit_insn (gen_setjmp_64 ());
   else
     emit_insn (gen_setjmp_32 ());
   DONE;
-}")
+})
 
 (define_expand "setjmp_32"
   [(set (mem:SI (plus:SI (reg:SI 14) (const_int 56))) (match_dup 0))
    (set (mem:SI (plus:SI (reg:SI 14) (const_int 60))) (reg:SI 31))]
   ""
-  "
-{ operands[0] = frame_pointer_rtx; }")
+  { operands[0] = frame_pointer_rtx; })
 
 (define_expand "setjmp_64"
   [(set (mem:DI (plus:DI (reg:DI 14) (const_int 112))) (match_dup 0))
    (set (mem:DI (plus:DI (reg:DI 14) (const_int 120))) (reg:DI 31))]
   ""
-  "
-{ operands[0] = frame_pointer_rtx; }")
+  { operands[0] = frame_pointer_rtx; })
 
 ;; Special pattern for the FLUSH instruction.
 
 (define_insn "flush"
   [(unspec_volatile [(match_operand:SI 0 "memory_operand" "m")] UNSPECV_FLUSH)]
   ""
-  "* return TARGET_V9 ? \"flush\\t%f0\" : \"iflush\\t%f0\";"
+  { return TARGET_V9 ? "flush\\t%f0" : "iflush\\t%f0"; }
   [(set_attr "type" "iflush")])
 
 (define_insn "flushdi"
   [(unspec_volatile [(match_operand:DI 0 "memory_operand" "m")] UNSPECV_FLUSH)]
   ""
-  "* return TARGET_V9 ? \"flush\\t%f0\" : \"iflush\\t%f0\";"
+  { return TARGET_V9 ? "flush\\t%f0" : "iflush\\t%f0"; }
   [(set_attr "type" "iflush")])
 
 \f
        (ffs:SI (match_operand:SI 1 "register_operand" "r")))
    (clobber (match_scratch:SI 2 "=&r"))]
   "TARGET_SPARCLITE || TARGET_SPARCLET"
-  "*
 {
-  return \"sub\\t%%g0, %1, %0\;and\\t%0, %1, %0\;scan\\t%0, 0, %0\;mov\\t32, %2\;sub\\t%2, %0, %0\;sra\\t%0, 31, %2\;and\\t%2, 31, %2\;add\\t%2, %0, %0\";
-}"
+  return "sub\\t%%g0, %1, %0\;and\\t%0, %1, %0\;scan\\t%0, 0, %0\;mov\\t32, %2\;sub\\t%2, %0, %0\;sra\\t%0, 31, %2\;and\\t%2, 31, %2\;add\\t%2, %0, %0";
+}
   [(set_attr "type" "multi")
    (set_attr "length" "8")])
 
        (match_operand:QI 1 "arith_operand" "rI"))
    (return)]
   "sparc_emitting_epilogue"
-  "*
 {
   if (! TARGET_ARCH64 && current_function_returns_struct)
-    return \"jmp\\t%%i7+12\\n\\trestore %%g0, %1, %Y0\";
+    return "jmp\\t%%i7+12\\n\\trestore %%g0, %1, %Y0";
   else if (TARGET_V9 && (GET_CODE (operands[1]) == CONST_INT
                         || IN_OR_GLOBAL_P (operands[1])))
-    return \"return\\t%%i7+8\\n\\tmov\\t%Y1, %Y0\";
+    return "return\\t%%i7+8\\n\\tmov\\t%Y1, %Y0";
   else
-    return \"ret\\n\\trestore %%g0, %1, %Y0\";
-}"
+    return "ret\\n\\trestore %%g0, %1, %Y0";
+}
   [(set_attr "type" "multi")
    (set_attr "length" "2")])
 
        (match_operand:HI 1 "arith_operand" "rI"))
    (return)]
   "sparc_emitting_epilogue"
-  "*
 {
   if (! TARGET_ARCH64 && current_function_returns_struct)
-    return \"jmp\\t%%i7+12\\n\\trestore %%g0, %1, %Y0\";
+    return "jmp\\t%%i7+12\\n\\trestore %%g0, %1, %Y0";
   else if (TARGET_V9 && (GET_CODE (operands[1]) == CONST_INT
                         || IN_OR_GLOBAL_P (operands[1])))
-    return \"return\\t%%i7+8\\n\\tmov\\t%Y1, %Y0\";
+    return "return\\t%%i7+8\\n\\tmov\\t%Y1, %Y0";
   else
-    return \"ret\;restore %%g0, %1, %Y0\";
-}"
+    return "ret\;restore %%g0, %1, %Y0";
+}
   [(set_attr "type" "multi")
    (set_attr "length" "2")])
 
        (match_operand:SI 1 "arith_operand" "rI"))
    (return)]
   "sparc_emitting_epilogue"
-  "*
 {
   if (! TARGET_ARCH64 && current_function_returns_struct)
-    return \"jmp\\t%%i7+12\\n\\trestore %%g0, %1, %Y0\";
+    return "jmp\\t%%i7+12\\n\\trestore %%g0, %1, %Y0";
   else if (TARGET_V9 && (GET_CODE (operands[1]) == CONST_INT
                         || IN_OR_GLOBAL_P (operands[1])))
-    return \"return\\t%%i7+8\\n\\tmov\\t%Y1, %Y0\";
+    return "return\\t%%i7+8\\n\\tmov\\t%Y1, %Y0";
   else
-    return \"ret\;restore %%g0, %1, %Y0\";
-}"
+    return "ret\;restore %%g0, %1, %Y0";
+}
   [(set_attr "type" "multi")
    (set_attr "length" "2")])
 
        (match_operand:SF 1 "register_operand" "r"))
    (return)]
   "sparc_emitting_epilogue"
-  "*
 {
   if (! TARGET_ARCH64 && current_function_returns_struct)
-    return \"jmp\\t%%i7+12\\n\\trestore %%g0, %1, %Y0\";
+    return "jmp\\t%%i7+12\\n\\trestore %%g0, %1, %Y0";
   else if (TARGET_V9 && IN_OR_GLOBAL_P (operands[1]))
-    return \"return\\t%%i7+8\\n\\tmov\\t%Y1, %Y0\";
+    return "return\\t%%i7+8\\n\\tmov\\t%Y1, %Y0";
   else
-    return \"ret\;restore %%g0, %1, %Y0\";
-}"
+    return "ret\;restore %%g0, %1, %Y0";
+}
   [(set_attr "type" "multi")
    (set_attr "length" "2")])
 
        (match_operand:DF 1 "register_operand" "r"))
    (return)]
   "sparc_emitting_epilogue && TARGET_ARCH64"
-  "*
 {
   if (IN_OR_GLOBAL_P (operands[1]))
-    return \"return\\t%%i7+8\\n\\tmov\\t%Y1, %Y0\";
+    return "return\\t%%i7+8\\n\\tmov\\t%Y1, %Y0";
   else
-    return \"ret\;restore %%g0, %1, %Y0\";
-}"
+    return "ret\;restore %%g0, %1, %Y0";
+}
   [(set_attr "type" "multi")
    (set_attr "length" "2")])
 
                 (match_operand:SI 2 "arith_operand" "rI")))
    (return)]
   "sparc_emitting_epilogue"
-  "*
 {
   if (! TARGET_ARCH64 && current_function_returns_struct)
-    return \"jmp\\t%%i7+12\\n\\trestore %r1, %2, %Y0\";
+    return "jmp\\t%%i7+12\\n\\trestore %r1, %2, %Y0";
   /* If operands are global or in registers, can use return */
   else if (TARGET_V9 && IN_OR_GLOBAL_P (operands[1])
           && (GET_CODE (operands[2]) == CONST_INT
               || IN_OR_GLOBAL_P (operands[2])))
-    return \"return\\t%%i7+8\\n\\tadd\\t%Y1, %Y2, %Y0\";
+    return "return\\t%%i7+8\\n\\tadd\\t%Y1, %Y2, %Y0";
   else
-    return \"ret\;restore %r1, %2, %Y0\";
-}"
+    return "ret\;restore %r1, %2, %Y0";
+}
   [(set_attr "type" "multi")
    (set_attr "length" "2")])
 
                   (match_operand:SI 2 "immediate_operand" "in")))
    (return)]
   "sparc_emitting_epilogue && ! TARGET_CM_MEDMID"
-  "*
 {
   if (! TARGET_ARCH64 && current_function_returns_struct)
-    return \"jmp\\t%%i7+12\\n\\trestore %r1, %%lo(%a2), %Y0\";
+    return "jmp\\t%%i7+12\\n\\trestore %r1, %%lo(%a2), %Y0";
   /* If operands are global or in registers, can use return */
   else if (TARGET_V9 && IN_OR_GLOBAL_P (operands[1]))
-    return \"return\\t%%i7+8\\n\\tor\\t%Y1, %%lo(%a2), %Y0\";
+    return "return\\t%%i7+8\\n\\tor\\t%Y1, %%lo(%a2), %Y0";
   else
-    return \"ret\;restore %r1, %%lo(%a2), %Y0\";
-}"
+    return "ret\;restore %r1, %%lo(%a2), %Y0";
+}
   [(set_attr "type" "multi")
    (set_attr "length" "2")])
 
    (match_operand 1 "const_int_operand" "")
    (match_operand 2 "const_int_operand" "")]
   "TARGET_V9"
-  "
 {
   if (TARGET_ARCH64)
     emit_insn (gen_prefetch_64 (operands[0], operands[1], operands[2]));
   else
     emit_insn (gen_prefetch_32 (operands[0], operands[1], operands[2]));
   DONE;
-}")
+})
 
 (define_insn "prefetch_64"
   [(prefetch (match_operand:DI 0 "address_operand" "p")
 (define_expand "prologue"
   [(const_int 1)]
   "flag_pic && current_function_uses_pic_offset_table"
-  "
 {
   load_pic_register ();
   DONE;
-}")
+})
 
 ;; We need to reload %l7 for -mflat -fpic,
 ;; otherwise %l7 should be preserved simply
 (define_expand "exception_receiver"
   [(const_int 0)]
   "TARGET_FLAT && flag_pic"
-  "
 {
   load_pic_register ();
   DONE;
-}")
+})
 
 ;; Likewise
 (define_expand "builtin_setjmp_receiver"
   [(label_ref (match_operand 0 "" ""))]
   "TARGET_FLAT && flag_pic"
-  "
 {
   load_pic_register ();
   DONE;
-}")
+})
 \f
 (define_insn "trap"
   [(trap_if (const_int 1) (const_int 5))]