* config/i386/i386.c: Use ASM_LONG instead of .long. Concatenate
authoruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 23 Jul 2009 21:17:02 +0000 (21:17 +0000)
committeruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 23 Jul 2009 21:17:02 +0000 (21:17 +0000)
ASM_LONG, LPREFIX, MCOUNT_NAME and PROFILE_COUNT_REGISTER strings
with the rest of string where appropriate.  Use fputs or putc
instead of fprintf where appropriate.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@150030 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/i386/i386.c
gcc/config/i386/sse.md

index e12299f..9eef599 100644 (file)
@@ -1,3 +1,10 @@
+2009-07-23  Uros Bizjak  <ubizjak@gmail.com>
+
+       * config/i386/i386.c: Use ASM_LONG instead of .long.  Concatenate
+       ASM_LONG, LPREFIX, MCOUNT_NAME and PROFILE_COUNT_REGISTER strings
+       with the rest of string where appropriate.  Use fputs or putc
+       instead of fprintf where appropriate.
+
 2009-07-22  Michael Meissner  <meissner@linux.vnet.ibm.com>
            Pat Haugen  <pthaugen@us.ibm.com>
            Revital Eres <ERES@il.ibm.com>
@@ -42,8 +49,7 @@
        (TARGET_SECONDARY_RELOAD): Define target hook.
        (TARGET_IRA_COVER_CLASSES): Ditto.
        (rs6000_hard_regno_nregs_internal): If -mvsx, floating point
-       registers are 128 bits if VSX memory reference instructions are
-       used.
+       registers are 128 bits if VSX memory reference instructions are used.
        (rs6000_hard_regno_mode_ok): For VSX, only check if the VSX memory
        unit is being used.
        (rs6000_debug_vector_unit): Move into rs6000_debug_reg_global.
@@ -83,8 +89,7 @@
        (altivec_expand_builtin): Ditto.
        (rs6000_expand_ternop_builtin): Use a switch instead of an if
        statement for vsldoi support.
-       (altivec_expand_ld_builtin): Change to use new names from
-       vector.md.
+       (altivec_expand_ld_builtin): Change to use new names from vector.md.
        (altivec_expand_st_builtin): Ditto.
        (paired_expand_builtin): Whitespace changes.
        (rs6000_init_builtins): Add V2DF/V2DI types.  Initialize the
@@ -94,8 +99,7 @@
        create builtin function types dynamically as we need them.
        (builtin_hash_function): New support for hashing the tree types
        for builtin function as we need it, rather than trying to build
-       all of the trees that we need.  Add initial preliminary VSX
-       support.
+       all of the trees that we need.  Add initial preliminary VSX support.
        (builtin_function_type): Ditto.
        (builtin_function_eq): Ditto.
        (builtin_hash_struct): Ditto.
        (rs6000_common_init_builtins): Ditto.
        (enum reload_reg_type): New enum for simplifing reg classes.
        (rs6000_reload_register_type): Simplify register classes into GPR,
-       Vector, and other registers.
-       Altivec and VSX addresses in reload.
+       Vector, and other registers.  Altivec and VSX addresses in reload.
        (rs6000_secondary_reload_inner): Ditto.
        (rs6000_ira_cover_classes): New target hook, that returns the
        appropriate cover classes, based on -mvsx being used or not.
        UNSPEC.
        (rs6000_emit_vector_select): Ditto.
        (rs6000_emit_vector_cond_expr): Ditto.
-       (rs6000_emit_minmax): Directly generate min/max under altivec,
-       vsx.
+       (rs6000_emit_minmax): Directly generate min/max under altivec, vsx.
        (create_TOC_reference): Add -mdebug=addr support.
-       (emit_frame_save): VSX loads/stores need register indexed
-       addressing.
+       (emit_frame_save): VSX loads/stores need register indexed addressing.
 
        * config/rs6000/rs6000.md: Include vector.md.
 
        (VM): New iterator for moves that includes the VSX types.
        (altivec_vperm_<mode>): Add VSX types.  Add unsigned types.
        (altivec_vperm_<mode>_uns): New, for unsigned types.
