]> gcc.gnu.org Git - gcc.git/blobdiff - gcc/cppinit.c
cpplib.h (TTYPE_TABLE): Move CPP_MIN and CPP_MAX into block of operators allowed...
[gcc.git] / gcc / cppinit.c
index 817190330e0aa0b897310e277eb72ce8df6c7686..5f5c6201423757f5c4d3df6dcc72392ccd215774 100644 (file)
@@ -1,5 +1,6 @@
 /* CPP Library.
-   Copyright (C) 1986, 87, 89, 92-98, 1999 Free Software Foundation, Inc.
+   Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
+   1999, 2000 Free Software Foundation, Inc.
    Contributed by Per Bothner, 1994-95.
    Based on CCCP program by Paul Rubin, June 1986
    Adapted to ANSI C, Richard Stallman, Jan 1987
@@ -20,16 +21,14 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 #include "config.h"
 #include "system.h"
-
-#define FAKE_CONST
 #include "cpplib.h"
 #include "cpphash.h"
 #include "output.h"
 #include "prefix.h"
 #include "intl.h"
-
-/* XXX Should be in a header file. */
-extern char *version_string;
+#include "version.h"
+#include "mkdeps.h"
+#include "cppdefault.h"
 
 /* Predefined symbols, built-in macros, and the default include path. */
 
@@ -37,421 +36,429 @@ extern char *version_string;
 #define GET_ENV_PATH_LIST(VAR,NAME)    do { (VAR) = getenv (NAME); } while (0)
 #endif
 
-/* By default, colon separates directories in a path.  */
-#ifndef PATH_SEPARATOR
-#define PATH_SEPARATOR ':'
-#endif
-
-#ifndef STANDARD_INCLUDE_DIR
-#define STANDARD_INCLUDE_DIR "/usr/include"
-#endif
-
-/* Symbols to predefine.  */
-
-#ifdef CPP_PREDEFINES
-static char *predefs = CPP_PREDEFINES;
+/* Windows does not natively support inodes, and neither does MSDOS.
+   Cygwin's emulation can generate non-unique inodes, so don't use it.
+   VMS has non-numeric inodes. */
+#ifdef VMS
+#define INO_T_EQ(a, b) (!memcmp (&(a), &(b), sizeof (a)))
+#elif (defined _WIN32 && ! defined (_UWIN)) || defined __MSDOS__
+#define INO_T_EQ(a, b) 0
 #else
-static char *predefs = "";
+#define INO_T_EQ(a, b) ((a) == (b))
 #endif
 
-/* We let tm.h override the types used here, to handle trivial differences
-   such as the choice of unsigned int or long unsigned int for size_t.
-   When machines start needing nontrivial differences in the size type,
-   it would be best to do something here to figure out automatically
-   from other information what type to use.  */
+/* Internal structures and prototypes. */
 
-/* The string value for __SIZE_TYPE__.  */
+/* A `struct pending_option' remembers one -D, -A, -U, -include, or -imacros
+   switch.  There are four lists: one for -D and -U, one for -A, one
+   for -include, one for -imacros.  `undef' is set for -U, clear for
+   -D, ignored for the others.
+   (Future: add an equivalent of -U for -A) */
 
-#ifndef SIZE_TYPE
-#define SIZE_TYPE "long unsigned int"
-#endif
+typedef void (* cl_directive_handler) PARAMS ((cpp_reader *, const char *));
+struct pending_option
+{
+  struct pending_option *next;
+  const char *arg;
+  cl_directive_handler handler;
+};
 
-/* The string value for __PTRDIFF_TYPE__.  */
+/* The `pending' structure accumulates all the options that are not
+   actually processed until we hit cpp_start_read.  It consists of
+   several lists, one for each type of option.  We keep both head and
+   tail pointers for quick insertion. */
+struct cpp_pending
+{
+  struct pending_option *directive_head, *directive_tail;
 
-#ifndef PTRDIFF_TYPE
-#define PTRDIFF_TYPE "long int"
-#endif
+  struct file_name_list *quote_head, *quote_tail;
+  struct file_name_list *brack_head, *brack_tail;
+  struct file_name_list *systm_head, *systm_tail;
+  struct file_name_list *after_head, *after_tail;
 
-/* The string value for __WCHAR_TYPE__.  */
+  struct pending_option *imacros_head, *imacros_tail;
+  struct pending_option *include_head, *include_tail;
+};
 
