OSDN Git Service

Remove floatformat_arm_ext.
[pf3gnuchains/gcc-fork.git] / gcc / cppmain.c
index b710dad..ee157ca 100644 (file)
@@ -1,5 +1,5 @@
 /* CPP main program, using CPP Library.
-   Copyright (C) 1995, 1997, 1998, 1999, 2000, 2001
+   Copyright (C) 1995, 1997, 1998, 1999, 2000, 2001, 2002
    Free Software Foundation, Inc.
    Written by Per Bothner, 1994-95.
 
@@ -32,6 +32,8 @@ struct printer
 {
   FILE *outf;                  /* Stream to write to.  */
   const struct line_map *map;  /* Logical to physical line mappings.  */
+  const cpp_token *prev;       /* Previous token.  */
+  const cpp_token *source;     /* Source token for spacing.  */
   unsigned int line;           /* Line currently being written.  */
   unsigned char printed;       /* Nonzero if something output at line.  */
 };
@@ -43,7 +45,7 @@ static void setup_callbacks PARAMS ((void));
 
 /* General output routines.  */
 static void scan_translation_unit PARAMS ((cpp_reader *));
-static void check_multiline_token PARAMS ((cpp_string *));
+static void check_multiline_token PARAMS ((const cpp_string *));
 static int dump_macro PARAMS ((cpp_reader *, cpp_hashnode *, void *));
 
 static void print_line PARAMS ((const struct line_map *, unsigned int,
@@ -52,6 +54,7 @@ static void maybe_print_line PARAMS ((const struct line_map *, unsigned int));
 
 /* Callback routines for the parser.   Most of these are active only
    in specific modes.  */
+static void cb_line_change PARAMS ((cpp_reader *, const cpp_token *, int));
 static void cb_define  PARAMS ((cpp_reader *, unsigned int, cpp_hashnode *));
 static void cb_undef   PARAMS ((cpp_reader *, unsigned int, cpp_hashnode *));
 static void cb_include PARAMS ((cpp_reader *, unsigned int,
@@ -73,8 +76,8 @@ main (argc, argv)
 {
   general_init (argv[0]);
 
-  /* Contruct a reader with default language GNU C89.  */
-  pfile = cpp_create_reader (NULL, CLK_GNUC89);
+  /* Construct a reader with default language GNU C89.  */
+  pfile = cpp_create_reader (CLK_GNUC89);
   options = cpp_get_options (pfile);
   
   do_preprocessing (argc, argv);
@@ -97,18 +100,8 @@ general_init (argv0)
 
   xmalloc_set_program_name (progname);
 
-/* LC_CTYPE determines the character set used by the terminal so it
-   has to be set to output messages correctly.  */
-
-#ifdef HAVE_LC_MESSAGES
-  setlocale (LC_CTYPE, "");
-  setlocale (LC_MESSAGES, "");
-#else
-  setlocale (LC_ALL, "");
-#endif
-
-  (void) bindtextdomain (PACKAGE, localedir);
-  (void) textdomain (PACKAGE);
+  hex_init ();
+  gcc_init_libintl ();
 }
 
 /* Handle switches, preprocess and output.  */
@@ -124,10 +117,12 @@ do_preprocessing (argc, argv)
     return;
 
   if (argi < argc)
-    cpp_fatal (pfile, "Invalid option %s", argv[argi]);
-  else
-    cpp_post_options (pfile);
+    {
+      cpp_fatal (pfile, "invalid option %s", argv[argi]);
+      return;
+    }
 
+  cpp_post_options (pfile);
   if (CPP_FATAL_ERRORS (pfile))
     return;
 
@@ -143,6 +138,7 @@ do_preprocessing (argc, argv)
      cause a linemarker to be output by maybe_print_line.  */
   print.line = (unsigned int) -1;
   print.printed = 0;
+  print.prev = 0;
   print.map = 0;
   
   /* Open the output now.  We must do so even if no_output is on,
@@ -162,9 +158,11 @@ do_preprocessing (argc, argv)
 
   setup_callbacks ();
 
-  if (cpp_start_read (pfile, options->in_fname))
+  if (cpp_read_main_file (pfile, options->in_fname, NULL))
     {
-      /* A successful cpp_start_read guarantees that we can call
+      cpp_finish_options (pfile);
+
+      /* A successful cpp_read_main_file guarantees that we can call
         cpp_scan_nooutput or cpp_get_token next.  */
       if (options->no_output)
        cpp_scan_nooutput (pfile);
@@ -194,6 +192,7 @@ setup_callbacks ()
 
   if (! options->no_output)
     {
+      cb->line_change = cb_line_change;
       cb->ident      = cb_ident;
       cb->def_pragma = cb_def_pragma;
       if (! options->no_line_commands)
@@ -211,55 +210,50 @@ setup_callbacks ()
     }
 }
 
-/* Writes out the preprocessed file.  Alternates between two tokens,
-   so that we can avoid accidental token pasting.  */
+/* Writes out the preprocessed file, handling spacing and paste
+   avoidance issues.  */
 static void
 scan_translation_unit (pfile)
      cpp_reader *pfile;
 {
-  unsigned int index, line;
-  cpp_token tokens[2], *token;
+  bool avoid_paste = false;
 
-  for (index = 0;; index = 1 - index)
+  print.source = NULL;
+  for (;;)
     {
-      token = &tokens[index];
-      cpp_get_token (pfile, token);
+      const cpp_token *token = cpp_get_token (pfile);
+
+      if (token->type == CPP_PADDING)
+       {
+         avoid_paste = true;
+         if (print.source == NULL
+             || (!(print.source->flags & PREV_WHITE)
+                 && token->val.source == NULL))
+           print.source = token->val.source;
+         continue;
+       }
 
       if (token->type == CPP_EOF)
        break;
 
-      line = cpp_get_line (pfile)->output_line;
-      if (print.line != line)
+      /* Subtle logic to output a space if and only if necessary.  */
+      if (avoid_paste)
        {
-         unsigned int col = cpp_get_line (pfile)->col;
-
-         /* Supply enough whitespace to put this token in its original
-            column.  Don't bother trying to reconstruct tabs; we can't
-            get it right in general, and nothing ought to care.  (Yes,
-            some things do care; the fault lies with them.)  */
-         maybe_print_line (print.map, line);
-         if (col > 1)
-           {
-             if (token->flags & PREV_WHITE)
-               col--;
-             while (--col)
-               putc (' ', print.outf);
-           }
+         if (print.source == NULL)
+           print.source = token;
+         if (print.source->flags & PREV_WHITE
+             || (print.prev && cpp_avoid_paste (pfile, print.prev, token))
+             || (print.prev == NULL && token->type == CPP_HASH))
+           putc (' ', print.outf);
        }
-      else if ((token->flags & (PREV_WHITE | AVOID_LPASTE))
-              == AVOID_LPASTE
-              && cpp_avoid_paste (pfile, &tokens[1 - index], token))
-       token->flags |= PREV_WHITE;
-      /* Special case '# <directive name>': insert a space between
-        the # and the token.  This will prevent it from being
-        treated as a directive when this code is re-preprocessed.
-        XXX Should do this only at the beginning of a line, but how?  */
-      else if (token->type == CPP_NAME && token->val.node->directive_index
-              && tokens[1 - index].type == CPP_HASH)
-       token->flags |= PREV_WHITE;
+      else if (token->flags & PREV_WHITE)
+       putc (' ', print.outf);
 
+      avoid_paste = false;
+      print.source = NULL;
+      print.prev = token;
       cpp_output_token (token, print.outf);
-      print.printed = 1;
+
       if (token->type == CPP_STRING || token->type == CPP_WSTRING
          || token->type == CPP_COMMENT)
        check_multiline_token (&token->val.str);
@@ -269,7 +263,7 @@ scan_translation_unit (pfile)
 /* Adjust print.line for newlines embedded in tokens.  */
 static void
 check_multiline_token (str)
-     cpp_string *str;
+     const cpp_string *str;
 {
   unsigned int i;
 
@@ -281,7 +275,6 @@ check_multiline_token (str)
 /* If the token read on logical line LINE needs to be output on a
    different line to the current one, output the required newlines or
    a line marker, and return 1.  Otherwise return 0.  */
-
 static void
 maybe_print_line (map, line)
      const struct line_map *map;
@@ -335,7 +328,35 @@ print_line (map, line, special_flags)
     }
 }
 
-/* Callbacks.  */
+/* Called when a line of output is started.  TOKEN is the first token
+   of the line, and at end of file will be CPP_EOF.  */
+static void
+cb_line_change (pfile, token, parsing_args)
+     cpp_reader *pfile ATTRIBUTE_UNUSED;
+     const cpp_token *token;
+     int parsing_args;
+{
+  if (token->type == CPP_EOF || parsing_args)
+    return;
+
+  maybe_print_line (print.map, token->line);
+  print.printed = 1;
+  print.prev = 0;
+  print.source = 0;
+
+  /* Supply enough spaces to put this token in its original column,
+     one space per column greater than 2, since scan_translation_unit
+     will provide a space if PREV_WHITE.  Don't bother trying to
+     reconstruct tabs; we can't get it right in general, and nothing
+     ought to care.  Some things do care; the fault lies with them.  */
+  if (token->col > 2)
+    {
+      unsigned int spaces = token->col - 2;
+
+      while (spaces--)
+       putc (' ', print.outf);
+    }
+}
 
 static void
 cb_ident (pfile, line, str)