-       (altivec_vsel_*): Rewrite vector comparisons and predicate
-       builtins.
+       (altivec_vsel_*): Rewrite vector comparisons and predicate builtins.
        (altivec_eq<mode>): Ditto.
        (altivec_gt<mode>): Ditto.
        (altivec_gtu<mode>): Ditto.
index f6c94e5..35c169a 100644 (file)
@@ -2562,7 +2562,7 @@ ix86_debug_options (void)
       free (opts);
     }
   else
-    fprintf (stderr, "<no options>\n\n");
+    fputs ("<no options>\n\n", stderr);
 
   return;
 }
@@ -4197,9 +4197,9 @@ x86_elf_aligned_common (FILE *file,
 {
   if ((ix86_cmodel == CM_MEDIUM || ix86_cmodel == CM_MEDIUM_PIC)
       && size > (unsigned int)ix86_section_threshold)
-    fprintf (file, ".largecomm\t");
+    fputs (".largecomm\t", file);
   else
-    fprintf (file, "%s", COMMON_ASM_OP);
+    fputs (COMMON_ASM_OP, file);
   assemble_name (file, name);
   fprintf (file, ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n",
           size, align / BITS_PER_UNIT);
@@ -7608,7 +7608,7 @@ ix86_file_end (void)
          (*targetm.asm_out.globalize_label) (asm_out_file, name);
          fputs ("\t.hidden\t", asm_out_file);
          assemble_name (asm_out_file, name);
-         fputc ('\n', asm_out_file);
+         putc ('\n', asm_out_file);
          ASM_DECLARE_FUNCTION_NAME (asm_out_file, name, decl);
        }
       else
@@ -11731,7 +11731,7 @@ print_operand (FILE *file, rtx x, int code)
 #if TARGET_MACHO
          fputs (" ; ", file);
 #else
-         fputc (' ', file);
+         putc (' ', file);
 #endif
          return;
 
@@ -11809,7 +11809,7 @@ print_operand (FILE *file, rtx x, int code)
       char dstr[30];
 
       real_to_decimal (dstr, CONST_DOUBLE_REAL_VALUE (x), sizeof (dstr), 0, 1);
-      fprintf (file, "%s", dstr);
+      fputs (dstr, file);
     }
 
   else if (GET_CODE (x) == CONST_DOUBLE
@@ -12694,7 +12694,7 @@ ix86_output_addr_vec_elt (FILE *file, int value)
   gcc_assert (!TARGET_64BIT);
 #endif
 
-  fprintf (file, "%s%s%d\n", directive, LPREFIX, value);
+  fprintf (file, "%s" LPREFIX "%d\n", directive, value);
 }
 
 void
@@ -12710,21 +12710,21 @@ ix86_output_addr_diff_elt (FILE *file, int value, int rel)
 #endif
   /* We can't use @GOTOFF for text labels on VxWorks; see gotoff_operand.  */
   if (TARGET_64BIT || TARGET_VXWORKS_RTP)
-    fprintf (file, "%s%s%d-%s%d\n",
-            directive, LPREFIX, value, LPREFIX, rel);
+    fprintf (file, "%s" LPREFIX "%d-" LPREFIX "%d\n",
+            directive, value, rel);
   else if (HAVE_AS_GOTOFF_IN_DATA)
-    fprintf (file, "%s%s%d@GOTOFF\n", ASM_LONG, LPREFIX, value);
+    fprintf (file, ASM_LONG LPREFIX "%d@GOTOFF\n", value);
 #if TARGET_MACHO
   else if (TARGET_MACHO)
     {
-      fprintf (file, "%s%s%d-", ASM_LONG, LPREFIX, value);
+      fprintf (file, ASM_LONG LPREFIX "%d-", value);
       machopic_output_function_base_name (file);
-      fprintf(file, "\n");
+      putc ('\n', file);
     }
 #endif
   else