-#ifndef WCHAR_TYPE
-#define WCHAR_TYPE "int"
+#ifdef __STDC__
+#define APPEND(pend, list, elt) \
+  do {  if (!(pend)->list##_head) (pend)->list##_head = (elt); \
+       else (pend)->list##_tail->next = (elt); \
+       (pend)->list##_tail = (elt); \
+  } while (0)
+#else
+#define APPEND(pend, list, elt) \
+  do {  if (!(pend)->list/**/_head) (pend)->list/**/_head = (elt); \
+       else (pend)->list/**/_tail->next = (elt); \
+       (pend)->list/**/_tail = (elt); \
+  } while (0)
 #endif
-#define CPP_WCHAR_TYPE(PFILE) \
-       (CPP_OPTIONS (PFILE)->cplusplus ? "__wchar_t" : WCHAR_TYPE)
 
-/* The string value for __USER_LABEL_PREFIX__ */
-
-#ifndef USER_LABEL_PREFIX
-#define USER_LABEL_PREFIX ""
+static void print_help                  PARAMS ((void));
+static void path_include               PARAMS ((cpp_reader *,
+                                                struct cpp_pending *,
+                                                char *, int));
+static void initialize_builtins                PARAMS ((cpp_reader *));
+static void append_include_chain       PARAMS ((cpp_reader *,
+                                                struct cpp_pending *,
+                                                char *, int, int));
+static void merge_include_chains       PARAMS ((cpp_reader *));
+
+static void initialize_dependency_output PARAMS ((cpp_reader *));
+static void initialize_standard_includes PARAMS ((cpp_reader *));
+static void new_pending_directive      PARAMS ((struct cpp_pending *,
+                                                const char *,
+                                                cl_directive_handler));
+#ifdef HOST_EBCDIC
+static int opt_comp                    PARAMS ((const void *, const void *));
+static void sort_options               PARAMS ((void));
 #endif
+static int parse_option                        PARAMS ((const char *));
+static int dump_macros_helper          PARAMS ((cpp_reader *, cpp_hashnode *));
 
-/* The string value for __REGISTER_PREFIX__ */
+/* Fourth argument to append_include_chain: chain to use */
+enum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
 
-#ifndef REGISTER_PREFIX
-#define REGISTER_PREFIX ""
-#endif
+/* If we have designated initializers (GCC >2.7) this table can be
+   initialized, constant data.  Otherwise, it has to be filled in at
+   runtime.  */
 
-/* #include "file" looks in source file dir, then stack.  */
-/* #include <file> just looks in the stack.  */
-/* -I directories are added to the end, then the defaults are added.  */
-/* The */
-static struct default_include {
-  char *fname;                 /* The name of the directory.  */
-  char *component;             /* The component containing the directory */
-  int cplusplus;               /* Only look here if we're compiling C++.  */
-  int cxx_aware;               /* Includes in this directory don't need to
-                                  be wrapped in extern "C" when compiling
-                                  C++.  */
-} include_defaults_array[]
-#ifdef INCLUDE_DEFAULTS
-  = INCLUDE_DEFAULTS;
+#if (GCC_VERSION >= 2007)
+#define init_IStable()  /* nothing */
+#define ISTABLE __extension__ const unsigned char _cpp_IStable[256] = {
+#define END };
+#define s(p, v) [p] = v,
 #else
-  = {
-    /* Pick up GNU C++ specific include files.  */
-    { GPLUSPLUS_INCLUDE_DIR, "G++", 1, 1 },
-#ifdef CROSS_COMPILE
-    /* This is the dir for fixincludes.  Put it just before
-       the files that we fix.  */
-    { GCC_INCLUDE_DIR, "GCC", 0, 0 },
-    /* For cross-compilation, this dir name is generated
-       automatically in Makefile.in.  */
-    { CROSS_INCLUDE_DIR, "GCC",0, 0 },
-#ifdef TOOL_INCLUDE_DIR
-    /* This is another place that the target system's headers might be.  */
-    { TOOL_INCLUDE_DIR, "BINUTILS", 0, 1 },
-#endif
-#else /* not CROSS_COMPILE */
-#ifdef LOCAL_INCLUDE_DIR
-    /* This should be /usr/local/include and should come before
-       the fixincludes-fixed header files.  */
-    { LOCAL_INCLUDE_DIR, 0, 0, 1 },
-#endif
-#ifdef TOOL_INCLUDE_DIR
-    /* This is here ahead of GCC_INCLUDE_DIR because assert.h goes here.
-       Likewise, behind LOCAL_INCLUDE_DIR, where glibc puts its assert.h.  */
-    { TOOL_INCLUDE_DIR, "BINUTILS", 0, 1 },
-#endif
-    /* This is the dir for fixincludes.  Put it just before
-       the files that we fix.  */
-    { GCC_INCLUDE_DIR, "GCC", 0, 0 },
-    /* Some systems have an extra dir of include files.  */
-#ifdef SYSTEM_INCLUDE_DIR
-    { SYSTEM_INCLUDE_DIR, 0, 0, 0 },
-#endif
-#ifndef STANDARD_INCLUDE_COMPONENT
-#define STANDARD_INCLUDE_COMPONENT 0
+#define ISTABLE unsigned char _cpp_IStable[256] = { 0 }; \
+ static void init_IStable PARAMS ((void)) { \
+ unsigned char *x = _cpp_IStable;
+#define END }
+#define s(p, v) x[p] = v;
 #endif
-    { STANDARD_INCLUDE_DIR, STANDARD_INCLUDE_COMPONENT, 0, 0 },
-#endif /* not CROSS_COMPILE */
-    { 0, 0, 0, 0 }
-    };
-#endif /* no INCLUDE_DEFAULTS */
-
-/* Internal structures and prototypes. */
-
-struct cpp_pending
-{
-  struct cpp_pending *next;
-  char *cmd;
-  char *arg;
-};
-static struct cpp_pending *nreverse_pending PARAMS ((struct cpp_pending *));
-
-static void initialize_char_syntax     PARAMS ((int));
-static void print_help                  PARAMS ((void));
-static void path_include               PARAMS ((cpp_reader *, char *));
-static void initialize_builtins                PARAMS ((cpp_reader *));
 
+#define A(x) s(x, ISidnum|ISidstart)
+#define N(x) s(x, ISidnum|ISnumstart)
+#define H(x) s(x, IShspace|ISspace)
+#define V(x) s(x, ISvspace|ISspace)
+#define S(x) s(x, ISspace)
 
-/* If gcc is in use (stage2/stage3) we can make these tables initialized
-   data. */
-#if defined __GNUC__ && __GNUC__ >= 2
-/* Table to tell if a character is legal as the second or later character
-   of a C identifier. */
-U_CHAR is_idchar[256] =
-{
-  ['a'] = 1, ['b'] = 1, ['c'] = 1,  ['d'] = 1, ['e'] = 1, ['f'] = 1,
-  ['g'] = 1, ['h'] = 1, ['i'] = 1,  ['j'] = 1, ['k'] = 1, ['l'] = 1,
-  ['m'] = 1, ['n'] = 1, ['o'] = 1,  ['p'] = 1, ['q'] = 1, ['r'] = 1,
-  ['s'] = 1, ['t'] = 1, ['u'] = 1,  ['v'] = 1, ['w'] = 1, ['x'] = 1,
-  ['y'] = 1, ['z'] = 1,
-
-  ['A'] = 1, ['B'] = 1, ['C'] = 1,  ['D'] = 1, ['E'] = 1, ['F'] = 1,
-  ['G'] = 1, ['H'] = 1, ['I'] = 1,  ['J'] = 1, ['K'] = 1, ['L'] = 1,
-  ['M'] = 1, ['N'] = 1, ['O'] = 1,  ['P'] = 1, ['Q'] = 1, ['R'] = 1,
-  ['S'] = 1, ['T'] = 1, ['U'] = 1,  ['V'] = 1, ['W'] = 1, ['X'] = 1,
-  ['Y'] = 1, ['Z'] = 1,
-
-  ['1'] = 1, ['2'] = 1, ['3'] = 1,  ['4'] = 1, ['5'] = 1, ['6'] = 1,
-  ['7'] = 1, ['8'] = 1, ['9'] = 1,  ['0'] = 1,
-
-  ['_']  = 1,
-};
+ISTABLE
+  A('_')
 
-/* Table to tell if a character is legal as the first character of
-   a C identifier. */
-U_CHAR is_idstart[256] =
-{
-  ['a'] = 1, ['b'] = 1, ['c'] = 1,  ['d'] = 1, ['e'] = 1, ['f'] = 1,
-  ['g'] = 1, ['h'] = 1, ['i'] = 1,  ['j'] = 1, ['k'] = 1, ['l'] = 1,
-  ['m'] = 1, ['n'] = 1, ['o'] = 1,  ['p'] = 1, ['q'] = 1, ['r'] = 1,
-  ['s'] = 1, ['t'] = 1, ['u'] = 1,  ['v'] = 1, ['w'] = 1, ['x'] = 1,
-  ['y'] = 1, ['z'] = 1,
-
-  ['A'] = 1, ['B'] = 1, ['C'] = 1,  ['D'] = 1, ['E'] = 1, ['F'] = 1,
-  ['G'] = 1, ['H'] = 1, ['I'] = 1,  ['J'] = 1, ['K'] = 1, ['L'] = 1,
-  ['M'] = 1, ['N'] = 1, ['O'] = 1,  ['P'] = 1, ['Q'] = 1, ['R'] = 1,
-  ['S'] = 1, ['T'] = 1, ['U'] = 1,  ['V'] = 1, ['W'] = 1, ['X'] = 1,
-  ['Y'] = 1, ['Z'] = 1,
-
-  ['_']  = 1,
-};
+  A('a') A('b') A('c') A('d') A('e') A('f') A('g') A('h') A('i')
+  A('j') A('k') A('l') A('m') A('n') A('o') A('p') A('q') A('r')
+  A('s') A('t') A('u') A('v') A('w') A('x') A('y') A('z')
 
-/* Table to tell if a character is horizontal space. */
-U_CHAR is_hor_space[256] =
-{
-  [' '] = 1, ['\t'] = 1, ['\v'] = 1, ['\f'] = 1, ['\r'] = 1
-};
-/* table to tell if a character is horizontal or vertical space.  */
-U_CHAR is_space[256] =
-{
-  [' '] = 1, ['\t'] = 1, ['\v'] = 1, ['\f'] = 1, ['\r'] = 1, ['\n'] = 1,
-};
-/* Table to handle trigraph conversion, which occurs before all other
-   processing, everywhere in the file.  (This is necessary since one
-   of the trigraphs encodes backslash.)  Note it's off by default.
-
-       from    to      from    to      from    to
-       ?? =    #       ?? )    ]       ?? !    |
-       ?? (    [       ?? '    ^       ?? >    }
-       ?? /    \       ?? <    {       ?? -    ~
-
-   There is not a space between the ?? and the third char.  I put spaces
-   there to avoid warnings when compiling this file. */
-U_CHAR trigraph_table[256] =
-{
-  ['='] = '#',  [')'] = ']',  ['!'] = '|',
-  ['('] = '[',  ['\''] = '^', ['>'] = '}',
-  ['/'] = '\\', ['<'] = '{',  ['-'] = '~',
-};
+  A('A') A('B') A('C') A('D') A('E') A('F') A('G') A('H') A('I')
+  A('J') A('K') A('L') A('M') A('N') A('O') A('P') A('Q') A('R')
+  A('S') A('T') A('U') A('V') A('W') A('X') A('Y') A('Z')
 
-/* This function will be entirely removed soon. */
-static inline void
-initialize_char_syntax (dollar_in_ident)
-     int dollar_in_ident;
-{
-  is_idchar['$'] = dollar_in_ident;
-  is_idstart['$'] = dollar_in_ident;
-}
+  N('1') N('2') N('3') N('4') N('5') N('6') N('7') N('8') N('9') N('0')
 
-#else /* Not GCC. */
+  H(' ') H('\t')
 
-U_CHAR is_idchar[256] = { 0 };
-U_CHAR is_idstart[256] = { 0 };
-U_CHAR is_hor_space[256] = { 0 };
-U_CHAR is_space[256] = { 0 };
-U_CHAR trigraph_table[256] = { 0 };
+  V('\n') V('\r')
 
-/* Initialize syntactic classifications of characters. */
-static void
-initialize_char_syntax (dollar_in_ident)
-     int dollar_in_ident;
-{
-  is_idstart['a'] = 1; is_idstart['b'] = 1; is_idstart['c'] = 1;
-  is_idstart['d'] = 1; is_idstart['e'] = 1; is_idstart['f'] = 1;
-  is_idstart['g'] = 1; is_idstart['h'] = 1; is_idstart['i'] = 1;
-  is_idstart['j'] = 1; is_idstart['k'] = 1; is_idstart['l'] = 1;
-  is_idstart['m'] = 1; is_idstart['n'] = 1; is_idstart['o'] = 1;
-  is_idstart['p'] = 1; is_idstart['q'] = 1; is_idstart['r'] = 1;
-  is_idstart['s'] = 1; is_idstart['t'] = 1; is_idstart['u'] = 1;
-  is_idstart['v'] = 1; is_idstart['w'] = 1; is_idstart['x'] = 1;
-  is_idstart['y'] = 1; is_idstart['z'] = 1;
-
-  is_idstart['A'] = 1; is_idstart['B'] = 1; is_idstart['C'] = 1;
-  is_idstart['D'] = 1; is_idstart['E'] = 1; is_idstart['F'] = 1;
-  is_idstart['G'] = 1; is_idstart['H'] = 1; is_idstart['I'] = 1;
-  is_idstart['J'] = 1; is_idstart['K'] = 1; is_idstart['L'] = 1;
-  is_idstart['M'] = 1; is_idstart['N'] = 1; is_idstart['O'] = 1;
-  is_idstart['P'] = 1; is_idstart['Q'] = 1; is_idstart['R'] = 1;
-  is_idstart['S'] = 1; is_idstart['T'] = 1; is_idstart['U'] = 1;
-  is_idstart['V'] = 1; is_idstart['W'] = 1; is_idstart['X'] = 1;
-  is_idstart['Y'] = 1; is_idstart['Z'] = 1;
-
-  is_idstart['_'] = 1;
-
-  is_idchar['a'] = 1; is_idchar['b'] = 1; is_idchar['c'] = 1;
-  is_idchar['d'] = 1; is_idchar['e'] = 1; is_idchar['f'] = 1;
-  is_idchar['g'] = 1; is_idchar['h'] = 1; is_idchar['i'] = 1;
-  is_idchar['j'] = 1; is_idchar['k'] = 1; is_idchar['l'] = 1;
-  is_idchar['m'] = 1; is_idchar['n'] = 1; is_idchar['o'] = 1;
-  is_idchar['p'] = 1;  is_idchar['q'] = 1; is_idchar['r'] = 1;
-  is_idchar['s'] = 1; is_idchar['t'] = 1;  is_idchar['u'] = 1;
-  is_idchar['v'] = 1; is_idchar['w'] = 1; is_idchar['x'] = 1;
-  is_idchar['y'] = 1; is_idchar['z'] = 1;
-
-  is_idchar['A'] = 1; is_idchar['B'] = 1; is_idchar['C'] = 1;
-  is_idchar['D'] = 1; is_idchar['E'] = 1; is_idchar['F'] = 1;
-  is_idchar['G'] = 1; is_idchar['H'] = 1; is_idchar['I'] = 1;
-  is_idchar['J'] = 1; is_idchar['K'] = 1; is_idchar['L'] = 1;
-  is_idchar['M'] = 1; is_idchar['N'] = 1; is_idchar['O'] = 1;
-  is_idchar['P'] = 1; is_idchar['Q'] = 1; is_idchar['R'] = 1;
-  is_idchar['S'] = 1; is_idchar['T'] = 1;  is_idchar['U'] = 1;
-  is_idchar['V'] = 1; is_idchar['W'] = 1; is_idchar['X'] = 1;
-  is_idchar['Y'] = 1; is_idchar['Z'] = 1;
-
-  is_idchar['1'] = 1; is_idchar['2'] = 1; is_idchar['3'] = 1;
-  is_idchar['4'] = 1; is_idchar['5'] = 1; is_idchar['6'] = 1;
-  is_idchar['7'] = 1; is_idchar['8'] = 1; is_idchar['9'] = 1;
-  is_idchar['0'] = 1;
-
-  is_idchar['_']  = 1;
-
-  is_idchar['$']  = dollar_in_ident;
-  is_idstart['$'] = dollar_in_ident;
-
-  /* white space tables */
-  is_hor_space[' '] = 1;
-  is_hor_space['\t'] = 1;
-  is_hor_space['\v'] = 1;
-  is_hor_space['\f'] = 1;
-  is_hor_space['\r'] = 1;
-
-  is_space[' '] = 1;
-  is_space['\t'] = 1;
-  is_space['\v'] = 1;
-  is_space['\f'] = 1;
-  is_space['\n'] = 1;
-  is_space['\r'] = 1;
-
-  /* trigraph conversion */
-  trigraph_table['='] = '#';  trigraph_table[')'] = ']';
-  trigraph_table['!'] = '|';  trigraph_table['('] = '[';
-  trigraph_table['\''] = '^'; trigraph_table['>'] = '}';
-  trigraph_table['/'] = '\\'; trigraph_table['<'] = '{';
-  trigraph_table['-'] = '~';
-}
+  S('\0') S('\v') S('\f')
+END
 
-#endif /* Not GCC. */
+#undef A
+#undef N
+#undef H
+#undef V
+#undef S
+#undef s
+#undef ISTABLE
+#undef END
 
 /* Given a colon-separated list of file names PATH,
    add all the names to the search path for include files.  */
 
 static void
-path_include (pfile, path)
+path_include (pfile, pend, list, path)
      cpp_reader *pfile;
-     char *path;
+     struct cpp_pending *pend;
+     char *list;
+     int path;
 {
-  char *p;
+  char *p, *q, *name;
 
-  p = path;
-
-  if (*p)
-    while (1) {
-      char *q = p;
-      char *name;
+  p = list;
 
+  do
+    {
       /* Find the end of this name.  */
+      q = p;
       while (*q != 0 && *q != PATH_SEPARATOR) q++;
-      if (p == q) {
-       /* An empty name in the path stands for the current directory.  */
-       name = (char *) xmalloc (2);
-       name[0] = '.';
-       name[1] = 0;
-      } else {
-       /* Otherwise use the directory that is named.  */
-       name = (char *) xmalloc (q - p + 1);
-       bcopy (p, name, q - p);
-       name[q - p] = 0;
-      }
-
-      append_include_chain (pfile,
-                           &(CPP_OPTIONS (pfile)->bracket_include), name, 0);
+      if (q == p)
+       {
+         /* An empty name in the path stands for the current directory.  */
+         name = (char *) xmalloc (2);
+         name[0] = '.';
+         name[1] = 0;
+       }
+      else
+       {
+         /* Otherwise use the directory that is named.  */
+         name = (char *) xmalloc (q - p + 1);
+         memcpy (name, p, q - p);
+         name[q - p] = 0;
+       }
+
+      append_include_chain (pfile, pend, name, path, 0);
 
       /* Advance past this name.  */
-      p = q;
-      if (*p == 0)
+      if (*q == 0)
        break;
-      /* Skip the colon.  */
-      p++;
+      p = q + 1;
     }
+  while (1);
 }
 
-/* Write out a #define command for the special named MACRO_NAME
-   to PFILE's token_buffer.  */
-
+/* Append DIR to include path PATH.  DIR must be permanently allocated
+   and writable. */
 static void
-dump_special_to_buffer (pfile, macro_name)
+append_include_chain (pfile, pend, dir, path, cxx_aware)
      cpp_reader *pfile;
-     char *macro_name;
+     struct cpp_pending *pend;
+     char *dir;
+     int path;
+     int cxx_aware;
 {
-  static char define_directive[] = "#define ";
-  int macro_name_length = strlen (macro_name);
-  output_line_command (pfile, 0, same_file);
-  CPP_RESERVE (pfile, sizeof(define_directive) + macro_name_length);
-  CPP_PUTS_Q (pfile, define_directive, sizeof(define_directive)-1);
-  CPP_PUTS_Q (pfile, macro_name, macro_name_length);
-  CPP_PUTC_Q (pfile, ' ');
-  cpp_expand_to_buffer (pfile, macro_name, macro_name_length);
-  CPP_PUTC (pfile, '\n');
-}
+  struct file_name_list *new;
+  struct stat st;
+  unsigned int len;
 
-/* Pending-list utility routines.  Will go away soon.  */
-static struct cpp_pending *
-nreverse_pending (list)
-     struct cpp_pending *list;
-     
-{
-  register struct cpp_pending *prev = 0, *next, *pend;
-  for (pend = list;  pend;  pend = next)
+  _cpp_simplify_pathname (dir);
+  if (stat (dir, &st))
+    {
+      /* Dirs that don't exist are silently ignored. */
+      if (errno != ENOENT)
+       cpp_notice_from_errno (pfile, dir);
+      else if (CPP_OPTION (pfile, verbose))
+       fprintf (stderr, _("ignoring nonexistent directory \"%s\"\n"), dir);
+      return;
+    }
+
+  if (!S_ISDIR (st.st_mode))
+    {
+      cpp_notice (pfile, "%s: Not a directory", dir);
+      return;
+    }
+
+  len = strlen (dir);
+  if (len > pfile->max_include_len)
+    pfile->max_include_len = len;
+
+  new = (struct file_name_list *) xmalloc (sizeof (struct file_name_list));
+  new->name = dir;
+  new->nlen = len;
+  new->ino  = st.st_ino;
+  new->dev  = st.st_dev;
+  if (path == SYSTEM)
+    new->sysp = cxx_aware ? 1 : 2;
+  else
+    new->sysp = 0;
+  new->name_map = NULL;
+  new->next = NULL;
+  new->alloc = NULL;
+
+  switch (path)
     {
-      next = pend->next;
-      pend->next = prev;
-      prev = pend;
+    case QUOTE:                APPEND (pend, quote, new); break;
+    case BRACKET:      APPEND (pend, brack, new); break;
+    case SYSTEM:       APPEND (pend, systm, new); break;
+    case AFTER:                APPEND (pend, after, new); break;
     }
-  return prev;
 }
 
+/* Merge the four include chains together in the order quote, bracket,
+   system, after.  Remove duplicate dirs (as determined by
+   INO_T_EQ()).  The system_include and after_include chains are never
+   referred to again after this function; all access is through the
+   bracket_include path.
+
+   For the future: Check if the directory is empty (but
+   how?) and possibly preload the include hash. */
+
 static void
-push_pending (pfile, cmd, arg)
+merge_include_chains (pfile)
      cpp_reader *pfile;
-     char *cmd;
-     char *arg;
 {
-  struct cpp_pending *pend
-    = (struct cpp_pending *) xmalloc (sizeof (struct cpp_pending));
-  pend->cmd = cmd;
-  pend->arg = arg;
-  pend->next = CPP_OPTIONS (pfile)->pending;
-  CPP_OPTIONS (pfile)->pending = pend;
-}
+  struct file_name_list *prev, *cur, *other;
+  struct file_name_list *quote, *brack, *systm, *after;
+  struct file_name_list *qtail, *btail, *stail, *atail;
+
+  struct cpp_pending *pend = CPP_OPTION (pfile, pending);
+
+  qtail = pend->quote_tail;
+  btail = pend->brack_tail;
+  stail = pend->systm_tail;
+  atail = pend->after_tail;
+
+  quote = pend->quote_head;
+  brack = pend->brack_head;
+  systm = pend->systm_head;
+  after = pend->after_head;
+
+  /* Paste together bracket, system, and after include chains. */
+  if (stail)
+    stail->next = after;
+  else
+    systm = after;
+  if (btail)
+    btail->next = systm;
+  else
+    brack = systm;
+
+  /* This is a bit tricky.
+     First we drop dupes from the quote-include list.
+     Then we drop dupes from the bracket-include list.
+     Finally, if qtail and brack are the same directory,
+     we cut out qtail.
+
+     We can't just merge the lists and then uniquify them because
+     then we may lose directories from the <> search path that should
+     be there; consider -Ifoo -Ibar -I- -Ifoo -Iquux. It is however
+     safe to treat -Ibar -Ifoo -I- -Ifoo -Iquux as if written
+     -Ibar -I- -Ifoo -Iquux.
+
+     Note that this algorithm is quadratic in the number of -I switches,
+     which is acceptable since there aren't usually that many of them.  */
+
+  for (cur = quote, prev = NULL; cur; cur = cur->next)
+    {
+      for (other = quote; other != cur; other = other->next)
+        if (INO_T_EQ (cur->ino, other->ino)
+           && cur->dev == other->dev)
+          {
+           if (CPP_OPTION (pfile, verbose))
+             fprintf (stderr, _("ignoring duplicate directory \"%s\"\n"),
+                      cur->name);
+
+           prev->next = cur->next;
+           free (cur->name);
+           free (cur);
+           cur = prev;
+           break;
+         }
+      prev = cur;
+    }
+  qtail = prev;
 
+  for (cur = brack; cur; cur = cur->next)
+    {
+      for (other = brack; other != cur; other = other->next)
+        if (INO_T_EQ (cur->ino, other->ino)
+           && cur->dev == other->dev)
+          {
+           if (CPP_OPTION (pfile, verbose))
+             fprintf (stderr, _("ignoring duplicate directory \"%s\"\n"),
+                      cur->name);
+
+           prev->next = cur->next;
+           free (cur->name);
+           free (cur);
+           cur = prev;
+           break;
+         }
+      prev = cur;
+    }
 
-/* Initialize a cpp_options structure. */
-void
-cpp_options_init (opts)
-     cpp_options *opts;
-{
-  bzero ((char *) opts, sizeof *opts);
+  if (quote)
+    {
+      if (INO_T_EQ (qtail->ino, brack->ino) && qtail->dev == brack->dev)
+        {
+         if (quote == qtail)
+           {
+             if (CPP_OPTION (pfile, verbose))
+               fprintf (stderr, _("ignoring duplicate directory \"%s\"\n"),
+                        quote->name);
+
+             free (quote->name);
+             free (quote);
+             quote = brack;
+           }
+         else
+           {
+             cur = quote;
+             while (cur->next != qtail)
+                 cur = cur->next;
+             cur->next = brack;
+             if (CPP_OPTION (pfile, verbose))
+               fprintf (stderr, _("ignoring duplicate directory \"%s\"\n"),
+                        qtail->name);
+
+             free (qtail->name);
+             free (qtail);
+           }
+       }
+      else
+         qtail->next = brack;
+    }
+  else
+      quote = brack;
 
-  opts->dollars_in_ident = 1;
-  opts->cplusplus_comments = 1;
-  opts->warn_import = 1;
+  CPP_OPTION (pfile, quote_include) = quote;
+  CPP_OPTION (pfile, bracket_include) = brack;
 }
 
+
 /* Initialize a cpp_reader structure. */
 void
 cpp_reader_init (pfile)
      cpp_reader *pfile;
 {
-  bzero ((char *) pfile, sizeof (cpp_reader));
-#if 0
-  pfile->get_token = cpp_get_token;
+#ifdef HOST_EBCDIC
+  sort_options ();
 #endif
 
+  memset ((char *) pfile, 0, sizeof (cpp_reader));
+
   pfile->token_buffer_size = 200;
   pfile->token_buffer = (U_CHAR *) xmalloc (pfile->token_buffer_size);
   CPP_SET_WRITTEN (pfile, 0);
+
+  CPP_OPTION (pfile, dollars_in_ident) = 1;
+  CPP_OPTION (pfile, cplusplus_comments) = 1;
+  CPP_OPTION (pfile, warn_import) = 1;
+  CPP_OPTION (pfile, warn_paste) = 1;
+  CPP_OPTION (pfile, digraphs) = 1;
+  CPP_OPTION (pfile, discard_comments) = 1;
+  CPP_OPTION (pfile, show_column) = 1;
+  CPP_OPTION (pfile, tabstop) = 8;
+
+  CPP_OPTION (pfile, pending) =
+    (struct cpp_pending *) xcalloc (1, sizeof (struct cpp_pending));
+
+  _cpp_init_macros (pfile);
+  _cpp_init_stacks (pfile);
+  _cpp_init_includes (pfile);
+}
+
+/* Initialize a cpp_printer structure.  As a side effect, open the
+   output file.  */
+cpp_printer *
+cpp_printer_init (pfile, print)
+     cpp_reader *pfile;
+     cpp_printer *print;
+{
+  memset (print, '\0', sizeof (cpp_printer));
+  if (CPP_OPTION (pfile, out_fname) == NULL)
+    CPP_OPTION (pfile, out_fname) = "";
+  
+  if (CPP_OPTION (pfile, out_fname)[0] == '\0')
+    print->outf = stdout;
+  else
+    {
+      print->outf = fopen (CPP_OPTION (pfile, out_fname), "w");
+      if (! print->outf)
+       {
+         cpp_notice_from_errno (pfile, CPP_OPTION (pfile, out_fname));
+         return NULL;
+       }
+    }
+  return print;
 }
 
 /* Free resources used by PFILE.
@@ -460,8 +467,7 @@ void
 cpp_cleanup (pfile)
      cpp_reader *pfile;
 {
-  int i;
-  while (CPP_BUFFER (pfile) != CPP_NULL_BUFFER (pfile))
+  while (CPP_BUFFER (pfile) != NULL)
     cpp_pop_buffer (pfile);
 
   if (pfile->token_buffer)
@@ -470,1137 +476,1220 @@ cpp_cleanup (pfile)
       pfile->token_buffer = NULL;
     }
 
-  if (pfile->deps_buffer)
-    {
-      free (pfile->deps_buffer);
-      pfile->deps_buffer = NULL;
-      pfile->deps_allocated_size = 0;
-    }
-
-  while (pfile->if_stack)
-    {
-      IF_STACK_FRAME *temp = pfile->if_stack;
-      pfile->if_stack = temp->next;
-      free (temp);
-    }
+  if (pfile->deps)
+    deps_free (pfile->deps);
 
-  for (i = ALL_INCLUDE_HASHSIZE; --i >= 0; )
-    {
-      struct include_hash *imp = pfile->all_include_files[i];
-      while (imp)
-       {
-         struct include_hash *next = imp->next;
-#if 0
-         /* This gets freed elsewhere - I think. */
-         free (imp->name);
-#endif
-         free (imp);
-         imp = next;
-       }
-      pfile->all_include_files[i] = 0;
-    }
+  if (pfile->spec_nodes)
+    free (pfile->spec_nodes);
 
-  cpp_hash_cleanup (pfile);
+  _cpp_free_temp_tokens (pfile);
+  _cpp_cleanup_includes (pfile);
+  _cpp_cleanup_stacks (pfile);
+  _cpp_cleanup_macros (pfile);
 }
 
 
