OSDN Git Service

PR objc/43061
[pf3gnuchains/gcc-fork.git] / gcc / config / sol2-c.c
index 6164484..601db97 100644 (file)
@@ -1,12 +1,12 @@
 /* Solaris support needed only by C/C++ frontends.
-   Copyright (C) 2004  Free Software Foundation, Inc.
+   Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
    Contributed by CodeSourcery, LLC.
 
 This file is part of GCC.
 
 GCC is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
+the Free Software Foundation; either version 3, or (at your option)
 any later version.
 
 GCC is distributed in the hope that it will be useful,
@@ -15,9 +15,8 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
-along with GCC; see the file COPYING.  If not, write to
-the Free Software Foundation, 59 Temple Place - Suite 330,
-Boston, MA 02111-1307, USA.  */
+along with GCC; see the file COPYING3.  If not see
+<http://www.gnu.org/licenses/>.  */
 
 #include "config.h"
 #include "system.h"
@@ -37,15 +36,15 @@ Boston, MA 02111-1307, USA.  */
 /* cmn_err only accepts "l" and "ll".  */
 static const format_length_info cmn_err_length_specs[] =
 {
-  { "l", FMT_LEN_l, STD_C89, "ll", FMT_LEN_ll, STD_C89 },
-  { NULL, 0, 0, NULL, 0, 0 }
+  { "l", FMT_LEN_l, STD_C89, "ll", FMT_LEN_ll, STD_C89, 0 },
+  { NULL, FMT_LEN_none, STD_C89, NULL, FMT_LEN_none, STD_C89, 0 }
 };
 
 static const format_flag_spec cmn_err_flag_specs[] =
 {
   { 'w',  0, 0, N_("field width"),     N_("field width in printf format"),     STD_C89 },
   { 'L',  0, 0, N_("length modifier"), N_("length modifier in printf format"), STD_C89 },
-  { 0, 0, 0, NULL, NULL, 0 }
+  { 0, 0, 0, NULL, NULL, STD_C89 }
 };
 
 
@@ -66,15 +65,15 @@ static const format_char_info cmn_err_char_table[] =
   { "c",   0, STD_C89, { T89_C,   BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN  }, "w",  "",   NULL },
   { "p",   1, STD_C89, { T89_V,   BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN  }, "w", "c",  NULL },
   { "s",   1, STD_C89, { T89_C,   BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN  }, "w",  "cR", NULL },
-  { "b",   0, STD_C89, { T89_I,   BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN  }, "",   "",   &bitfield_string_type },
-  { NULL,  0, 0, NOLENGTHS, NULL, NULL, NULL }
+  { "b",   0, STD_C89, { T89_I,   BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN,  BADLEN  }, "w",   "",   &bitfield_string_type },
+  { NULL,  0, STD_C89, NOLENGTHS, NULL, NULL, NULL }
 };
 
 const format_kind_info solaris_format_types[] = {
   { "cmn_err",  cmn_err_length_specs,  cmn_err_char_table, "", NULL,
     cmn_err_flag_specs, cmn_err_flag_pairs,
     FMT_FLAG_ARG_CONVERT|FMT_FLAG_EMPTY_PREC_OK,
-    'w', 0, 0, 0, 'L',
+    'w', 0, 0, 0, 'L', 0,
     &integer_type_node, &integer_type_node
   }
 };
@@ -88,10 +87,10 @@ solaris_pragma_align (cpp_reader *pfile ATTRIBUTE_UNUSED)
   enum cpp_ttype ttype;
   HOST_WIDE_INT low;
 
-  if (c_lex (&x) != CPP_NUMBER
-      || c_lex (&t) != CPP_OPEN_PAREN)
+  if (pragma_lex (&x) != CPP_NUMBER
+      || pragma_lex (&t) != CPP_OPEN_PAREN)
     {
-      warning ("malformed %<#pragma align%>, ignoring");
+      warning (0, "malformed %<#pragma align%>, ignoring");
       return;
     }
 
@@ -100,14 +99,14 @@ solaris_pragma_align (cpp_reader *pfile ATTRIBUTE_UNUSED)
       || (low != 1 && low != 2 && low != 4 && low != 8 && low != 16
          && low != 32 && low != 64 && low != 128))
     {
-      warning ("invalid alignment for %<#pragma align%>, ignoring");
+      warning (0, "invalid alignment for %<#pragma align%>, ignoring");
       return;
     }
 
-  ttype = c_lex (&t);
+  ttype = pragma_lex (&t);
   if (ttype != CPP_NAME)
     {
-      warning ("malformed %<#pragma align%>, ignoring");
+      warning (0, "malformed %<#pragma align%>, ignoring");
       return;
     }
 