-    asm_fprintf (file, "%s%U%s+[.-%s%d]\n",
-                ASM_LONG, GOT_SYMBOL_NAME, LPREFIX, value);
+    asm_fprintf (file, ASM_LONG "%U%s+[.-" LPREFIX "%d]\n",
+                GOT_SYMBOL_NAME, value);
 }
 \f
 /* Generate either "mov $0, reg" or "xor reg, reg", as appropriate
@@ -27105,17 +27105,17 @@ machopic_output_stub (FILE *file, const char *symb, const char *stub)
   if (MACHOPIC_PURE)
     {
       fprintf (file, "\tlea\t%s-LPC$%d(%%eax),%%eax\n", lazy_ptr_name, label);
-      fprintf (file, "\tpushl\t%%eax\n");
+      fputs ("\tpushl\t%eax\n", file);
     }
   else
     fprintf (file, "\tpushl\t$%s\n", lazy_ptr_name);
 
-  fprintf (file, "\tjmp\tdyld_stub_binding_helper\n");
+  fputs ("\tjmp\tdyld_stub_binding_helper\n", file);
 
   switch_to_section (darwin_sections[machopic_lazy_symbol_ptr_section]);
   fprintf (file, "%s:\n", lazy_ptr_name);
   fprintf (file, "\t.indirect_symbol %s\n", symbol_name);
-  fprintf (file, "\t.long %s\n", binder_name);
+  fprintf (file, ASM_LONG "%s\n", binder_name);
 }
 
 void
@@ -27512,29 +27512,29 @@ x86_function_profiler (FILE *file, int labelno ATTRIBUTE_UNUSED)
   if (TARGET_64BIT)
     {
 #ifndef NO_PROFILE_COUNTERS
-      fprintf (file, "\tleaq\t%sP%d@(%%rip),%%r11\n", LPREFIX, labelno);
+      fprintf (file, "\tleaq\t" LPREFIX "P%d@(%%rip),%%r11\n", labelno);
 #endif
 
       if (DEFAULT_ABI == SYSV_ABI && flag_pic)
-       fprintf (file, "\tcall\t*%s@GOTPCREL(%%rip)\n", MCOUNT_NAME);
+       fputs ("\tcall\t*" MCOUNT_NAME "@GOTPCREL(%rip)\n", file);
       else
-       fprintf (file, "\tcall\t%s\n", MCOUNT_NAME);
+       fputs ("\tcall\t" MCOUNT_NAME "\n", file);
     }
   else if (flag_pic)
     {
 #ifndef NO_PROFILE_COUNTERS
-      fprintf (file, "\tleal\t%sP%d@GOTOFF(%%ebx),%%%s\n",
-              LPREFIX, labelno, PROFILE_COUNT_REGISTER);
+      fprintf (file, "\tleal\t" LPREFIX "P%d@GOTOFF(%%ebx),%%" PROFILE_COUNT_REGISTER "\n",
+              labelno);
 #endif
-      fprintf (file, "\tcall\t*%s@GOT(%%ebx)\n", MCOUNT_NAME);
+      fputs ("\tcall\t*" MCOUNT_NAME "@GOT(%ebx)\n", file);
     }
   else
     {
 #ifndef NO_PROFILE_COUNTERS
-      fprintf (file, "\tmovl\t$%sP%d,%%%s\n", LPREFIX, labelno,
-              PROFILE_COUNT_REGISTER);
+      fprintf (file, "\tmovl\t$" LPREFIX "P%d,%%" PROFILE_COUNT_REGISTER "\n",
+              labelno);
 #endif
-      fprintf (file, "\tcall\t%s\n", MCOUNT_NAME);
+      fputs ("\tcall\t" MCOUNT_NAME "\n", file);
     }
 }
 
index 84af375..43ec67a 100644 (file)
          (match_dup 2)
            (parallel [(const_int 0) (const_int 1)]))))]
  "TARGET_SSE2"
-{
- operands[2] = gen_reg_rtx (V4SImode);
-})
+ "operands[2] = gen_reg_rtx (V4SImode);")
 
 (define_expand "vec_unpacks_float_lo_v4si"
   [(set (match_operand:V2DF 0 "register_operand" "")