-/* Initialize the built-in macros.  */
-static void
-initialize_builtins (pfile)
-     cpp_reader *pfile;
+/* This structure defines one built-in macro.  A node of type TYPE will
+   be entered in the macro hash table under the name NAME, with value
+   VALUE (if any).  If TYPE is T_OPERATOR, the CODE field is used instead.
+
+   Two values are not compile time constants, so we tag
+   them in the FLAGS field instead:
+   VERS                value is the global version_string, quoted
+   ULP         value is the global user_label_prefix
+
+   Also, macros with CPLUS set in the flags field are entered only for C++.
+ */
+
+struct builtin
 {
-#define NAME(str) (U_CHAR *)str, sizeof str - 1
-  install (NAME("__TIME__"),             T_TIME,       0, -1);
-  install (NAME("__DATE__"),             T_DATE,       0, -1);
-  install (NAME("__FILE__"),             T_FILE,       0, -1);
-  install (NAME("__BASE_FILE__"),        T_BASE_FILE,  0, -1);
-  install (NAME("__LINE__"),             T_SPECLINE,   0, -1);
-  install (NAME("__INCLUDE_LEVEL__"),    T_INCLUDE_LEVEL, 0, -1);
-  install (NAME("__VERSION__"),                  T_VERSION,    0, -1);
+  const U_CHAR *name;
+  const char *value;
+  unsigned char code;
+  unsigned char type;
+  unsigned short flags;
+  unsigned int len;
+};
+#define VERS  0x01
+#define ULP   0x02
+#define CPLUS 0x04
+
+#define B(n, t)       { U n, 0, 0, t,          0, sizeof n - 1 }
+#define C(n, v)       { U n, v, 0, T_MACRO,    0, sizeof n - 1 }
+#define X(n, f)       { U n, 0, 0, T_MACRO,    f, sizeof n - 1 }
+#define O(n, c, f)    { U n, 0, c, T_OPERATOR, f, sizeof n - 1 }
+static const struct builtin builtin_array[] =
+{
+  B("__TIME__",                 T_TIME),
+  B("__DATE__",                 T_DATE),
+  B("__FILE__",                 T_FILE),
+  B("__BASE_FILE__",    T_BASE_FILE),
+  B("__LINE__",                 T_SPECLINE),
+  B("__INCLUDE_LEVEL__", T_INCLUDE_LEVEL),
+  B("__STDC__",                 T_STDC),
+
+  X("__VERSION__",             VERS),
+  X("__USER_LABEL_PREFIX__",   ULP),
+  C("__REGISTER_PREFIX__",     REGISTER_PREFIX),
+  C("__HAVE_BUILTIN_SETJMP__", "1"),
 #ifndef NO_BUILTIN_SIZE_TYPE
-  install (NAME("__SIZE_TYPE__"),        T_CONST, SIZE_TYPE, -1);
+  C("__SIZE_TYPE__",           SIZE_TYPE),
 #endif
 #ifndef NO_BUILTIN_PTRDIFF_TYPE
-  install (NAME("__PTRDIFF_TYPE__ "),    T_CONST, PTRDIFF_TYPE, -1);
+  C("__PTRDIFF_TYPE__",                PTRDIFF_TYPE),
 #endif
-  install (NAME("__WCHAR_TYPE__"),       T_CONST, WCHAR_TYPE, -1);
-  install (NAME("__USER_LABEL_PREFIX__"), T_CONST, user_label_prefix, -1);
-  install (NAME("__REGISTER_PREFIX__"),          T_CONST, REGISTER_PREFIX, -1);
-  if (!CPP_TRADITIONAL (pfile))
-    {
-      install (NAME("__STDC__"),         T_STDC,  0, -1);
-#if 0
-      if (CPP_OPTIONS (pfile)->c9x)
-       install (NAME("__STDC_VERSION__"),T_CONST, "199909L", -1);
-      else
+#ifndef NO_BUILTIN_WCHAR_TYPE
+  C("__WCHAR_TYPE__",          WCHAR_TYPE),
 #endif
-       install (NAME("__STDC_VERSION__"),T_CONST, "199409L", -1);
-    }
-#undef NAME
 
-  if (CPP_OPTIONS (pfile)->debug_output)
+  /* Named operators known to the preprocessor.  These cannot be #defined
+     and always have their stated meaning.  They are treated like normal
+     string tokens except for the type code and the meaning.  Most of them
+     are only for C++ (but see iso646.h).  */
+  O("defined", CPP_DEFINED, 0),
+  O("and",     CPP_AND_AND, CPLUS),
+  O("and_eq",  CPP_AND_EQ,  CPLUS),
+  O("bitand",  CPP_AND,     CPLUS),
+  O("bitor",   CPP_OR,      CPLUS),
+  O("compl",   CPP_COMPL,   CPLUS),
+  O("not",     CPP_NOT,     CPLUS),
+  O("not_eq",  CPP_NOT_EQ,  CPLUS),
+  O("or",      CPP_OR_OR,   CPLUS),
+  O("or_eq",   CPP_OR_EQ,   CPLUS),
+  O("xor",     CPP_XOR,     CPLUS),
+  O("xor_eq",  CPP_XOR_EQ,  CPLUS),
+};
+#undef B
+#undef C
+#undef X
+#define builtin_array_end \
+ builtin_array + sizeof(builtin_array)/sizeof(struct builtin)
+
+/* Subroutine of cpp_start_read; reads the builtins table above and
+   enters the macros into the hash table.  */
+static void
+initialize_builtins (pfile)
+     cpp_reader *pfile;
+{
+  const struct builtin *b;
+  for(b = builtin_array; b < builtin_array_end; b++)
     {
-      dump_special_to_buffer (pfile, "__BASE_FILE__");
-      dump_special_to_buffer (pfile, "__VERSION__");
-#ifndef NO_BUILTIN_SIZE_TYPE
-      dump_special_to_buffer (pfile, "__SIZE_TYPE__");
-#endif
-#ifndef NO_BUILTIN_PTRDIFF_TYPE
-      dump_special_to_buffer (pfile, "__PTRDIFF_TYPE__");
-#endif
-      dump_special_to_buffer (pfile, "__WCHAR_TYPE__");
-      dump_special_to_buffer (pfile, "__DATE__");
-      dump_special_to_buffer (pfile, "__TIME__");
-      if (!CPP_TRADITIONAL (pfile))
-       dump_special_to_buffer (pfile, "__STDC__");
+      if (b->flags & CPLUS && ! CPP_OPTION (pfile, cplusplus))
+       continue;
+
+      if (b->type == T_MACRO)
+       {
+         const char *val;
+         char *str;
+
+         if (b->flags & VERS)
+           {
+             /* Allocate enough space for 'name="value"\0'.  */
+             str = xmalloc (b->len + strlen (version_string) + 4);
+             sprintf (str, "%s=\"%s\"", b->name, version_string);
+           }
+         else
+           {
+             if (b->flags & ULP)
+               val = user_label_prefix;
+             else
+               val = b->value;
+
+             /* Allocate enough space for "name=value\0".  */
+             str = xmalloc (b->len + strlen (val) + 2);
+             sprintf(str, "%s=%s", b->name, val);
+           }
+         cpp_define (pfile, str);
+       }
+      else
+       {
+         cpp_hashnode *hp = cpp_lookup (pfile, b->name, b->len);
+         hp->type = b->type;
+         if (b->type == T_OPERATOR)
+           hp->value.code = b->code;
+       }
     }
 }
+#undef VERS
+#undef ULP
+#undef builtin_array_end
 
-/* This is called after options have been processed.
- * Check options for consistency, and setup for processing input
- * from the file named FNAME.  (Use standard input if FNAME==NULL.)
- * Return 1 on success, 0 on failure.
- */
-
-int
-cpp_start_read (pfile, fname)
+/* Another subroutine of cpp_start_read.  This one sets up to do
+   dependency-file output. */
+static void
+initialize_dependency_output (pfile)
      cpp_reader *pfile;