@@ -115,31 +114,31 @@ solaris_pragma_align (cpp_reader *pfile ATTRIBUTE_UNUSED)
     {
       tree decl = identifier_global_value (t);
       if (decl && DECL_P (decl))
-       warning ("%<#pragma align%> must appear before the declaration of "
+       warning (0, "%<#pragma align%> must appear before the declaration of "
                 "%D, ignoring", decl);
       else
        solaris_pending_aligns = tree_cons (t, build_tree_list (NULL, x),
                                            solaris_pending_aligns);
 
-      ttype = c_lex (&t);
+      ttype = pragma_lex (&t);
       if (ttype == CPP_COMMA)
        {
-         ttype = c_lex (&t);
+         ttype = pragma_lex (&t);
          if (ttype != CPP_NAME)
            {
-             warning ("malformed %<#pragma align%>");
+             warning (0, "malformed %<#pragma align%>");
              return;
            }
        }
       else if (ttype == CPP_CLOSE_PAREN)
        {
-         if (c_lex (&t) != CPP_EOF)
-           warning ("junk at end of %<#pragma align%>");
+         if (pragma_lex (&t) != CPP_EOF)
+           warning (0, "junk at end of %<#pragma align%>");
          return;
        }
       else
        {
-         warning ("malformed %<#pragma align%>");
+         warning (0, "malformed %<#pragma align%>");
          return;
        }
     }
@@ -153,16 +152,16 @@ solaris_pragma_init (cpp_reader *pfile ATTRIBUTE_UNUSED)
   tree t;
   enum cpp_ttype ttype;
 
-  if (c_lex (&t) != CPP_OPEN_PAREN)
+  if (pragma_lex (&t) != CPP_OPEN_PAREN)
     {
-      warning ("malformed %<#pragma init%>, ignoring");
+      warning (0, "malformed %<#pragma init%>, ignoring");
       return;
     }
 
-  ttype = c_lex (&t);
+  ttype = pragma_lex (&t);
   if (ttype != CPP_NAME)
     {
-      warning ("malformed %<#pragma init%>, ignoring");
+      warning (0, "malformed %<#pragma init%>, ignoring");
       return;
     }
 
@@ -171,33 +170,34 @@ solaris_pragma_init (cpp_reader *pfile ATTRIBUTE_UNUSED)
       tree decl = identifier_global_value (t);
       if (decl && DECL_P (decl))
        {
-         tree init_list = build_tree_list (get_identifier ("init"),
-                                           NULL);
-         tree attrs = tree_cons (get_identifier ("used"), NULL, init_list);
+         tree attrs = build_tree_list (get_identifier ("init"),
+                                       NULL);
+         TREE_USED (decl) = 1;
+         DECL_PRESERVE_P (decl) = 1;
          decl_attributes (&decl, attrs, 0);
        }
       else
        solaris_pending_inits = tree_cons (t, NULL, solaris_pending_inits);
 
-      ttype = c_lex (&t);
+      ttype = pragma_lex (&t);
       if (ttype == CPP_COMMA)
        {
-         ttype = c_lex (&t);
+         ttype = pragma_lex (&t);
          if (ttype != CPP_NAME)
            {
-             warning ("malformed %<#pragma init%>");
+             warning (0, "malformed %<#pragma init%>");
              return;
            }
        }
       else if (ttype == CPP_CLOSE_PAREN)
        {
-         if (c_lex (&t) != CPP_EOF)
-           warning ("junk at end of %<#pragma init%>");
+         if (pragma_lex (&t) != CPP_EOF)
+           warning (0, "junk at end of %<#pragma init%>");
          return;
        }
       else
        {
-         warning ("malformed %<#pragma init%>");
+         warning (0, "malformed %<#pragma init%>");
          return;
        }
     }
@@ -211,16 +211,16 @@ solaris_pragma_fini (cpp_reader *pfile ATTRIBUTE_UNUSED)
   tree t;
   enum cpp_ttype ttype;
 
-  if (c_lex (&t) != CPP_OPEN_PAREN)
+  if (pragma_lex (&t) != CPP_OPEN_PAREN)
     {
-      warning ("malformed %<#pragma fini%>, ignoring");
+      warning (0, "malformed %<#pragma fini%>, ignoring");
       return;
     }
 
-  ttype = c_lex (&t);
+  ttype = pragma_lex (&t);
   if (ttype != CPP_NAME)
     {
-      warning ("malformed %<#pragma fini%>, ignoring");
+      warning (0, "malformed %<#pragma fini%>, ignoring");
       return;
     }
 
@@ -229,33 +229,34 @@ solaris_pragma_fini (cpp_reader *pfile ATTRIBUTE_UNUSED)
       tree decl = identifier_global_value (t);
       if (decl && DECL_P (decl))
        {
-         tree fini_list = build_tree_list (get_identifier ("fini"),
-                                           NULL);
-         tree attrs = tree_cons (get_identifier ("used"), NULL, fini_list);
+         tree attrs = build_tree_list (get_identifier ("fini"),
+                                       NULL);
+         TREE_USED (decl) = 1;
+         DECL_PRESERVE_P (decl) = 1;
          decl_attributes (&decl, attrs, 0);
        }
       else
        solaris_pending_finis = tree_cons (t, NULL, solaris_pending_finis);
 
-      ttype = c_lex (&t);
+      ttype = pragma_lex (&t);
       if (ttype == CPP_COMMA)
        {
-         ttype = c_lex (&t);
+         ttype = pragma_lex (&t);
          if (ttype != CPP_NAME)
            {
-             warning ("malformed %<#pragma fini%>");
+             warning (0, "malformed %<#pragma fini%>");
              return;
            }
        }
       else if (ttype == CPP_CLOSE_PAREN)
        {
-         if (c_lex (&t) != CPP_EOF)
-           warning ("junk at end of %<#pragma fini%>");
+         if (pragma_lex (&t) != CPP_EOF)
+           warning (0, "junk at end of %<#pragma fini%>");
          return;
        }
       else
        {
-         warning ("malformed %<#pragma fini%>");
+         warning (0, "malformed %<#pragma fini%>");
          return;
        }
     }
@@ -266,7 +267,7 @@ solaris_pragma_fini (cpp_reader *pfile ATTRIBUTE_UNUSED)
 void
 solaris_register_pragmas (void)
 {
-  c_register_pragma (0, "align", solaris_pragma_align);
+  c_register_pragma_with_expansion (0, "align", solaris_pragma_align);
   c_register_pragma (0, "init", solaris_pragma_init);
   c_register_pragma (0, "fini", solaris_pragma_fini);
 }