-     char *fname;
 {
-  struct cpp_options *opts = CPP_OPTIONS (pfile);
-  struct cpp_pending *pend;
-  char *p;
-  int f;
-  cpp_buffer *fp;
-  struct include_hash *ih_fake;
-
-  /* The code looks at the defaults through this pointer, rather than
-     through the constant structure above.  This pointer gets changed
-     if an environment variable specifies other defaults.  */
-  struct default_include *include_defaults = include_defaults_array;
-
-  /* Now that we know dollars_in_ident, we can initialize the syntax
-     tables. */
-  initialize_char_syntax (opts->dollars_in_ident);
-  
-  /* Add dirs from CPATH after dirs from -I.  */
-  /* There seems to be confusion about what CPATH should do,
-     so for the moment it is not documented.  */
-  /* Some people say that CPATH should replace the standard include
-     dirs, but that seems pointless: it comes before them, so it
-     overrides them anyway.  */
-  GET_ENV_PATH_LIST (p, "CPATH");
-  if (p != 0 && ! opts->no_standard_includes)
-    path_include (pfile, p);
-
-  /* Do partial setup of input buffer for the sake of generating
-     early #line directives (when -g is in effect).  */
-  fp = cpp_push_buffer (pfile, NULL, 0);
-  if (!fp)
-    return 0;
-  if (opts->in_fname == NULL || *opts->in_fname == 0)
+  char *spec, *s, *output_file;
+
+  /* Either of two environment variables can specify output of deps.
+     Its value is either "OUTPUT_FILE" or "OUTPUT_FILE DEPS_TARGET",
+     where OUTPUT_FILE is the file to write deps info to
+     and DEPS_TARGET is the target to mention in the deps.  */
+
+  if (CPP_OPTION (pfile, print_deps) == 0)
     {
-      opts->in_fname = fname;
-      if (opts->in_fname == NULL)
-       opts->in_fname = "";
-    }
-  fp->nominal_fname = fp->fname = opts->in_fname;
-  fp->lineno = 0;
+      spec = getenv ("DEPENDENCIES_OUTPUT");
+      if (spec)
+       CPP_OPTION (pfile, print_deps) = 1;
+      else
+       {
+         spec = getenv ("SUNPRO_DEPENDENCIES");
+         if (spec)
+           CPP_OPTION (pfile, print_deps) = 2;
+         else
+           return;
+       }
 
-  /* Install __LINE__, etc.  Must follow initialize_char_syntax
-     and option processing.  */
-  initialize_builtins (pfile);
+      /* Find the space before the DEPS_TARGET, if there is one.  */
+      s = strchr (spec, ' ');
+      if (s)
+       {
+         CPP_OPTION (pfile, deps_target) = s + 1;
+         output_file = (char *) xmalloc (s - spec + 1);
+         memcpy (output_file, spec, s - spec);
+         output_file[s - spec] = 0;
+       }
+      else
+       {
+         CPP_OPTION (pfile, deps_target) = 0;
+         output_file = spec;
+       }
 
-  /* Do standard #defines and assertions
-     that identify system and machine type.  */
-
-  if (!opts->inhibit_predefs) {
-    char *p = (char *) alloca (strlen (predefs) + 1);
-    strcpy (p, predefs);
-    while (*p) {
-      char *q;
-      while (*p == ' ' || *p == '\t')
-       p++;
-      /* Handle -D options.  */ 
-      if (p[0] == '-' && p[1] == 'D') {
-       q = &p[2];
-       while (*p && *p != ' ' && *p != '\t')
-         p++;
-       if (*p != 0)
-         *p++= 0;
-       if (opts->debug_output)
-         output_line_command (pfile, 0, same_file);
-       cpp_define (pfile, q);
-       while (*p == ' ' || *p == '\t')
-         p++;
-      } else if (p[0] == '-' && p[1] == 'A') {
-       /* Handle -A options (assertions).  */ 
-       char *assertion;
-       char *past_name;
-       char *value;
-       char *past_value;
-       char *termination;
-       int save_char;
-
-       assertion = &p[2];
-       past_name = assertion;
-       /* Locate end of name.  */
-       while (*past_name && *past_name != ' '
-              && *past_name != '\t' && *past_name != '(')
-         past_name++;
-       /* Locate `(' at start of value.  */
-       value = past_name;
-       while (*value && (*value == ' ' || *value == '\t'))
-         value++;
-       if (*value++ != '(')
-         abort ();
-       while (*value && (*value == ' ' || *value == '\t'))
-         value++;
-       past_value = value;
-       /* Locate end of value.  */
-       while (*past_value && *past_value != ' '
-              && *past_value != '\t' && *past_value != ')')
-         past_value++;
-       termination = past_value;
-       while (*termination && (*termination == ' ' || *termination == '\t'))
-         termination++;
-       if (*termination++ != ')')
-         abort ();
-       if (*termination && *termination != ' ' && *termination != '\t')
-         abort ();
-       /* Temporarily null-terminate the value.  */
-       save_char = *termination;
-       *termination = '\0';
-       /* Install the assertion.  */
-       cpp_assert (pfile, assertion);
-       *termination = (char) save_char;
-       p = termination;
-       while (*p == ' ' || *p == '\t')
-         p++;
-      } else {
-       abort ();
-      }
+      CPP_OPTION (pfile, deps_file) = output_file;
+      CPP_OPTION (pfile, print_deps_append) = 1;
     }
-  }
 
-  /* Now handle the command line options.  */
+  pfile->deps = deps_init ();
 
-  /* Do -U's, -D's and -A's in the order they were seen.  */
-  /* First reverse the list.  */
-  opts->pending = nreverse_pending (opts->pending);
+  /* Print the expected object file name as the target of this Make-rule.  */
+  if (CPP_OPTION (pfile, deps_target))
+    deps_add_target (pfile->deps, CPP_OPTION (pfile, deps_target));
+  else if (*CPP_OPTION (pfile, in_fname) == 0)
+    deps_add_target (pfile->deps, "-");
+  else
+    deps_calc_target (pfile->deps, CPP_OPTION (pfile, in_fname));
 
-  for (pend = opts->pending;  pend;  pend = pend->next)
+  if (CPP_OPTION (pfile, in_fname))
+    deps_add_dep (pfile->deps, CPP_OPTION (pfile, in_fname));
+}
+
+/* And another subroutine.  This one sets up the standard include path.  */
+static void
+initialize_standard_includes (pfile)
+     cpp_reader *pfile;
+{
+  char *path;
+  const struct default_include *p;
+  const char *specd_prefix = CPP_OPTION (pfile, include_prefix);
+
+  /* Several environment variables may add to the include search path.
+     CPATH specifies an additional list of directories to be searched
+     as if specified with -I, while C_INCLUDE_PATH, CPLUS_INCLUDE_PATH,
+     etc. specify an additional list of directories to be searched as
+     if specified with -isystem, for the language indicated.  */
+
+  GET_ENV_PATH_LIST (path, "CPATH");
+  if (path != 0 && *path != 0)
+    path_include (pfile, CPP_OPTION (pfile, pending), path, BRACKET);
+
+  switch ((CPP_OPTION (pfile, objc) << 1) + CPP_OPTION (pfile, cplusplus))
     {
-      if (pend->cmd != NULL && pend->cmd[0] == '-')
+    case 0:
+      GET_ENV_PATH_LIST (path, "C_INCLUDE_PATH");
+      break;
+    case 1:
+      GET_ENV_PATH_LIST (path, "CPLUS_INCLUDE_PATH");
+      break;
+    case 2:
+      GET_ENV_PATH_LIST (path, "OBJC_INCLUDE_PATH");
+      break;
+    case 3:
+      GET_ENV_PATH_LIST (path, "OBJCPLUS_INCLUDE_PATH");
+      break;
+    }
+  if (path != 0 && *path != 0)
+    path_include (pfile, CPP_OPTION (pfile, pending), path, SYSTEM);
+
+  /* Search "translated" versions of GNU directories.
+     These have /usr/local/lib/gcc... replaced by specd_prefix.  */
+  if (specd_prefix != 0 && cpp_GCC_INCLUDE_DIR_len)
+    {
+      /* Remove the `include' from /usr/local/lib/gcc.../include.
+        GCC_INCLUDE_DIR will always end in /include. */
+      int default_len = cpp_GCC_INCLUDE_DIR_len;
+      char *default_prefix = (char *) alloca (default_len + 1);
+      int specd_len = strlen (specd_prefix);
+
+      memcpy (default_prefix, cpp_GCC_INCLUDE_DIR, default_len);
+      default_prefix[default_len] = '\0';
+
+      for (p = cpp_include_defaults; p->fname; p++)
        {
-         switch (pend->cmd[1])
+         /* Some standard dirs are only for C++.  */
+         if (!p->cplusplus
+             || (CPP_OPTION (pfile, cplusplus)
+                 && !CPP_OPTION (pfile, no_standard_cplusplus_includes)))
            {
-           case 'U':
-             if (opts->debug_output)
-               output_line_command (pfile, 0, same_file);
-             cpp_undef (pfile, pend->arg);
-             break;
-           case 'D':
-             if (opts->debug_output)
-               output_line_command (pfile, 0, same_file);
-             cpp_define (pfile, pend->arg);
-             break;
-           case 'A':
-             cpp_assert (pfile, pend->arg);
-             break;
+             /* Does this dir start with the prefix?  */
+             if (!strncmp (p->fname, default_prefix, default_len))
+               {
+                 /* Yes; change prefix and add to search list.  */
+                 int flen = strlen (p->fname);
+                 int this_len = specd_len + flen - default_len;
+                 char *str = (char *) xmalloc (this_len + 1);
+                 memcpy (str, specd_prefix, specd_len);
+                 memcpy (str + specd_len,
+                         p->fname + default_len,
+                         flen - default_len + 1);
+
+                 append_include_chain (pfile, CPP_OPTION (pfile, pending),
+                                       str, SYSTEM, p->cxx_aware);
+               }
            }
        }
     }
 
-  opts->done_initializing = 1;
-
-  { /* Read the appropriate environment variable and if it exists
-       replace include_defaults with the listed path.  */
-    char *epath = 0;
-    switch ((opts->objc << 1) + opts->cplusplus)
-      {
-      case 0:
-       GET_ENV_PATH_LIST (epath, "C_INCLUDE_PATH");
-       break;
-      case 1:
-       GET_ENV_PATH_LIST (epath, "CPLUS_INCLUDE_PATH");
-       break;
-      case 2:
-       GET_ENV_PATH_LIST (epath, "OBJC_INCLUDE_PATH");
-       break;
-      case 3:
-       GET_ENV_PATH_LIST (epath, "OBJCPLUS_INCLUDE_PATH");
-       break;
-      }
-    /* If the environment var for this language is set,
-       add to the default list of include directories.  */
-    if (epath) {
-      char *nstore = (char *) alloca (strlen (epath) + 2);
-      int num_dirs;
-      char *startp, *endp;
-
-      for (num_dirs = 1, startp = epath; *startp; startp++)
-       if (*startp == PATH_SEPARATOR)
-         num_dirs++;
-      include_defaults
-       = (struct default_include *) xmalloc ((num_dirs
-                                              * sizeof (struct default_include))
-                                             + sizeof (include_defaults_array));
-      startp = endp = epath;
-      num_dirs = 0;
-      while (1) {
-        /* Handle cases like c:/usr/lib:d:/gcc/lib */
-        if ((*endp == PATH_SEPARATOR)
-            || *endp == 0) {
-         strncpy (nstore, startp, endp-startp);
-         if (endp == startp)
-           strcpy (nstore, ".");
-         else
-           nstore[endp-startp] = '\0';
-
-         include_defaults[num_dirs].fname = xstrdup (nstore);
-         include_defaults[num_dirs].component = 0;
-         include_defaults[num_dirs].cplusplus = opts->cplusplus;
-         include_defaults[num_dirs].cxx_aware = 1;
-         num_dirs++;
-         if (*endp == '\0')
-           break;
-         endp = startp = endp + 1;
-       } else
-         endp++;
-      }
-      /* Put the usual defaults back in at the end.  */
-      bcopy ((char *) include_defaults_array,
-            (char *) &include_defaults[num_dirs],
-            sizeof (include_defaults_array));
-    }
-  }
-
-  /* Unless -fnostdinc,
-     tack on the standard include file dirs to the specified list */
-  if (!opts->no_standard_includes) {
-    struct default_include *p = include_defaults;
-    char *specd_prefix = opts->include_prefix;
-    char *default_prefix = xstrdup (GCC_INCLUDE_DIR);
-    int default_len = 0;
-    /* Remove the `include' from /usr/local/lib/gcc.../include.  */
-    if (!strcmp (default_prefix + strlen (default_prefix) - 8, "/include")) {
-      default_len = strlen (default_prefix) - 7;
-      default_prefix[default_len] = 0;
-    }
-    /* Search "translated" versions of GNU directories.
-       These have /usr/local/lib/gcc... replaced by specd_prefix.  */
-    if (specd_prefix != 0 && default_len != 0)
-      for (p = include_defaults; p->fname; p++) {
-       /* Some standard dirs are only for C++.  */
-       if (!p->cplusplus
-           || (opts->cplusplus && !opts->no_standard_cplusplus_includes)) {
-         /* Does this dir start with the prefix?  */
-         if (!strncmp (p->fname, default_prefix, default_len)) {
-           /* Yes; change prefix and add to search list.  */
-           int this_len = strlen (specd_prefix)
-                          + strlen (p->fname) - default_len;
-           char *str = (char *) xmalloc (this_len + 1);
-           strcpy (str, specd_prefix);
-           strcat (str, p->fname + default_len);
-
-           append_include_chain (pfile, &opts->system_include,
-                                 str, !p->cxx_aware);
-         }
-       }
-      }
-    /* Search ordinary names for GNU include directories.  */
-    for (p = include_defaults; p->fname; p++) {
+  /* Search ordinary names for GNU include directories.  */
+  for (p = cpp_include_defaults; p->fname; p++)
+    {
       /* Some standard dirs are only for C++.  */
       if (!p->cplusplus
-         || (opts->cplusplus && !opts->no_standard_cplusplus_includes)) {
-       const char *str = update_path (p->fname, p->component);
-       append_include_chain (pfile, &opts->system_include,
-                             str, !p->cxx_aware);
-      }
+         || (CPP_OPTION (pfile, cplusplus)
+             && !CPP_OPTION (pfile, no_standard_cplusplus_includes)))
+       {
+         /* XXX Potential memory leak! */
+         char *str = xstrdup (update_path (p->fname, p->component));
+         append_include_chain (pfile, CPP_OPTION (pfile, pending),
+                               str, SYSTEM, p->cxx_aware);
+       }
     }
-  }
-
-  merge_include_chains (opts);
+}
 
-  /* With -v, print the list of dirs to search.  */
-  if (opts->verbose) {
-    struct file_name_list *p;
-    cpp_notice ("#include \"...\" search starts here:\n");
-    for (p = opts->quote_include; p; p = p->next) {
-      if (p == opts->bracket_include)
-       cpp_notice ("#include <...> search starts here:\n");
-      fprintf (stderr, " %s\n", p->name);
-    }
-    cpp_notice ("End of search list.\n");
-  }
+/* This is called after options have been processed.
+ * Check options for consistency, and setup for processing input
+ * from the file named FNAME.  (Use standard input if FNAME==NULL.)
+ * Return 1 on success, 0 on failure.
+ */
 
-  /* Copy the entire contents of the main input file into
-     the stacked input buffer previously allocated for it.  */
-  if (fname == NULL || *fname == 0) {
-    fname = "";
-    f = 0;
-  } else if ((f = open (fname, O_RDONLY|O_NONBLOCK|O_NOCTTY, 0666)) < 0)
-    cpp_pfatal_with_name (pfile, fname);
+int
+cpp_start_read (pfile, print, fname)
+     cpp_reader *pfile;
+     cpp_printer *print;
+     const char *fname;
+{
+  struct pending_option *p, *q;
 
   /* -MG doesn't select the form of output and must be specified with one of
      -M or -MM.  -MG doesn't make sense with -MD or -MMD since they don't
      inhibit compilation.  */
-  if (opts->print_deps_missing_files
-      && (opts->print_deps == 0 || !opts->no_output))
+  if (CPP_OPTION (pfile, print_deps_missing_files)
+      && (CPP_OPTION (pfile, print_deps) == 0
+         || !CPP_OPTION (pfile, no_output)))
     {
       cpp_fatal (pfile, "-MG must be specified with one of -M or -MM");
       return 0;
     }
 
-  /* Either of two environment variables can specify output of deps.
-     Its value is either "OUTPUT_FILE" or "OUTPUT_FILE DEPS_TARGET",
-     where OUTPUT_FILE is the file to write deps info to
-     and DEPS_TARGET is the target to mention in the deps.  */
+  /* -Wtraditional is not useful in C++ mode.  */
+  if (CPP_OPTION (pfile, cplusplus))
+    CPP_OPTION (pfile, warn_traditional) = 0;
 
-  if (opts->print_deps == 0
-      && (getenv ("SUNPRO_DEPENDENCIES") != 0
-         || getenv ("DEPENDENCIES_OUTPUT") != 0)) {
-    char *spec = getenv ("DEPENDENCIES_OUTPUT");
-    char *s;
-    char *output_file;
-
-    if (spec == 0)
-      {
-       spec = getenv ("SUNPRO_DEPENDENCIES");
-       opts->print_deps = 2;
-      }
-    else
-      opts->print_deps = 1;
-
-    s = spec;
-    /* Find the space before the DEPS_TARGET, if there is one.  */
-    /* This should use index.  (mrs) */
-    while (*s != 0 && *s != ' ') s++;
-    if (*s != 0)
-      {
-       opts->deps_target = s + 1;
-       output_file = (char *) xmalloc (s - spec + 1);
-       bcopy (spec, output_file, s - spec);
-       output_file[s - spec] = 0;
-      }
-    else
-      {
-       opts->deps_target = 0;
-       output_file = spec;
-      }
-
-    opts->deps_file = output_file;
-    opts->print_deps_append = 1;
-  }
-
-  /* For -M, print the expected object file name
-     as the target of this Make-rule.  */
-  if (opts->print_deps)
-    {
-      pfile->deps_allocated_size = 200;
-      pfile->deps_buffer = (char *) xmalloc (pfile->deps_allocated_size);
-      pfile->deps_buffer[0] = 0;
-      pfile->deps_size = 0;
-      pfile->deps_column = 0;
-
-      if (opts->deps_target)
-       deps_output (pfile, opts->deps_target, ':');
-      else if (*opts->in_fname == 0)
-       deps_output (pfile, "-", ':');
-      else
-       {
-         char *p, *q, *r;
-         int len, x;
-         static char *known_suffixes[] = { ".c", ".C", ".s", ".S", ".m",
-                                    ".cc", ".cxx", ".cpp", ".cp",
-                                    ".c++", 0
-                                  };
-
-         /* Discard all directory prefixes from filename.  */
-         if ((q = rindex (opts->in_fname, '/')) != NULL
-#ifdef DIR_SEPARATOR
-             && (q = rindex (opts->in_fname, DIR_SEPARATOR)) != NULL
-#endif
-             )
-           ++q;
-         else
-           q = opts->in_fname;
-
-         /* Copy remainder to mungable area.  */
-         p = (char *) alloca (strlen(q) + 8);
-         strcpy (p, q);
-
-         /* Output P, but remove known suffixes.  */
-         len = strlen (p);
-         q = p + len;
-         /* Point to the filename suffix.  */
-         r = rindex (p, '.');
-         /* Compare against the known suffixes.  */
-         x = 0;
-         while (known_suffixes[x] != 0)
-           {
-             if (strncmp (known_suffixes[x], r, q - r) == 0)
-               {
-                 /* Make q point to the bit we're going to overwrite
-                    with an object suffix.  */
-                 q = r;
-                 break;
-               }
-             x++;
-           }
+  /* Do not warn about illegal token pasting if -lang-asm.  */
+  if (CPP_OPTION (pfile, lang_asm))
+    CPP_OPTION (pfile, warn_paste) = 0;
 
-         /* Supply our own suffix.  */
-#ifndef VMS
-         strcpy (q, ".o");
-#else
-         strcpy (q, ".obj");
-#endif
+  /* Set this if it hasn't been set already. */
+  if (user_label_prefix == NULL)
+    user_label_prefix = USER_LABEL_PREFIX;
 
-         deps_output (pfile, p, ':');
-         deps_output (pfile, opts->in_fname, ' ');
-       }
-    }
+  /* Figure out if we need to save function macro parameter spellings.
+     We don't use CPP_PEDANTIC() here because that depends on whether
+     or not the current file is a system header, and there is no
+     current file yet.  */
+  pfile->save_parameter_spellings =
+    CPP_OPTION (pfile, pedantic)
+    || CPP_OPTION (pfile, debug_output)
+    || CPP_OPTION (pfile, dump_macros) == dump_definitions
+    || CPP_OPTION (pfile, dump_macros) == dump_only;
 
-  /* Must call finclude() on the main input before processing
-     -include switches; otherwise the -included text winds up
-     after the main input. */
-  ih_fake = (struct include_hash *) xmalloc (sizeof (struct include_hash));
-  ih_fake->next = 0;
-  ih_fake->next_this_file = 0;
-  ih_fake->foundhere = ABSOLUTE_PATH;  /* well sort of ... */
-  ih_fake->name = fname;
-  ih_fake->control_macro = 0;
-  ih_fake->buf = (char *)-1;
-  ih_fake->limit = 0;
-  if (!finclude (pfile, f, ih_fake))
-    return 0;
-  output_line_command (pfile, 0, same_file);
-  pfile->only_seen_white = 2;
+  /* Set up the IStable.  This doesn't do anything if we were compiled
+     with a compiler that supports C99 designated initializers.  */
+  init_IStable ();
 
-  /* The -imacros files can be scanned now, but the -include files
-     have to be pushed onto the include stack and processed later,
-     in the main loop calling cpp_get_token.  That means the -include
-     files have to be processed in reverse order of the pending list,
-     which means the pending list has to be reversed again, which
-     means the -imacros files have to be done separately and first. */
-  
-  pfile->no_record_file++;
-  opts->no_output++;
-  for (pend = opts->pending; pend; pend = pend->next)
+  /* Set up the tables used by read_and_prescan.  */
+  _cpp_init_input_buffer (pfile);
+
+  /* Set up the include search path now.  */
+  if (! CPP_OPTION (pfile, no_standard_includes))
+    initialize_standard_includes (pfile);
+
+  merge_include_chains (pfile);
+
+  /* With -v, print the list of dirs to search.  */
+  if (CPP_OPTION (pfile, verbose))
     {
-      if (pend->cmd != NULL)
-        {
-         if (strcmp (pend->cmd, "-imacros") == 0)
-           {
-             int fd = open (pend->arg, O_RDONLY|O_NONBLOCK|O_NOCTTY, 0666);
-             if (fd < 0)
-               {
-                 cpp_perror_with_name (pfile, pend->arg);
-                 return 0;
-               }
-             if (!cpp_push_buffer (pfile, NULL, 0))
-               return 0;
-
-             ih_fake = (struct include_hash *)
-                 xmalloc (sizeof (struct include_hash));
-             ih_fake->next = 0;
-             ih_fake->next_this_file = 0;
-             ih_fake->foundhere = ABSOLUTE_PATH;  /* well sort of ... */
-             ih_fake->name = pend->arg;
-             ih_fake->control_macro = 0;
-             ih_fake->buf = (char *)-1;
-             ih_fake->limit = 0;
-             if (!finclude (pfile, fd, ih_fake))
-               cpp_scan_buffer (pfile);
-             free (ih_fake);
-           }
+      struct file_name_list *l;
+      fprintf (stderr, _("#include \"...\" search starts here:\n"));
+      for (l = CPP_OPTION (pfile, quote_include); l; l = l->next)
+       {
+         if (l == CPP_OPTION (pfile, bracket_include))
+           fprintf (stderr, _("#include <...> search starts here:\n"));
+         fprintf (stderr, " %s\n", l->name);
        }
+      fprintf (stderr, _("End of search list.\n"));
     }
-  opts->no_output--;
-  opts->pending = nreverse_pending (opts->pending);
-  for (pend = opts->pending; pend; pend = pend->next)
+
+  /* Open the main input file.  This must be done early, so we have a
+     buffer to stand on.  */
+  if (CPP_OPTION (pfile, in_fname) == NULL
+      || *CPP_OPTION (pfile, in_fname) == 0)
     {
-      if (pend->cmd != NULL)
-        {
-         if (strcmp (pend->cmd, "-include") == 0)
-           {
-             int fd = open (pend->arg, O_RDONLY|O_NONBLOCK|O_NOCTTY, 0666);
-             if (fd < 0)
-               {
-                 cpp_perror_with_name (pfile, pend->arg);
-                 return 0;
-               }
-             if (!cpp_push_buffer (pfile, NULL, 0))
-               return 0;
-
-             ih_fake = (struct include_hash *)
-                 xmalloc (sizeof (struct include_hash));
-             ih_fake->next = 0;
-             ih_fake->next_this_file = 0;
-             ih_fake->foundhere = ABSOLUTE_PATH;  /* well sort of ... */
-             ih_fake->name = pend->arg;
-             ih_fake->control_macro = 0;
-             ih_fake->buf = (char *)-1;
-             ih_fake->limit = 0;
-             if (finclude (pfile, fd, ih_fake))
-               output_line_command (pfile, 0, enter_file);
-           }
-       }
+      CPP_OPTION (pfile, in_fname) = fname;
+      if (CPP_OPTION (pfile, in_fname) == NULL)
+       CPP_OPTION (pfile, in_fname) = "";
+    }
+  if (CPP_OPTION (pfile, out_fname) == NULL)
+    CPP_OPTION (pfile, out_fname) = "";
+
+  if (!cpp_read_file (pfile, fname))
+    return 0;
+
+  initialize_dependency_output (pfile);
+
+  /* -D and friends may produce output, which should be identified
+     as line 0.  */
+
+  CPP_BUFFER (pfile)->lineno = 0;
+  if (print)
+    {
+      print->last_fname = CPP_BUFFER (pfile)->nominal_fname;
+      print->last_id = pfile->include_depth;
+      print->written = CPP_WRITTEN (pfile);
+      print->lineno = 0;
     }
-  pfile->no_record_file--;
 
-  /* Free the pending list.  */
-  for (pend = opts->pending;  pend; )
+  /* Install __LINE__, etc.  */
+  initialize_builtins (pfile);
+
+  /* Do -U's, -D's and -A's in the order they were seen.  */
+  p = CPP_OPTION (pfile, pending)->directive_head;
+  while (p)
     {
-      struct cpp_pending *next = pend->next;
-      free (pend);
-      pend = next;
+      (*p->handler) (pfile, p->arg);
+      q = p->next;
+      free (p);
+      p = q;
     }
-  opts->pending = NULL;
+  pfile->done_initializing = 1;
+
+  /* Now flush any output recorded during initialization, and advance
+     to line 1 of the main input file.  */
+  CPP_BUFFER (pfile)->lineno = 1;
+
+  if (print && ! CPP_OPTION (pfile, no_output))
+    cpp_output_tokens (pfile, print, 1);
+
+  /* The -imacros files can be scanned now, but the -include files
+     have to be pushed onto the include stack and processed later,
+     in the main loop calling cpp_get_token.  */
+
+  p = CPP_OPTION (pfile, pending)->imacros_head;
+  while (p)
+    {
+      if (cpp_read_file (pfile, p->arg))
+       cpp_scan_buffer_nooutput (pfile);
+      q = p->next;
+      free (p);
+      p = q;
+    }
+
+  p = CPP_OPTION (pfile, pending)->include_head;
+  while (p)
+    {
+      if (cpp_read_file (pfile, p->arg)
+         && print && ! CPP_OPTION (pfile, no_output))
+       cpp_output_tokens (pfile, print, 1);  /* record entry to file */
+      q = p->next;
+      free (p);
+      p = q;
+    }
+
+  free (CPP_OPTION (pfile, pending));
+  CPP_OPTION (pfile, pending) = NULL;
 
   return 1;
 }
 
+
+/* Dump out the hash table.  */
+static int
+dump_macros_helper (pfile, hp)
+     cpp_reader *pfile;
+     cpp_hashnode *hp;
+{
+  if (hp->type == T_MACRO)
+    _cpp_dump_definition (pfile, hp);
+  return 1;
+}
+
 /* This is called at the end of preprocessing.  It pops the
    last buffer and writes dependency output.  It should also
    clear macro definitions, such that you could call cpp_start_read
    with a new filename to restart processing. */
 void
-cpp_finish (pfile)
+cpp_finish (pfile, print)
      cpp_reader *pfile;
+     cpp_printer *print;
 {
-  struct cpp_options *opts = CPP_OPTIONS (pfile);
+  if (CPP_BUFFER (pfile))
+    {
+      cpp_ice (pfile, "buffers still stacked in cpp_finish");
+      while (CPP_BUFFER (pfile))
+       cpp_pop_buffer (pfile);
+    }
 
-  if (CPP_PREV_BUFFER (CPP_BUFFER (pfile)) != CPP_NULL_BUFFER (pfile))
-    cpp_fatal (pfile,
-              "cpplib internal error: buffers still stacked in cpp_finish");
-  cpp_pop_buffer (pfile);
-  
-  if (opts->print_deps)
+  /* Don't write the deps file if preprocessing has failed.  */
+  if (CPP_OPTION (pfile, print_deps) && pfile->errors == 0)
     {
       /* Stream on which to print the dependency information.  */
-      FILE *deps_stream;
-
-      /* Don't actually write the deps file if compilation has failed.  */
-      if (pfile->errors == 0)
+      FILE *deps_stream = 0;
+      const char *deps_mode
+       = CPP_OPTION (pfile, print_deps_append) ? "a" : "w";
+      if (CPP_OPTION (pfile, deps_file) == 0)
+       deps_stream = stdout;
+      else
+       {
+         deps_stream = fopen (CPP_OPTION (pfile, deps_file), deps_mode);
+         if (deps_stream == 0)
+           cpp_notice_from_errno (pfile, CPP_OPTION (pfile, deps_file));
+       }
+      if (deps_stream)
        {
-         char *deps_mode = opts->print_deps_append ? "a" : "w";
-         if (opts->deps_file == 0)
-           deps_stream = stdout;
-         else if ((deps_stream = fopen (opts->deps_file, deps_mode)) == 0)
-           cpp_pfatal_with_name (pfile, opts->deps_file);
-         fputs (pfile->deps_buffer, deps_stream);
-         putc ('\n', deps_stream);
-         if (opts->deps_file)
+         deps_write (pfile->deps, deps_stream, 72);
+         if (CPP_OPTION (pfile, deps_file))
            {
              if (ferror (deps_stream) || fclose (deps_stream) != 0)
                cpp_fatal (pfile, "I/O error on output");
            }
        }
     }
+
+  if (CPP_OPTION (pfile, dump_macros) == dump_only)
+    cpp_forall_identifiers (pfile, dump_macros_helper);
+
+  /* Flush any pending output.  */
+  if (print)
+    {
+      cpp_output_tokens (pfile, print, print->lineno);
+      if (ferror (print->outf) || fclose (print->outf))
+       cpp_notice_from_errno (pfile, CPP_OPTION (pfile, out_fname));
+    }
+
+  /* Report on headers that could use multiple include guards.  */
+  if (CPP_OPTION (pfile, print_include_names))
+    _cpp_report_missing_guards (pfile);
+}
+
+static void
+new_pending_directive (pend, text, handler)
+     struct cpp_pending *pend;
+     const char *text;
+     cl_directive_handler handler;
+{
+  struct pending_option *o = (struct pending_option *)
+    xmalloc (sizeof (struct pending_option));
+
+  o->arg = text;
+  o->next = NULL;
+  o->handler = handler;
+  APPEND (pend, directive, o);
+}
+
+/* Irix6 "cc -n32" and OSF4 cc have problems with char foo[] = ("string");
+   I.e. a const string initializer with parens around it.  That is
+   what N_("string") resolves to, so we make no_* be macros instead.  */
+#define no_arg N_("Argument missing after %s")
+#define no_ass N_("Assertion missing after %s")
+#define no_dir N_("Directory name missing after %s")
+#define no_fil N_("File name missing after %s")
+#define no_mac N_("Macro name missing after %s")
+#define no_pth N_("Path name missing after %s")
+#define no_num N_("Number missing after %s")
+
+/* This is the list of all command line options, with the leading
+   "-" removed.  It must be sorted in ASCII collating order.  */
+#define COMMAND_LINE_OPTIONS                                                  \
+  DEF_OPT("",                         0,      OPT_stdin_stdout)               \
+  DEF_OPT("$",                        0,      OPT_dollar)                     \
+  DEF_OPT("+",                        0,      OPT_plus)                       \
+  DEF_OPT("-help",                    0,      OPT__help)                      \
+  DEF_OPT("-version",                 0,      OPT__version)                   \
+  DEF_OPT("A",                        no_ass, OPT_A)                          \
+  DEF_OPT("C",                        0,      OPT_C)                          \
+  DEF_OPT("D",                        no_mac, OPT_D)                          \
+  DEF_OPT("H",                        0,      OPT_H)                          \
+  DEF_OPT("I",                        no_dir, OPT_I)                          \
+  DEF_OPT("M",                        0,      OPT_M)                          \
+  DEF_OPT("MD",                       no_fil, OPT_MD)                         \
+  DEF_OPT("MG",                       0,      OPT_MG)                         \
+  DEF_OPT("MM",                       0,      OPT_MM)                         \
+  DEF_OPT("MMD",                      no_fil, OPT_MMD)                        \
+  DEF_OPT("P",                        0,      OPT_P)                          \
+  DEF_OPT("U",                        no_mac, OPT_U)                          \
+  DEF_OPT("W",                        no_arg, OPT_W)  /* arg optional */      \
+  DEF_OPT("d",                        no_arg, OPT_d)                          \
+  DEF_OPT("fleading-underscore",      0,      OPT_fleading_underscore)        \
+  DEF_OPT("fno-leading-underscore",   0,      OPT_fno_leading_underscore)     \
+  DEF_OPT("fno-preprocessed",         0,      OPT_fno_preprocessed)           \
+  DEF_OPT("fno-show-column",          0,      OPT_fno_show_column)            \
+  DEF_OPT("fpreprocessed",            0,      OPT_fpreprocessed)              \
+  DEF_OPT("fshow-column",             0,      OPT_fshow_column)               \
+  DEF_OPT("ftabstop=",                no_num, OPT_ftabstop)                   \
+  DEF_OPT("g",                        no_arg, OPT_g)  /* arg optional */      \
+  DEF_OPT("h",                        0,      OPT_h)                          \
+  DEF_OPT("idirafter",                no_dir, OPT_idirafter)                  \
+  DEF_OPT("imacros",                  no_fil, OPT_imacros)                    \
+  DEF_OPT("include",                  no_fil, OPT_include)                    \
+  DEF_OPT("iprefix",                  no_pth, OPT_iprefix)                    \
+  DEF_OPT("isystem",                  no_dir, OPT_isystem)                    \
+  DEF_OPT("iwithprefix",              no_dir, OPT_iwithprefix)                \
+  DEF_OPT("iwithprefixbefore",        no_dir, OPT_iwithprefixbefore)          \
+  DEF_OPT("lang-asm",                 0,      OPT_lang_asm)                   \
+  DEF_OPT("lang-c",                   0,      OPT_lang_c)                     \
+  DEF_OPT("lang-c++",                 0,      OPT_lang_cplusplus)             \
+  DEF_OPT("lang-c89",                 0,      OPT_lang_c89)                   \
+  DEF_OPT("lang-objc",                0,      OPT_lang_objc)                  \
+  DEF_OPT("lang-objc++",              0,      OPT_lang_objcplusplus)          \
+  DEF_OPT("nostdinc",                 0,      OPT_nostdinc)                   \
+  DEF_OPT("nostdinc++",               0,      OPT_nostdincplusplus)           \
+  DEF_OPT("o",                        no_fil, OPT_o)                          \
+  DEF_OPT("pedantic",                 0,      OPT_pedantic)                   \
+  DEF_OPT("pedantic-errors",          0,      OPT_pedantic_errors)            \
+  DEF_OPT("remap",                    0,      OPT_remap)                      \
+  DEF_OPT("std=c89",                  0,      OPT_std_c89)                    \
+  DEF_OPT("std=c99",                  0,      OPT_std_c99)                    \
+  DEF_OPT("std=c9x",                  0,      OPT_std_c9x)                    \
+  DEF_OPT("std=gnu89",                0,      OPT_std_gnu89)                  \
+  DEF_OPT("std=gnu99",                0,      OPT_std_gnu99)                  \
+  DEF_OPT("std=gnu9x",                0,      OPT_std_gnu9x)                  \
+  DEF_OPT("std=iso9899:1990",         0,      OPT_std_iso9899_1990)           \
+  DEF_OPT("std=iso9899:199409",       0,      OPT_std_iso9899_199409)         \
+  DEF_OPT("std=iso9899:1999",         0,      OPT_std_iso9899_1999)           \
+  DEF_OPT("std=iso9899:199x",         0,      OPT_std_iso9899_199x)           \
+  DEF_OPT("trigraphs",                0,      OPT_trigraphs)                  \
+  DEF_OPT("v",                        0,      OPT_v)                          \
+  DEF_OPT("w",                        0,      OPT_w)
+
+#define DEF_OPT(text, msg, code) code,
+enum opt_code
+{
+  COMMAND_LINE_OPTIONS
+  N_OPTS
+};
+#undef DEF_OPT
+
+struct cl_option
+{
+  const char *opt_text;
+  const char *msg;
+  size_t opt_len;
+  enum opt_code opt_code;
+};
+
+#define DEF_OPT(text, msg, code) { text, msg, sizeof(text) - 1, code },
+#ifdef HOST_EBCDIC
+static struct cl_option cl_options[] =
+#else
+static const struct cl_option cl_options[] =
+#endif
+{
+  COMMAND_LINE_OPTIONS
+};
+#undef DEF_OPT
+#undef COMMAND_LINE_OPTIONS
+
+#ifdef HOST_EBCDIC
+static void
+sort_options (void)
+{
+  static int opts_sorted = 0;
+
+  if (!opts_sorted)
+    {
+      opts_sorted = 1;
+      /* For non-ASCII hosts, the array needs to be sorted at runtime */
+      qsort (cl_options, N_OPTS, sizeof (struct cl_option), opt_comp);
+    }
+}
+#endif
+
+
+/* Perform a binary search to find which, if any, option the given
+   command-line matches.  Returns its index in the option array,
+   negative on failure.  Complications arise since some options can be
+   suffixed with an argument, and multiple complete matches can occur,
+   e.g. -iwithprefix and -iwithprefixbefore.  Moreover, we want to
+   accept options beginning with -g and -W that we do not recognise,
+   but not to swallow any subsequent command line argument; these are
+   handled as special cases in cpp_handle_option */
+static int
+parse_option (input)
+     const char *input;
+{
+  unsigned int md, mn, mx;
+  size_t opt_len;
+  int comp;
+
+  mn = 0;
+  mx = N_OPTS;
+
+  while (mx > mn)
+    {
+      md = (mn + mx) / 2;
+
+      opt_len = cl_options[md].opt_len;
+      comp = strncmp (input, cl_options[md].opt_text, opt_len);
+
+      if (comp > 0)
+       mn = md + 1;
+      else if (comp < 0)
+       mx = md;
+      else
+       {
+         if (input[opt_len] == '\0')
+           return md;
+         /* We were passed more text.  If the option takes an argument,
+            we may match a later option or we may have been passed the
+            argument.  The longest possible option match succeeds.
+            If the option takes no arguments we have not matched and
+            continue the search (e.g. input="stdc++" match was "stdc") */
+         mn = md + 1;
+         if (cl_options[md].msg)
+           {
+             /* Scan forwards.  If we get an exact match, return it.
+                Otherwise, return the longest option-accepting match.
+                This loops no more than twice with current options */
+             mx = md;
+             for (; mn < N_OPTS; mn++)
+               {
+                 opt_len = cl_options[mn].opt_len;
+                 if (strncmp (input, cl_options[mn].opt_text, opt_len))
+                   break;
+                 if (input[opt_len] == '\0')
+                   return mn;
+                 if (cl_options[mn].msg)
+                   mx = mn;
+               }
+             return mx;
+           }
+       }
+    }
+
+  return -1;
 }
 
 /* Handle one command-line option in (argc, argv).
    Can be called multiple times, to handle multiple sets of options.
    Returns number of strings consumed.  */
+
 int
 cpp_handle_option (pfile, argc, argv)
      cpp_reader *pfile;
      int argc;
      char **argv;
 {
-  struct cpp_options *opts = CPP_OPTIONS (pfile);
   int i = 0;
+  struct cpp_pending *pend = CPP_OPTION (pfile, pending);
 
-  if (user_label_prefix == NULL)
-    user_label_prefix = USER_LABEL_PREFIX;
+  if (argv[i][0] != '-')
+    {
+      if (CPP_OPTION (pfile, out_fname) != NULL)
+       cpp_fatal (pfile, "Too many arguments. Type %s --help for usage info",
+                  progname);
+      else if (CPP_OPTION (pfile, in_fname) != NULL)
+       CPP_OPTION (pfile, out_fname) = argv[i];
+      else
+       CPP_OPTION (pfile, in_fname) = argv[i];
+    }
+  else
+    {
+      enum opt_code opt_code;
+      int opt_index;
+      const char *arg = 0;
 
-  if (argv[i][0] != '-') {
-    if (opts->out_fname != NULL)
-      {
-       print_help ();
-       cpp_fatal (pfile, "Too many arguments");
-      }
-    else if (opts->in_fname != NULL)
-      opts->out_fname = argv[i];
-    else
-      opts->in_fname = argv[i];
-  } else {
-    switch (argv[i][1]) {
-      
-    missing_filename:
-      cpp_fatal (pfile, "Filename missing after `%s' option", argv[i]);
-      return argc;
-    missing_dirname:
-      cpp_fatal (pfile, "Directory name missing after `%s' option", argv[i]);
-      return argc;
-      
-    case 'f':
-      if (!strcmp (argv[i], "-fleading-underscore"))
-       user_label_prefix = "_";
-      else if (!strcmp (argv[i], "-fno-leading-underscore"))
-       user_label_prefix = "";
-      break;
+      /* Skip over '-' */
+      opt_index = parse_option (&argv[i][1]);
+      if (opt_index < 0)
+       return i;
 
-    case 'I':                  /* Add directory to path for includes.  */
-      if (!strcmp (argv[i] + 2, "-"))
-        {
-         if (! opts->ignore_srcdir)
-           {
-             opts->ignore_srcdir = 1;
-             /* Don't use any preceding -I directories for #include <...>. */
-             opts->quote_include = opts->bracket_include;
-             opts->bracket_include = 0;
-           }
-       }
-      else
+      opt_code = cl_options[opt_index].opt_code;
+      if (cl_options[opt_index].msg)
        {
-         char *fname;
-         if (argv[i][2] != 0)
-           fname = argv[i] + 2;
-         else if (i + 1 == argc)
-           goto missing_dirname;
-         else
-           fname = argv[++i];
-         append_include_chain (pfile, &opts->bracket_include, fname, 0);
-       }
-      break;
+         arg = &argv[i][cl_options[opt_index].opt_len + 1];
 
-    case 'i':
-      /* Add directory to beginning of system include path, as a system
-        include directory. */
-      if (!strcmp (argv[i], "-isystem"))
-        {
-         if (i + 1 == argc)
-           goto missing_filename;
-         append_include_chain (pfile, &opts->system_include, argv[++i], 1);
-       }
-      /* Add directory to end of path for includes,
-        with the default prefix at the front of its name.  */
-      else if (!strcmp (argv[i], "-iwithprefix"))
-        {
-         char *fname;
-         if (i + 1 == argc)
-           goto missing_dirname;
-         ++i;
-
-         if (opts->include_prefix != 0)
+         /* Yuk. Special case for -g and -W as they must not swallow
+            up any following argument.  If this becomes common, add
+            another field to the cl_options table */
+         if (arg[0] == '\0' && !(opt_code == OPT_g || opt_code == OPT_W))
            {
-             fname = xmalloc (strlen (opts->include_prefix)
-                              + strlen (argv[i]) + 1);
-             strcpy (fname, opts->include_prefix);
-             strcat (fname, argv[i]);
-           }
-         else
-           {
-             fname = xmalloc (strlen (GCC_INCLUDE_DIR)
-                              + strlen (argv[i]) + 1);
-             strcpy (fname, GCC_INCLUDE_DIR);
-             /* Remove the `include' from /usr/local/lib/gcc.../include.  */
-             if (!strcmp (fname + strlen (fname) - 8, "/include"))
-               fname[strlen (fname) - 7] = 0;
-             strcat (fname, argv[i]);
+             arg = argv[++i];
+             if (!arg)
+               {
+                 cpp_fatal (pfile, cl_options[opt_index].msg, argv[i - 1]);
+                 return argc;
+               }
            }
-         
-         append_include_chain (pfile, &opts->system_include, fname, 0);
-      }
-      /* Add directory to main path for includes,
-        with the default prefix at the front of its name.  */
-      else if (!strcmp (argv[i], "-iwithprefix"))
-        {
-         char *fname;
-         if (i + 1 == argc)
-           goto missing_dirname;
-         ++i;
+       }
 
-         if (opts->include_prefix != 0)
+      switch (opt_code)
+       {
+       case N_OPTS: /* shut GCC up */
+         break;
+       case OPT_fleading_underscore:
+         user_label_prefix = "_";
+         break;
+       case OPT_fno_leading_underscore:
+         user_label_prefix = "";
+         break;
+       case OPT_fpreprocessed:
+         CPP_OPTION (pfile, preprocessed) = 1;
+         break;
+       case OPT_fno_preprocessed:
+         CPP_OPTION (pfile, preprocessed) = 0;
+         break;
+       case OPT_fshow_column:
+         CPP_OPTION (pfile, show_column) = 1;
+         break;
+       case OPT_fno_show_column:
+         CPP_OPTION (pfile, show_column) = 0;
+         break;
+       case OPT_ftabstop:
+         /* Silently ignore empty string, non-longs and silly values.  */
+         if (arg[0] != '\0')
            {
-             fname = xmalloc (strlen (opts->include_prefix)
-                              + strlen (argv[i]) + 1);
-             strcpy (fname, opts->include_prefix);
-             strcat (fname, argv[i]);
+             char *endptr;
+             long tabstop = strtol (arg, &endptr, 10);
+             if (*endptr == '\0' && tabstop >= 1 && tabstop <= 100)
+               CPP_OPTION (pfile, tabstop) = tabstop;
            }
-         else
+         break;
+       case OPT_w:
+         CPP_OPTION (pfile, inhibit_warnings) = 1;
+         break;
+       case OPT_g:  /* Silently ignore anything but -g3 */
+         if (!strcmp(&argv[i][2], "3"))
+           CPP_OPTION (pfile, debug_output) = 1;
+         break;
+       case OPT_h:
+       case OPT__help:
+         print_help ();
+         exit (0);  /* XXX */
+         break;
+       case OPT__version:
+         fprintf (stderr, _("GNU CPP version %s (cpplib)\n"), version_string);
+         exit (0);  /* XXX */
+         break;
+       case OPT_C:
+         CPP_OPTION (pfile, discard_comments) = 0;
+         break;
+       case OPT_P:
+         CPP_OPTION (pfile, no_line_commands) = 1;
+         break;
+       case OPT_dollar:                /* Don't include $ in identifiers.  */
+         CPP_OPTION (pfile, dollars_in_ident) = 0;
+         break;
+       case OPT_H:
+         CPP_OPTION (pfile, print_include_names) = 1;
+         break;
+       case OPT_D:
+         new_pending_directive (pend, arg, cpp_define);
+         break;
+       case OPT_pedantic_errors:
+         CPP_OPTION (pfile, pedantic_errors) = 1;
+         /* fall through */
+       case OPT_pedantic:
+         CPP_OPTION (pfile, pedantic) = 1;
+         break;
+       case OPT_trigraphs:
+         CPP_OPTION (pfile, trigraphs) = 1;
+         break;
+       case OPT_plus:
+         CPP_OPTION (pfile, cplusplus) = 1;
+         CPP_OPTION (pfile, cplusplus_comments) = 1;
+         break;
+       case OPT_remap:
+         CPP_OPTION (pfile, remap) = 1;
+         break;
+       case OPT_iprefix:
+         CPP_OPTION (pfile, include_prefix) = arg;
+         CPP_OPTION (pfile, include_prefix_len) = strlen (arg);
+         break;
+       case OPT_lang_c:
+         CPP_OPTION (pfile, cplusplus) = 0;
+         CPP_OPTION (pfile, cplusplus_comments) = 1;
+         CPP_OPTION (pfile, c89) = 0;
+         CPP_OPTION (pfile, c99) = 1;
+         CPP_OPTION (pfile, digraphs) = 1;
+         CPP_OPTION (pfile, objc) = 0;
+         break;
+       case OPT_lang_cplusplus:
+         CPP_OPTION (pfile, cplusplus) = 1;
+         CPP_OPTION (pfile, cplusplus_comments) = 1;
+         CPP_OPTION (pfile, c89) = 0;
+         CPP_OPTION (pfile, c99) = 0;
+         CPP_OPTION (pfile, objc) = 0;
+         CPP_OPTION (pfile, digraphs) = 1;
+         new_pending_directive (pend, "__cplusplus", cpp_define);
+         break;
+       case OPT_lang_objcplusplus:
+         CPP_OPTION (pfile, cplusplus) = 1;
+         new_pending_directive (pend, "__cplusplus", cpp_define);
+         /* fall through */
+       case OPT_lang_objc:
+         CPP_OPTION (pfile, cplusplus_comments) = 1;
+         CPP_OPTION (pfile, c89) = 0;
+         CPP_OPTION (pfile, c99) = 0;
+         CPP_OPTION (pfile, objc) = 1;
+         new_pending_directive (pend, "__OBJC__", cpp_define);
+         break;
+       case OPT_lang_asm:
+         CPP_OPTION (pfile, lang_asm) = 1;
+         CPP_OPTION (pfile, dollars_in_ident) = 0;
+         new_pending_directive (pend, "__ASSEMBLER__", cpp_define);
+         break;
+       case OPT_nostdinc:
+         /* -nostdinc causes no default include directories.
+            You must specify all include-file directories with -I.  */
+         CPP_OPTION (pfile, no_standard_includes) = 1;
+         break;
+       case OPT_nostdincplusplus:
+         /* -nostdinc++ causes no default C++-specific include directories. */
+         CPP_OPTION (pfile, no_standard_cplusplus_includes) = 1;
+         break;
+       case OPT_std_gnu89:
+         CPP_OPTION (pfile, cplusplus) = 0;
+         CPP_OPTION (pfile, cplusplus_comments) = 1;
+         CPP_OPTION (pfile, c89) = 1;
+         CPP_OPTION (pfile, c99) = 0;
+         CPP_OPTION (pfile, objc) = 0;
+         CPP_OPTION (pfile, digraphs) = 1;
+         break;
+       case OPT_std_gnu9x:
+       case OPT_std_gnu99:
+         CPP_OPTION (pfile, cplusplus) = 0;
+         CPP_OPTION (pfile, cplusplus_comments) = 1;
+         CPP_OPTION (pfile, c89) = 0;
+         CPP_OPTION (pfile, c99) = 1;
+         CPP_OPTION (pfile, digraphs) = 1;
+         CPP_OPTION (pfile, objc) = 0;
+         new_pending_directive (CPP_OPTION (pfile, pending),
+                                "__STDC_VERSION__=199901L", cpp_define);
+         break;
+       case OPT_std_iso9899_199409:
+         new_pending_directive (CPP_OPTION (pfile, pending),
+                                "__STDC_VERSION__=199409L", cpp_define);
+         /* Fall through */
+       case OPT_std_iso9899_1990:
+       case OPT_std_c89:
+       case OPT_lang_c89:
+         CPP_OPTION (pfile, cplusplus) = 0;
+         CPP_OPTION (pfile, cplusplus_comments) = 0;
+         CPP_OPTION (pfile, c89) = 1;
+         CPP_OPTION (pfile, c99) = 0;
+         CPP_OPTION (pfile, objc) = 0;
+         CPP_OPTION (pfile, digraphs) = opt_code == OPT_std_iso9899_199409;
+         CPP_OPTION (pfile, trigraphs) = 1;
+         new_pending_directive (pend, "__STRICT_ANSI__", cpp_define);
+         break;
+       case OPT_std_iso9899_199x:
+       case OPT_std_iso9899_1999:
+       case OPT_std_c9x:
+       case OPT_std_c99:
+         CPP_OPTION (pfile, cplusplus) = 0;
+         CPP_OPTION (pfile, cplusplus_comments) = 1;
+         CPP_OPTION (pfile, c89) = 0;
+         CPP_OPTION (pfile, c99) = 1;
+         CPP_OPTION (pfile, objc) = 0;
+         CPP_OPTION (pfile, digraphs) = 1;
+         CPP_OPTION (pfile, trigraphs) = 1;
+         new_pending_directive (CPP_OPTION (pfile, pending),
+                                "__STRICT_ANSI__", cpp_define);
+         new_pending_directive (CPP_OPTION (pfile, pending),
+                                "__STDC_VERSION__=199901L", cpp_define);
+         break;
+       case OPT_o:
+         if (CPP_OPTION (pfile, out_fname) != NULL)
            {
-             fname = xmalloc (strlen (GCC_INCLUDE_DIR)
-                              + strlen (argv[i]) + 1);
-             strcpy (fname, GCC_INCLUDE_DIR);
-             /* Remove the `include' from /usr/local/lib/gcc.../include.  */
-             if (!strcmp (fname + strlen (fname) - 8, "/include"))
-               fname[strlen (fname) - 7] = 0;
-             strcat (fname, argv[i]);
+             cpp_fatal (pfile, "Output filename specified twice");
+             return argc;
            }
-         
-         append_include_chain (pfile, &opts->bracket_include, fname, 0);
-        }
-      /* Add directory to end of path for includes.  */
-      else if (!strcmp (argv[i], "-idirafter"))
-        {
-         if (i + 1 == argc)
-           goto missing_dirname;
-         append_include_chain (pfile, &opts->after_include, argv[++i], 0);
-       }
-      else if (!strcmp (argv[i], "-include") || !strcmp (argv[i], "-imacros"))
-        {
-         if (i + 1 == argc)
-           goto missing_filename;
-         else
-           push_pending (pfile, argv[i], argv[i+1]), i++;
-        }
-      else if (!strcmp (argv[i], "-iprefix"))
-        {
-         if (i + 1 == argc)
-           goto missing_filename;
-         else
-             opts->include_prefix = argv[++i];
-       }
-      else if (!strcmp (argv[i], "-ifoutput"))
-       opts->output_conditionals = 1;
-
-      break;
-      
-    case 'o':
-      if (opts->out_fname != NULL)
-       {
-         cpp_fatal (pfile, "Output filename specified twice");
-         return argc;
-       }
-      if (i + 1 == argc)
-       goto missing_filename;
-      opts->out_fname = argv[++i];
-      if (!strcmp (opts->out_fname, "-"))
-       opts->out_fname = "";
-      break;
-      
-    case 'p':
-      if (!strcmp (argv[i], "-pedantic"))
-       CPP_PEDANTIC (pfile) = 1;
-      else if (!strcmp (argv[i], "-pedantic-errors")) {
-       CPP_PEDANTIC (pfile) = 1;
-       opts->pedantic_errors = 1;
-      }
-#if 0
-      else if (!strcmp (argv[i], "-pcp")) {
-       char *pcp_fname = argv[++i];
-       pcp_outfile = ((pcp_fname[0] != '-' || pcp_fname[1] != '\0')
-                      ? fopen (pcp_fname, "w")
-                      : fdopen (dup (fileno (stdout)), "w"));
-       if (pcp_outfile == 0)
-         cpp_pfatal_with_name (pfile, pcp_fname);
-       no_precomp = 1;
-      }
-#endif
-      break;
-      
-    case 't':
-      if (!strcmp (argv[i], "-traditional")) {
-       opts->traditional = 1;
-       opts->cplusplus_comments = 0;
-      } else if (!strcmp (argv[i], "-trigraphs")) {
-       if (!opts->chill)
-         opts->trigraphs = 1;
-      }
-      break;
-      
-    case 'l':
-      if (! strcmp (argv[i], "-lang-c"))
-       opts->cplusplus = 0, opts->cplusplus_comments = 1, opts->c89 = 0,
-         opts->c9x = 1, opts->objc = 0;
-      if (! strcmp (argv[i], "-lang-c89"))
-       opts->cplusplus = 0, opts->cplusplus_comments = 0, opts->c89 = 1,
-         opts->c9x = 0, opts->objc = 0;
-      if (! strcmp (argv[i], "-lang-c++"))
-       opts->cplusplus = 1, opts->cplusplus_comments = 1, opts->c89 = 0,
-         opts->c9x = 0, opts->objc = 0;
-      if (! strcmp (argv[i], "-lang-objc"))
-       opts->cplusplus = 0, opts->cplusplus_comments = 1, opts->c89 = 0,
-         opts->c9x = 0, opts->objc = 1;
-      if (! strcmp (argv[i], "-lang-objc++"))
-       opts->cplusplus = 1, opts->cplusplus_comments = 1, opts->c89 = 0,
-         opts->c9x = 0, opts->objc = 1;
-      if (! strcmp (argv[i], "-lang-asm"))
-       opts->lang_asm = 1;
-      if (! strcmp (argv[i], "-lint"))
-       opts->for_lint = 1;
-      if (! strcmp (argv[i], "-lang-chill"))
-       opts->objc = 0, opts->cplusplus = 0, opts->chill = 1,
-         opts->traditional = 1, opts->trigraphs = 0;
-      break;
-      
-    case '+':
-      opts->cplusplus = 1, opts->cplusplus_comments = 1;
-      break;
-
-    case 's':
-      if (!strcmp (argv[i], "-std=iso9899:1990")
-         || !strcmp (argv[i], "-std=iso9899:199409")
-         || !strcmp (argv[i], "-std=c89")
-         || !strcmp (argv[i], "-std=gnu89"))
-         opts->cplusplus = 0, opts->cplusplus_comments = 0,
-           opts->c89 = 1, opts->c9x = 0, opts->objc = 0;
-      else if (!strcmp (argv[i], "-std=iso9899:199x")
-              || !strcmp (argv[i], "-std=c9x")
-              || !strcmp (argv[i], "-std=gnu9x"))
-       opts->cplusplus = 0, opts->cplusplus_comments = 1, opts->c89 = 0,
-         opts->c9x = 1, opts->objc = 0;
-      break;
-
-    case 'w':
-      opts->inhibit_warnings = 1;
-      break;
-      
-    case 'W':
-      if (!strcmp (argv[i], "-Wtrigraphs"))
-       opts->warn_trigraphs = 1;
-      else if (!strcmp (argv[i], "-Wno-trigraphs"))
-       opts->warn_trigraphs = 0;
-      else if (!strcmp (argv[i], "-Wcomment"))
-       opts->warn_comments = 1;
-      else if (!strcmp (argv[i], "-Wno-comment"))
-       opts->warn_comments = 0;
-      else if (!strcmp (argv[i], "-Wcomments"))
-       opts->warn_comments = 1;
-      else if (!strcmp (argv[i], "-Wno-comments"))
-       opts->warn_comments = 0;
-      else if (!strcmp (argv[i], "-Wtraditional"))
-       opts->warn_stringify = 1;
-      else if (!strcmp (argv[i], "-Wno-traditional"))
-       opts->warn_stringify = 0;
-      else if (!strcmp (argv[i], "-Wundef"))
-       opts->warn_undef = 1;
-      else if (!strcmp (argv[i], "-Wno-undef"))
-       opts->warn_undef = 0;
-      else if (!strcmp (argv[i], "-Wimport"))
-       opts->warn_import = 1;
-      else if (!strcmp (argv[i], "-Wno-import"))
-       opts->warn_import = 0;
-      else if (!strcmp (argv[i], "-Werror"))
-       opts->warnings_are_errors = 1;
-      else if (!strcmp (argv[i], "-Wno-error"))
-       opts->warnings_are_errors = 0;
-      else if (!strcmp (argv[i], "-Wall"))
-       {
-         opts->warn_trigraphs = 1;
-         opts->warn_comments = 1;
-       }
-      break;
-      
-    case 'M':
-      /* The style of the choices here is a bit mixed.
-        The chosen scheme is a hybrid of keeping all options in one string
-        and specifying each option in a separate argument:
-        -M|-MM|-MD file|-MMD file [-MG].  An alternative is:
-        -M|-MM|-MD file|-MMD file|-MG|-MMG; or more concisely:
-        -M[M][G][D file].  This is awkward to handle in specs, and is not
-        as extensible.  */
-      /* ??? -MG must be specified in addition to one of -M or -MM.
-        This can be relaxed in the future without breaking anything.
-        The converse isn't true.  */
-      
-      /* -MG isn't valid with -MD or -MMD.  This is checked for later.  */
-      if (!strcmp (argv[i], "-MG"))
-       {
-         opts->print_deps_missing_files = 1;
+         CPP_OPTION (pfile, out_fname) = arg;
+         if (!strcmp (CPP_OPTION (pfile, out_fname), "-"))
+           CPP_OPTION (pfile, out_fname) = "";
          break;
-       }
-      if (!strcmp (argv[i], "-M"))
-       opts->print_deps = 2;
-      else if (!strcmp (argv[i], "-MM"))
-       opts->print_deps = 1;
-      else if (!strcmp (argv[i], "-MD"))
-       opts->print_deps = 2;
-      else if (!strcmp (argv[i], "-MMD"))
-       opts->print_deps = 1;
-      /* For -MD and -MMD options, write deps on file named by next arg.  */
-      if (!strcmp (argv[i], "-MD") || !strcmp (argv[i], "-MMD"))
-       {
-         if (i+1 == argc)
-           goto missing_filename;
-         opts->deps_file = argv[++i];
-       }
-      else
-       {
-         /* For -M and -MM, write deps on standard output
-            and suppress the usual output.  */
-         opts->no_output = 1;
-       }         
-      break;
-      
-    case 'd':
-      {
-       char *p = argv[i] + 2;
-       char c;
-       while ((c = *p++) != 0) {
-         /* Arg to -d specifies what parts of macros to dump */
-         switch (c) {
-         case 'M':
-           opts->dump_macros = dump_only;
-           opts->no_output = 1;
-           break;
-         case 'N':
-           opts->dump_macros = dump_names;
-           break;
-         case 'D':
-           opts->dump_macros = dump_definitions;
-           break;
-         case 'I':
-           opts->dump_includes = 1;
-           break;
-         }
-       }
-      }
-    break;
-    
-    case 'g':
-      if (argv[i][2] == '3')
-       opts->debug_output = 1;
-      break;
-      
-    case '-':
-      if (strcmp (argv[i], "--help") != 0)
-       return i;
-      print_help ();
-      break;
-       
-    case 'v':
-      cpp_notice ("GNU CPP version %s", version_string);
+       case OPT_v:
+         fprintf (stderr, _("GNU CPP version %s (cpplib)\n"), version_string);
 #ifdef TARGET_VERSION
-      TARGET_VERSION;
+         TARGET_VERSION;
 #endif
-      fprintf (stderr, "\n");
-      opts->verbose = 1;
-      break;
-      
-    case 'H':
-      opts->print_include_names = 1;
-      break;
-      
-    case 'D':
-      if (argv[i][2] != 0)
-       push_pending (pfile, "-D", argv[i] + 2);
-      else if (i + 1 == argc)
-       {
-         cpp_fatal (pfile, "Macro name missing after -D option");
-         return argc;
-       }
-      else
-       i++, push_pending (pfile, "-D", argv[i]);
-      break;
-      
-    case 'A':
-      {
-       char *p;
-       
-       if (argv[i][2] != 0)
-         p = argv[i] + 2;
-       else if (i + 1 == argc)
-         {
-           cpp_fatal (pfile, "Assertion missing after -A option");
-           return argc;
+         fputc ('\n', stderr);
+         CPP_OPTION (pfile, verbose) = 1;
+         break;
+       case OPT_stdin_stdout:
+         /* JF handle '-' as file name meaning stdin or stdout */
+         if (CPP_OPTION (pfile, in_fname) == NULL)
+           CPP_OPTION (pfile, in_fname) = "";
+         else if (CPP_OPTION (pfile, out_fname) == NULL)
+           CPP_OPTION (pfile, out_fname) = "";
+         break;
+       case OPT_d:
+         /* Args to -d specify what parts of macros to dump.
+            Silently ignore unrecognised options; they may
+            be aimed at the compiler proper. */
+         {
+           char c;
+
+           while ((c = *arg++) != '\0')
+             switch (c)
+               {
+               case 'M':
+                 CPP_OPTION (pfile, dump_macros) = dump_only;
+                 CPP_OPTION (pfile, no_output) = 1;
+                 break;
+               case 'N':
+                 CPP_OPTION (pfile, dump_macros) = dump_names;
+                 break;
+               case 'D':
+                 CPP_OPTION (pfile, dump_macros) = dump_definitions;
+                 break;
+               case 'I':
+                 CPP_OPTION (pfile, dump_includes) = 1;
+                 break;
+               }
          }
-       else
-         p = argv[++i];
-       
-       if (!strcmp (p, "-")) {
-         struct cpp_pending **ptr;
-         /* -A- eliminates all predefined macros and assertions.
-            Let's include also any that were specified earlier
-            on the command line.  That way we can get rid of any
-            that were passed automatically in from GCC.  */
-         opts->inhibit_predefs = 1;
-         for (ptr = &opts->pending; *ptr != NULL; )
+         break;
+         /* The style of the choices here is a bit mixed.
+            The chosen scheme is a hybrid of keeping all options in one string
+            and specifying each option in a separate argument:
+            -M|-MM|-MD file|-MMD file [-MG].  An alternative is:
+            -M|-MM|-MD file|-MMD file|-MG|-MMG; or more concisely:
+            -M[M][G][D file].  This is awkward to handle in specs, and is not
+            as extensible.  */
+         /* ??? -MG must be specified in addition to one of -M or -MM.
+            This can be relaxed in the future without breaking anything.
+            The converse isn't true.  */
+
+         /* -MG isn't valid with -MD or -MMD.  This is checked for later.  */
+       case OPT_MG:
+         CPP_OPTION (pfile, print_deps_missing_files) = 1;
+         break;
+       case OPT_M:
+       case OPT_MD:
+       case OPT_MM:
+       case OPT_MMD:
+         if (opt_code == OPT_M || opt_code == OPT_MD)
+           CPP_OPTION (pfile, print_deps) = 2;
+         else
+           CPP_OPTION (pfile, print_deps) = 1;
+
+         /* For -MD and -MMD options, write deps on file named by next arg */
+         /* For -M and -MM, write deps on standard output
+            and suppress the usual output.  */
+         if (opt_code == OPT_MD || opt_code == OPT_MMD)
+             CPP_OPTION (pfile, deps_file) = arg;
+         else
+             CPP_OPTION (pfile, no_output) = 1;
+         break;
+       case OPT_A:
+         if (arg[0] == '-')
            {
-             struct cpp_pending *pend = *ptr;
-             if (pend->cmd && pend->cmd[0] == '-'
-                 && (pend->cmd[1] == 'D' || pend->cmd[1] == 'A'))
+             /* -A with an argument beginning with '-' acts as
+                #unassert on whatever immediately follows the '-'.
+                If "-" is the whole argument, we eliminate all
+                predefined macros and assertions, including those
+                that were specified earlier on the command line.
+                That way we can get rid of any that were passed
+                automatically in from GCC.  */
+
+             if (arg[1] == '\0')
                {
-                 *ptr = pend->next;
-                 free (pend);
+                 struct pending_option *o1, *o2;
+
+                 o1 = CPP_OPTION (pfile, pending)->directive_head;
+                 while (o1)
+                   {
+                     o2 = o1->next;
+                     free (o1);
+                     o1 = o2;
+                   }
+                 CPP_OPTION (pfile, pending)->directive_head = NULL;
+                 CPP_OPTION (pfile, pending)->directive_tail = NULL;
                }
              else
-               ptr = &pend->next;
+               new_pending_directive (CPP_OPTION (pfile, pending),
+                                      arg + 1, cpp_unassert);
            }
-       } else {
-         push_pending (pfile, "-A", p);
-       }
-      }
-    break;
-    
-    case 'U':          /* JF #undef something */
-      if (argv[i][2] != 0)
-       push_pending (pfile, "-U", argv[i] + 2);
-      else if (i + 1 == argc)
-       {
-         cpp_fatal (pfile, "Macro name missing after -U option");
-         return argc;
-       }
-      else
-       push_pending (pfile, "-U", argv[i+1]), i++;
-      break;
-      
-    case 'C':
-      opts->put_out_comments = 1;
-      break;
-      
-    case 'E':                  /* -E comes from cc -E; ignore it.  */
-      break;
-      
-    case 'P':
-      opts->no_line_commands = 1;
-      break;
-      
-    case '$':                  /* Don't include $ in identifiers.  */
-      opts->dollars_in_ident = 0;
-      break;
-      
-    case 'n':
-      if (!strcmp (argv[i], "-nostdinc"))
-       /* -nostdinc causes no default include directories.
-          You must specify all include-file directories with -I.  */
-       opts->no_standard_includes = 1;
-      else if (!strcmp (argv[i], "-nostdinc++"))
-       /* -nostdinc++ causes no default C++-specific include directories. */
-       opts->no_standard_cplusplus_includes = 1;
-#if 0
-      else if (!strcmp (argv[i], "-noprecomp"))
-       no_precomp = 1;
-#endif
-      break;
-      
-    case 'r':
-      if (!strcmp (argv[i], "-remap"))
-       opts->remap = 1;
-      break;
-      
-    case 'u':
-      /* Sun compiler passes undocumented switch "-undef".
-        Let's assume it means to inhibit the predefined symbols.  */
-      opts->inhibit_predefs = 1;
-      break;
-      
-    case '\0': /* JF handle '-' as file name meaning stdin or stdout */
-      if (opts->in_fname == NULL) {
-       opts->in_fname = "";
-       break;
-      } else if (opts->out_fname == NULL) {
-       opts->out_fname = "";
-       break;
-      }        /* else fall through into error */
+         else
+           new_pending_directive (CPP_OPTION (pfile, pending),
+                                  arg, cpp_assert);
+         break;
+       case OPT_U:
+         new_pending_directive (CPP_OPTION (pfile, pending), arg, cpp_undef);
+         break;
+       case OPT_I:           /* Add directory to path for includes.  */
+         if (!strcmp (arg, "-"))
+           {
+             /* -I- means:
+                Use the preceding -I directories for #include "..."
+                but not #include <...>.
+                Don't search the directory of the present file
+                for #include "...".  (Note that -I. -I- is not the same as
+                the default setup; -I. uses the compiler's working dir.)  */
+             if (! CPP_OPTION (pfile, ignore_srcdir))
+               {
+                 struct cpp_pending *pend = CPP_OPTION (pfile, pending);
+                 pend->quote_head = pend->brack_head;
+                 pend->quote_tail = pend->brack_tail;
+                 pend->brack_head = 0;
+                 pend->brack_tail = 0;
+                 CPP_OPTION (pfile, ignore_srcdir) = 1;
+               }
+             else
+               {
+                 cpp_fatal (pfile, "-I- specified twice");
+                 return argc;
+               }
+           }
+         else
+           append_include_chain (pfile, CPP_OPTION (pfile, pending),
+                                 xstrdup (arg), BRACKET, 0);
+         break;
+       case OPT_isystem:
+         /* Add directory to beginning of system include path, as a system
+            include directory. */
+         append_include_chain (pfile, CPP_OPTION (pfile, pending),
+                               xstrdup (arg), SYSTEM, 0);
+         break;
+       case OPT_include:
+         {
+           struct pending_option *o = (struct pending_option *)
+             xmalloc (sizeof (struct pending_option));
+           o->arg = arg;
+
+           /* This list has to be built in reverse order so that
+              when cpp_start_read pushes all the -include files onto
+              the buffer stack, they will be scanned in forward order.  */
+           o->next = CPP_OPTION (pfile, pending)->include_head;
+           CPP_OPTION (pfile, pending)->include_head = o;
+         }
+         break;
+       case OPT_imacros:
+         {
+           struct pending_option *o = (struct pending_option *)
+             xmalloc (sizeof (struct pending_option));
+           o->arg = arg;
+           o->next = NULL;
 
-    default:
-      return i;
+           APPEND (CPP_OPTION (pfile, pending), imacros, o);
+         }
+         break;
+       case OPT_iwithprefix:
+         /* Add directory to end of path for includes,
+            with the default prefix at the front of its name.  */
+         /* fall through */
+       case OPT_iwithprefixbefore:
+         /* Add directory to main path for includes,
+            with the default prefix at the front of its name.  */
+         {
+           char *fname;
+           int len;
+
+           len = strlen (arg);
+
+           if (CPP_OPTION (pfile, include_prefix) != 0)
+             {
+               size_t ipl = CPP_OPTION (pfile, include_prefix_len);
+               fname = xmalloc (ipl + len + 1);
+               memcpy (fname, CPP_OPTION (pfile, include_prefix), ipl);
+               memcpy (fname + ipl, arg, len + 1);
+             }
+           else if (cpp_GCC_INCLUDE_DIR_len)
+             {
+               fname = xmalloc (cpp_GCC_INCLUDE_DIR_len + len + 1);
+               memcpy (fname, cpp_GCC_INCLUDE_DIR, cpp_GCC_INCLUDE_DIR_len);
+               memcpy (fname + cpp_GCC_INCLUDE_DIR_len, arg, len + 1);
+             }
+           else
+             fname = xstrdup (arg);
+
+           append_include_chain (pfile, CPP_OPTION (pfile, pending), fname,
+                         opt_code == OPT_iwithprefix ? SYSTEM: BRACKET, 0);
+         }
+         break;
+       case OPT_idirafter:
+         /* Add directory to end of path for includes.  */
+         append_include_chain (pfile, CPP_OPTION (pfile, pending),
+                               xstrdup (arg), AFTER, 0);
+         break;
+       case OPT_W:
+         /* Silently ignore unrecognised options */
+         if (!strcmp (argv[i], "-Wall"))
+           {
+             CPP_OPTION (pfile, warn_trigraphs) = 1;
+             CPP_OPTION (pfile, warn_comments) = 1;
+           }
+         else if (!strcmp (argv[i], "-Wtraditional"))
+           CPP_OPTION (pfile, warn_traditional) = 1;
+         else if (!strcmp (argv[i], "-Wtrigraphs"))
+           CPP_OPTION (pfile, warn_trigraphs) = 1;
+         else if (!strcmp (argv[i], "-Wcomment"))
+           CPP_OPTION (pfile, warn_comments) = 1;
+         else if (!strcmp (argv[i], "-Wcomments"))
+           CPP_OPTION (pfile, warn_comments) = 1;
+         else if (!strcmp (argv[i], "-Wundef"))
+           CPP_OPTION (pfile, warn_undef) = 1;
+         else if (!strcmp (argv[i], "-Wimport"))
+           CPP_OPTION (pfile, warn_import) = 1;
+         else if (!strcmp (argv[i], "-Wpaste"))
+           CPP_OPTION (pfile, warn_paste) = 1;
+         else if (!strcmp (argv[i], "-Werror"))
+           CPP_OPTION (pfile, warnings_are_errors) = 1;
+         else if (!strcmp (argv[i], "-Wno-traditional"))
+           CPP_OPTION (pfile, warn_traditional) = 0;
+         else if (!strcmp (argv[i], "-Wno-trigraphs"))
+           CPP_OPTION (pfile, warn_trigraphs) = 0;
+         else if (!strcmp (argv[i], "-Wno-comment"))
+           CPP_OPTION (pfile, warn_comments) = 0;
+         else if (!strcmp (argv[i], "-Wno-comments"))
+           CPP_OPTION (pfile, warn_comments) = 0;
+         else if (!strcmp (argv[i], "-Wno-undef"))
+           CPP_OPTION (pfile, warn_undef) = 0;
+         else if (!strcmp (argv[i], "-Wno-import"))
+           CPP_OPTION (pfile, warn_import) = 0;
+         else if (!strcmp (argv[i], "-Wno-paste"))
+           CPP_OPTION (pfile, warn_paste) = 0;
+         else if (!strcmp (argv[i], "-Wno-error"))
+           CPP_OPTION (pfile, warnings_are_errors) = 0;
+         break;
+       }
     }
-  }
-
   return i + 1;
 }
 
+#ifdef HOST_EBCDIC
+static int
+opt_comp (const void *p1, const void *p2)
+{
+  return strcmp (((struct cl_option *)p1)->opt_text,
+                ((struct cl_option *)p2)->opt_text);
+}
+#endif
+
 /* Handle command-line options in (argc, argv).
    Can be called multiple times, to handle multiple sets of options.
    Returns if an unrecognized option is seen.
    Returns number of strings consumed.  */
-
 int
 cpp_handle_options (pfile, argc, argv)
      cpp_reader *pfile;
@@ -1609,6 +1698,7 @@ cpp_handle_options (pfile, argc, argv)
 {
   int i;
   int strings_processed;
+
   for (i = 0; i < argc; i += strings_processed)
     {
       strings_processed = cpp_handle_option (pfile, argc - i, argv + i);
@@ -1621,7 +1711,9 @@ cpp_handle_options (pfile, argc, argv)
 static void
 print_help ()
 {
-  cpp_notice ("Usage: %s [switches] input output\n", progname);
+  fprintf (stderr, _("Usage: %s [switches] input output\n"), progname);
+  /* To keep the lines from getting too long for some compilers, limit
+     to about 500 characters (6 lines) per chunk. */
   fputs (_("\
 Switches:\n\
   -include <file>           Include the contents of <file> before other files\n\
@@ -1630,64 +1722,83 @@ Switches:\n\
   -iwithprefix <dir>        Add <dir> to the end of the system include path\n\
   -iwithprefixbefore <dir>  Add <dir> to the end of the main include path\n\
   -isystem <dir>            Add <dir> to the start of the system include path\n\
+"), stdout);
+  fputs (_("\
   -idirafter <dir>          Add <dir> to the end of the system include path\n\
   -I <dir>                  Add <dir> to the end of the main include path\n\
+  -I-                       Fine-grained include path control; see info docs\n\
   -nostdinc                 Do not search system include directories\n\
                              (dirs specified with -isystem will still be used)\n\
   -nostdinc++               Do not search system include directories for C++\n\
   -o <file>                 Put output into <file>\n\
-  -pedantic                 Issue all warnings demanded by strict ANSI C\n\
-  -traditional              Follow K&R pre-processor behaviour\n\
-  -trigraphs                Support ANSI C trigraphs\n\
+"), stdout);
+  fputs (_("\
+  -pedantic                 Issue all warnings demanded by strict ISO C\n\
+  -pedantic-errors          Issue -pedantic warnings as errors instead\n\
+  -trigraphs                Support ISO C trigraphs\n\
   -lang-c                   Assume that the input sources are in C\n\
   -lang-c89                 Assume that the input sources are in C89\n\
+"), stdout);
+  fputs (_("\
   -lang-c++                 Assume that the input sources are in C++\n\
   -lang-objc                Assume that the input sources are in ObjectiveC\n\
   -lang-objc++              Assume that the input sources are in ObjectiveC++\n\
   -lang-asm                 Assume that the input sources are in assembler\n\
-  -lang-chill               Assume that the input sources are in Chill\n\
+"), stdout);
+  fputs (_("\
   -std=<std name>           Specify the conformance standard; one of:\n\
-                            gnu89, gnu9x, c89, c9x, iso9899:1990,\n\
-                            iso9899:199409, iso9899:199x\n\
-
+                            gnu89, gnu99, c89, c99, iso9899:1990,\n\
+                            iso9899:199409, iso9899:1999\n\
   -+                        Allow parsing of C++ style features\n\
   -w                        Inhibit warning messages\n\
   -Wtrigraphs               Warn if trigraphs are encountered\n\
   -Wno-trigraphs            Do not warn about trigraphs\n\
   -Wcomment{s}              Warn if one comment starts inside another\n\
+"), stdout);
+  fputs (_("\
   -Wno-comment{s}           Do not warn about comments\n\
-  -Wtraditional             Warn if a macro argument is/would be turned into\n\
-                             a string if -traditional is specified\n\
-  -Wno-traditional          Do not warn about stringification\n\
+  -Wtraditional             Warn about features not present in traditional C\n\
+  -Wno-traditional          Do not warn about traditional C\n\
   -Wundef                   Warn if an undefined macro is used by #if\n\
   -Wno-undef                Do not warn about testing undefined macros\n\
   -Wimport                  Warn about the use of the #import directive\n\
+"), stdout);
+  fputs (_("\
   -Wno-import               Do not warn about the use of #import\n\
   -Werror                   Treat all warnings as errors\n\
   -Wno-error                Do not treat warnings as errors\n\
   -Wall                     Enable all preprocessor warnings\n\
   -M                        Generate make dependencies\n\
   -MM                       As -M, but ignore system header files\n\
+"), stdout);
+  fputs (_("\
   -MD                       As -M, but put output in a .d file\n\
   -MMD                      As -MD, but ignore system header files\n\
   -MG                       Treat missing header file as generated files\n\
-  -g                        Include #define and #undef directives in the output\n\
+  -g3                       Include #define and #undef directives in the output\n\
   -D<macro>                 Define a <macro> with string '1' as its value\n\
   -D<macro>=<val>           Define a <macro> with <val> as its value\n\
+"), stdout);
+  fputs (_("\
   -A<question> (<answer>)   Assert the <answer> to <question>\n\
+  -A-<question> (<answer>)  Disable the <answer> to <question>\n\
   -U<macro>                 Undefine <macro> \n\
-  -u or -undef              Do not predefine any macros\n\
   -v                        Display the version number\n\
   -H                        Print the name of header files as they are used\n\
   -C                        Do not discard comments\n\
+"), stdout);
+  fputs (_("\
   -dM                       Display a list of macro definitions active at end\n\
   -dD                       Preserve macro definitions in output\n\
   -dN                       As -dD except that only the names are preserved\n\
   -dI                       Include #include directives in the output\n\
-  -ifoutput                 Describe skipped code blocks in output \n\
+  -ftabstop=<number>        Distance between tab stops for column reporting\n\
   -P                        Do not generate #line directives\n\
   -$                        Do not allow '$' in identifiers\n\
+"), stdout);
+  fputs (_("\
   -remap                    Remap file names when including files.\n\
+  --version                 Display version information\n\
   -h or --help              Display this information\n\
 "), stdout);
 }
This page took 0.093547 seconds and 5 git commands to generate.