home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gcc-2.7.2.1-src.tgz / tar.out / fsf / gcc / cccp.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  287KB  |  10,517 lines

  1. /* C Compatible Compiler Preprocessor (CCCP)
  2.    Copyright (C) 1986, 87, 89, 92, 93, 94, 1995 Free Software Foundation, Inc.
  3.    Written by Paul Rubin, June 1986
  4.    Adapted to ANSI C, Richard Stallman, Jan 1987
  5.  
  6. This program is free software; you can redistribute it and/or modify it
  7. under the terms of the GNU General Public License as published by the
  8. Free Software Foundation; either version 2, or (at your option) any
  9. later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, 59 Temple Place - Suite 330,
  19. Boston, MA 02111-1307, USA.
  20.  
  21.  In other words, you are welcome to use, share and improve this program.
  22.  You are forbidden to forbid anyone else to use, share and improve
  23.  what you give them.   Help stamp out software-hoarding!  */
  24.  
  25. typedef unsigned char U_CHAR;
  26.  
  27. #ifdef EMACS
  28. #define NO_SHORTNAMES
  29. #include "../src/config.h"
  30. #ifdef open
  31. #undef open
  32. #undef read
  33. #undef write
  34. #endif /* open */
  35. #endif /* EMACS */
  36.  
  37. /* The macro EMACS is defined when cpp is distributed as part of Emacs,
  38.    for the sake of machines with limited C compilers.  */
  39. #ifndef EMACS
  40. #include "config.h"
  41. #endif /* not EMACS */
  42.  
  43. /* The ABS_FILENAME macro returns whether or not a filename 
  44.    starting at "begin" and "length" characters long, is an
  45.    absolute pathname. */
  46. #ifndef ABS_FILENAME
  47. #ifdef DIR_SEPARATOR
  48. #define ABS_FILENAME(begin,length) (*(begin) == '/' || *(begin) == DIR_SEPARATOR)
  49. #else
  50. #define ABS_FILENAME(begin,length) (*(begin) == '/')
  51. #endif
  52. #endif
  53.  
  54. #ifndef STANDARD_INCLUDE_DIR
  55. #define STANDARD_INCLUDE_DIR "/usr/include"
  56. #endif
  57.  
  58. #ifndef LOCAL_INCLUDE_DIR
  59. #define LOCAL_INCLUDE_DIR "/usr/local/include"
  60. #endif
  61.  
  62. #if 0 /* We can't get ptrdiff_t, so I arranged not to need PTR_INT_TYPE.  */
  63. #ifdef __STDC__
  64. #define PTR_INT_TYPE ptrdiff_t
  65. #else
  66. #define PTR_INT_TYPE long
  67. #endif
  68. #endif /* 0 */
  69.  
  70. #include "pcp.h"
  71.  
  72. /* By default, colon separates directories in a path.  */
  73. #ifndef PATH_SEPARATOR
  74. #define PATH_SEPARATOR ':'
  75. #endif
  76.  
  77. #include <sys/types.h>
  78. #include <sys/stat.h>
  79. #include <ctype.h>
  80. #include <stdio.h>
  81. #include <signal.h>
  82.  
  83. /* The following symbols should be autoconfigured:
  84.     HAVE_FCNTL_H
  85.     HAVE_STDLIB_H
  86.     HAVE_SYS_TIME_H
  87.     HAVE_UNISTD_H
  88.     STDC_HEADERS
  89.     TIME_WITH_SYS_TIME
  90.    In the mean time, we'll get by with approximations based
  91.    on existing GCC configuration symbols.  */
  92.  
  93. #ifdef POSIX
  94. # ifndef HAVE_STDLIB_H
  95. # define HAVE_STDLIB_H 1
  96. # endif
  97. # ifndef HAVE_UNISTD_H
  98. # define HAVE_UNISTD_H 1
  99. # endif
  100. # ifndef STDC_HEADERS
  101. # define STDC_HEADERS 1
  102. # endif
  103. #endif /* defined (POSIX) */
  104.  
  105. #if defined (POSIX) || (defined (USG) && !defined (VMS))
  106. # ifndef HAVE_FCNTL_H
  107. # define HAVE_FCNTL_H 1
  108. # endif
  109. #endif
  110.  
  111. #ifndef RLIMIT_STACK
  112. # include <time.h>
  113. #else
  114. # if TIME_WITH_SYS_TIME
  115. #  include <sys/time.h>
  116. #  include <time.h>
  117. # else
  118. #  if HAVE_SYS_TIME_H
  119. #   include <sys/time.h>
  120. #  else
  121. #   include <time.h>
  122. #  endif
  123. # endif
  124. # include <sys/resource.h>
  125. #endif
  126.  
  127. #if HAVE_FCNTL_H
  128. # include <fcntl.h>
  129. #endif
  130.  
  131. /* This defines "errno" properly for VMS, and gives us EACCES. */
  132. #include <errno.h>
  133.  
  134. #if HAVE_STDLIB_H
  135. # include <stdlib.h>
  136. #else
  137. char *getenv ();
  138. #endif
  139.  
  140. #if STDC_HEADERS
  141. # include <string.h>
  142. # ifndef bcmp
  143. # define bcmp(a, b, n) memcmp (a, b, n)
  144. # endif
  145. # ifndef bcopy
  146. # define bcopy(s, d, n) memcpy (d, s, n)
  147. # endif
  148. # ifndef bzero
  149. # define bzero(d, n) memset (d, 0, n)
  150. # endif
  151. #else /* !STDC_HEADERS */
  152. char *index ();
  153. char *rindex ();
  154.  
  155. # if !defined (BSTRING) && (defined (USG) || defined (VMS))
  156.  
  157. #  ifndef bcmp
  158. #  define bcmp my_bcmp
  159. static int
  160. my_bcmp (a, b, n)
  161.      register char *a;
  162.      register char *b;
  163.      register unsigned n;
  164. {
  165.    while (n-- > 0)
  166.      if (*a++ != *b++)
  167.        return 1;
  168.  
  169.    return 0;
  170. }
  171. #  endif /* !defined (bcmp) */
  172.  
  173. #  ifndef bcopy
  174. #  define bcopy my_bcopy
  175. static void
  176. my_bcopy (s, d, n)
  177.      register char *s;
  178.      register char *d;
  179.      register unsigned n;
  180. {
  181.   while (n-- > 0)
  182.     *d++ = *s++;
  183. }
  184. #  endif /* !defined (bcopy) */
  185.  
  186. #  ifndef bzero
  187. #  define bzero my_bzero
  188. static void
  189. my_bzero (b, length)
  190.      register char *b;
  191.      register unsigned length;
  192. {
  193.   while (length-- > 0)
  194.     *b++ = 0;
  195. }
  196. #  endif /* !defined (bzero) */
  197.  
  198. # endif /* !defined (BSTRING) && (defined (USG) || defined (VMS)) */
  199. #endif /* ! STDC_HEADERS */
  200.  
  201. #if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 6)
  202. # define __attribute__(x)
  203. #endif
  204.  
  205. #ifndef PROTO
  206. # if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
  207. #  define PROTO(ARGS) ARGS
  208. # else
  209. #  define PROTO(ARGS) ()
  210. # endif
  211. #endif
  212.  
  213. #if defined (__STDC__) && defined (HAVE_VPRINTF)
  214. # include <stdarg.h>
  215. # define VA_START(va_list, var) va_start (va_list, var)
  216. # define PRINTF_ALIST(msg) char *msg, ...
  217. # define PRINTF_DCL(msg)
  218. # define PRINTF_PROTO(ARGS, m, n) PROTO (ARGS) __attribute__ ((format (printf, m, n)))
  219. #else
  220. # include <varargs.h>
  221. # define VA_START(va_list, var) va_start (va_list)
  222. # define PRINTF_ALIST(msg) msg, va_alist
  223. # define PRINTF_DCL(msg) char *msg; va_dcl
  224. # define PRINTF_PROTO(ARGS, m, n) () __attribute__ ((format (printf, m, n)))
  225. # define vfprintf(file, msg, args) \
  226.     { \
  227.       char *a0 = va_arg(args, char *); \
  228.       char *a1 = va_arg(args, char *); \
  229.       char *a2 = va_arg(args, char *); \
  230.       char *a3 = va_arg(args, char *); \
  231.       fprintf (file, msg, a0, a1, a2, a3); \
  232.     }
  233. #endif
  234.  
  235. #define PRINTF_PROTO_1(ARGS) PRINTF_PROTO(ARGS, 1, 2)
  236. #define PRINTF_PROTO_2(ARGS) PRINTF_PROTO(ARGS, 2, 3)
  237. #define PRINTF_PROTO_3(ARGS) PRINTF_PROTO(ARGS, 3, 4)
  238.  
  239. #if HAVE_UNISTD_H
  240. # include <unistd.h>
  241. #endif
  242.  
  243. /* VMS-specific definitions */
  244. #ifdef VMS
  245. #include <descrip.h>
  246. #define O_RDONLY    0    /* Open arg for Read/Only  */
  247. #define O_WRONLY    1    /* Open arg for Write/Only */
  248. #define read(fd,buf,size)    VMS_read (fd,buf,size)
  249. #define write(fd,buf,size)    VMS_write (fd,buf,size)
  250. #define open(fname,mode,prot)    VMS_open (fname,mode,prot)
  251. #define fopen(fname,mode)    VMS_fopen (fname,mode)
  252. #define freopen(fname,mode,ofile) VMS_freopen (fname,mode,ofile)
  253. #define strncat(dst,src,cnt) VMS_strncat (dst,src,cnt)
  254. #define fstat(fd,stbuf)        VMS_fstat (fd,stbuf)
  255. static int VMS_fstat (), VMS_stat ();
  256. static char * VMS_strncat ();
  257. static int VMS_read ();
  258. static int VMS_write ();
  259. static int VMS_open ();
  260. static FILE * VMS_fopen ();
  261. static FILE * VMS_freopen ();
  262. static void hack_vms_include_specification ();
  263. typedef struct { unsigned :16, :16, :16; } vms_ino_t;
  264. #define ino_t vms_ino_t
  265. #define INCLUDE_LEN_FUDGE 10    /* leave room for VMS syntax conversion */
  266. #ifdef __GNUC__
  267. #define BSTRING            /* VMS/GCC supplies the bstring routines */
  268. #endif /* __GNUC__ */
  269. #endif /* VMS */
  270.  
  271. #ifndef O_RDONLY
  272. #define O_RDONLY 0
  273. #endif
  274.  
  275. #undef MIN
  276. #undef MAX
  277. #define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
  278. #define MAX(X,Y) ((X) > (Y) ? (X) : (Y))
  279.  
  280. /* Find the largest host integer type and set its size and type.  */
  281.  
  282. #ifndef HOST_BITS_PER_WIDE_INT
  283.  
  284. #if HOST_BITS_PER_LONG > HOST_BITS_PER_INT
  285. #define HOST_BITS_PER_WIDE_INT HOST_BITS_PER_LONG
  286. #define HOST_WIDE_INT long
  287. #else
  288. #define HOST_BITS_PER_WIDE_INT HOST_BITS_PER_INT
  289. #define HOST_WIDE_INT int
  290. #endif
  291.  
  292. #endif
  293.  
  294. #ifndef S_ISREG
  295. #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
  296. #endif
  297.  
  298. #ifndef S_ISDIR
  299. #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
  300. #endif
  301.  
  302. /* Define a generic NULL if one hasn't already been defined.  */
  303.  
  304. #ifndef NULL
  305. #define NULL 0
  306. #endif
  307.  
  308. #ifndef GENERIC_PTR
  309. #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
  310. #define GENERIC_PTR void *
  311. #else
  312. #define GENERIC_PTR char *
  313. #endif
  314. #endif
  315.  
  316. #ifndef NULL_PTR
  317. #define NULL_PTR ((GENERIC_PTR)0)
  318. #endif
  319.  
  320. #ifndef INCLUDE_LEN_FUDGE
  321. #define INCLUDE_LEN_FUDGE 0
  322. #endif
  323.  
  324. #ifndef OPEN_CASE_SENSITIVE
  325. /* Default is standard open() */
  326. #define OPEN_CASE_SENSITIVE open
  327. #endif
  328.  
  329. /* External declarations.  */
  330.  
  331. extern char *version_string;
  332. #ifndef VMS
  333. #ifndef HAVE_STRERROR
  334. extern int sys_nerr;
  335. #if defined(bsd4_4)
  336. extern const char *const sys_errlist[];
  337. #else
  338. extern char *sys_errlist[];
  339. #endif
  340. #else    /* HAVE_STRERROR */
  341. char *strerror ();
  342. #endif
  343. #else    /* VMS */
  344. char *strerror (int,...);
  345. #endif
  346. int parse_escape PROTO((char **));
  347. HOST_WIDE_INT parse_c_expression PROTO((char *));
  348.  
  349. #ifndef errno
  350. extern int errno;
  351. #endif
  352.  
  353. /* Name under which this program was invoked.  */
  354.  
  355. static char *progname;
  356.  
  357. /* Nonzero means use extra default include directories for C++.  */
  358.  
  359. static int cplusplus;
  360.  
  361. /* Nonzero means handle cplusplus style comments */
  362.  
  363. static int cplusplus_comments;
  364.  
  365. /* Nonzero means handle #import, for objective C.  */
  366.  
  367. static int objc;
  368.  
  369. /* Nonzero means this is an assembly file, and allow
  370.    unknown directives, which could be comments.  */
  371.  
  372. static int lang_asm;
  373.  
  374. /* Current maximum length of directory names in the search path
  375.    for include files.  (Altered as we get more of them.)  */
  376.  
  377. static int max_include_len;
  378.  
  379. /* Nonzero means turn NOTREACHED into #pragma NOTREACHED etc */
  380.  
  381. static int for_lint = 0;
  382.  
  383. /* Nonzero means copy comments into the output file.  */
  384.  
  385. static int put_out_comments = 0;
  386.  
  387. /* Nonzero means don't process the ANSI trigraph sequences.  */
  388.  
  389. static int no_trigraphs = 0;
  390.  
  391. /* Nonzero means print the names of included files rather than
  392.    the preprocessed output.  1 means just the #include "...",
  393.    2 means #include <...> as well.  */
  394.  
  395. static int print_deps = 0;
  396.  
  397. /* Nonzero if missing .h files in -M output are assumed to be generated
  398.    files and not errors.  */
  399.  
  400. static int print_deps_missing_files = 0;
  401.  
  402. /* Nonzero means print names of header files (-H).  */
  403.  
  404. static int print_include_names = 0;
  405.  
  406. /* Nonzero means don't output line number information.  */
  407.  
  408. static int no_line_directives;
  409.  
  410. /* Nonzero means output the text in failing conditionals,
  411.    inside #failed ... #endfailed.  */
  412.  
  413. static int output_conditionals;
  414.  
  415. /* dump_only means inhibit output of the preprocessed text
  416.              and instead output the definitions of all user-defined
  417.              macros in a form suitable for use as input to cccp.
  418.    dump_names means pass #define and the macro name through to output.
  419.    dump_definitions means pass the whole definition (plus #define) through
  420. */
  421.  
  422. static enum {dump_none, dump_only, dump_names, dump_definitions}
  423.      dump_macros = dump_none;
  424.  
  425. /* Nonzero means pass all #define and #undef directives which we actually
  426.    process through to the output stream.  This feature is used primarily
  427.    to allow cc1 to record the #defines and #undefs for the sake of
  428.    debuggers which understand about preprocessor macros, but it may
  429.    also be useful with -E to figure out how symbols are defined, and
  430.    where they are defined.  */
  431. static int debug_output = 0;
  432.  
  433. /* Nonzero indicates special processing used by the pcp program.  The
  434.    special effects of this mode are: 
  435.      
  436.      Inhibit all macro expansion, except those inside #if directives.
  437.  
  438.      Process #define directives normally, and output their contents 
  439.      to the output file.
  440.  
  441.      Output preconditions to pcp_outfile indicating all the relevant
  442.      preconditions for use of this file in a later cpp run.
  443. */
  444. static FILE *pcp_outfile;
  445.  
  446. /* Nonzero means we are inside an IF during a -pcp run.  In this mode
  447.    macro expansion is done, and preconditions are output for all macro
  448.    uses requiring them. */
  449. static int pcp_inside_if;
  450.  
  451. /* Nonzero means never to include precompiled files.
  452.    This is 1 since there's no way now to make precompiled files,
  453.    so it's not worth testing for them.  */
  454. static int no_precomp = 1;
  455.  
  456. /* Nonzero means give all the error messages the ANSI standard requires.  */
  457.  
  458. int pedantic;
  459.  
  460. /* Nonzero means try to make failure to fit ANSI C an error.  */
  461.  
  462. static int pedantic_errors;
  463.  
  464. /* Nonzero means don't print warning messages.  -w.  */
  465.  
  466. static int inhibit_warnings = 0;
  467.  
  468. /* Nonzero means warn if slash-star appears in a comment.  */
  469.  
  470. static int warn_comments;
  471.  
  472. /* Nonzero means warn if a macro argument is (or would be)
  473.    stringified with -traditional.  */
  474.  
  475. static int warn_stringify;
  476.  
  477. /* Nonzero means warn if there are any trigraphs.  */
  478.  
  479. static int warn_trigraphs;
  480.  
  481. /* Nonzero means warn if #import is used.  */
  482.  
  483. static int warn_import = 1;
  484.  
  485. /* Nonzero means turn warnings into errors.  */
  486.  
  487. static int warnings_are_errors;
  488.  
  489. /* Nonzero means try to imitate old fashioned non-ANSI preprocessor.  */
  490.  
  491. int traditional;
  492.  
  493. /* Nonzero causes output not to be done,
  494.    but directives such as #define that have side effects
  495.    are still obeyed.  */
  496.  
  497. static int no_output;
  498.  
  499. /* Nonzero means this file was included with a -imacros or -include
  500.    command line and should not be recorded as an include file.  */
  501.  
  502. static int no_record_file;
  503.  
  504. /* Nonzero means that we have finished processing the command line options.
  505.    This flag is used to decide whether or not to issue certain errors
  506.    and/or warnings.  */
  507.  
  508. static int done_initializing = 0;
  509.  
  510. /* Line where a newline was first seen in a string constant.  */
  511.  
  512. static int multiline_string_line = 0;
  513.  
  514. /* I/O buffer structure.
  515.    The `fname' field is nonzero for source files and #include files
  516.    and for the dummy text used for -D and -U.
  517.    It is zero for rescanning results of macro expansion
  518.    and for expanding macro arguments.  */
  519. #define INPUT_STACK_MAX 400
  520. static struct file_buf {
  521.   char *fname;
  522.   /* Filename specified with #line directive.  */
  523.   char *nominal_fname;
  524.   /* Record where in the search path this file was found.
  525.      For #include_next.  */
  526.   struct file_name_list *dir;
  527.   int lineno;
  528.   int length;
  529.   U_CHAR *buf;
  530.   U_CHAR *bufp;
  531.   /* Macro that this level is the expansion of.
  532.      Included so that we can reenable the macro
  533.      at the end of this level.  */
  534.   struct hashnode *macro;
  535.   /* Value of if_stack at start of this file.
  536.      Used to prohibit unmatched #endif (etc) in an include file.  */
  537.   struct if_stack *if_stack;
  538.   /* Object to be freed at end of input at this level.  */
  539.   U_CHAR *free_ptr;
  540.   /* True if this is a header file included using <FILENAME>.  */
  541.   char system_header_p;
  542. } instack[INPUT_STACK_MAX];
  543.  
  544. static int last_error_tick;       /* Incremented each time we print it.  */
  545. static int input_file_stack_tick;  /* Incremented when the status changes.  */
  546.  
  547. /* Current nesting level of input sources.
  548.    `instack[indepth]' is the level currently being read.  */
  549. static int indepth = -1;
  550. #define CHECK_DEPTH(code) \
  551.   if (indepth >= (INPUT_STACK_MAX - 1))                    \
  552.     {                                    \
  553.       error_with_line (line_for_error (instack[indepth].lineno),    \
  554.                "macro or `#include' recursion too deep");    \
  555.       code;                                \
  556.     }
  557.  
  558. /* Current depth in #include directives that use <...>.  */
  559. static int system_include_depth = 0;
  560.  
  561. typedef struct file_buf FILE_BUF;
  562.  
  563. /* The output buffer.  Its LENGTH field is the amount of room allocated
  564.    for the buffer, not the number of chars actually present.  To get
  565.    that, subtract outbuf.buf from outbuf.bufp. */
  566.  
  567. #define OUTBUF_SIZE 10    /* initial size of output buffer */
  568. static FILE_BUF outbuf;
  569.  
  570. /* Grow output buffer OBUF points at
  571.    so it can hold at least NEEDED more chars.  */
  572.  
  573. #define check_expand(OBUF, NEEDED)  \
  574.   (((OBUF)->length - ((OBUF)->bufp - (OBUF)->buf) <= (NEEDED))   \
  575.    ? grow_outbuf ((OBUF), (NEEDED)) : 0)
  576.  
  577. struct file_name_list
  578.   {
  579.     struct file_name_list *next;
  580.     char *fname;
  581.     /* If the following is nonzero, it is a macro name.
  582.        Don't include the file again if that macro is defined.  */
  583.     U_CHAR *control_macro;
  584.     /* If the following is nonzero, it is a C-language system include
  585.        directory.  */
  586.     int c_system_include_path;
  587.     /* Mapping of file names for this directory.  */
  588.     struct file_name_map *name_map;
  589.     /* Non-zero if name_map is valid.  */
  590.     int got_name_map;
  591.   };
  592.  
  593. /* #include "file" looks in source file dir, then stack. */
  594. /* #include <file> just looks in the stack. */
  595. /* -I directories are added to the end, then the defaults are added. */
  596. /* The */
  597. static struct default_include {
  598.   char *fname;            /* The name of the directory.  */
  599.   int cplusplus;        /* Only look here if we're compiling C++.  */
  600.   int cxx_aware;        /* Includes in this directory don't need to
  601.                    be wrapped in extern "C" when compiling
  602.                    C++.  */
  603. } include_defaults_array[]
  604. #ifdef INCLUDE_DEFAULTS
  605.   = INCLUDE_DEFAULTS;
  606. #else
  607.   = {
  608.     /* Pick up GNU C++ specific include files for specific gcc release. */
  609.     { GPLUSPLUS_INCLUDE_DIR_SPECIFIC, 1, 1},
  610.     /* Pick up GNU C++ specific include files.  */
  611.     { GPLUSPLUS_INCLUDE_DIR, 1, 1 },
  612. #ifdef CROSS_COMPILE
  613.     /* This is the dir for fixincludes.  Put it just before
  614.        the files that we fix.  */
  615.     { GCC_INCLUDE_DIR, 0, 0 },
  616.     /* For cross-compilation, this dir name is generated
  617.        automatically in Makefile.in.  */
  618.     { CROSS_INCLUDE_DIR, 0, 0 },
  619.     /* This is another place that the target system's headers might be.  */
  620.     { TOOL_INCLUDE_DIR, 0, 0 },
  621. #else /* not CROSS_COMPILE */
  622.     /* This should be /usr/local/include and should come before
  623.        the fixincludes-fixed header files.  */
  624.     { LOCAL_INCLUDE_DIR, 0, 1 },
  625.     /* This is here ahead of GCC_INCLUDE_DIR because assert.h goes here.
  626.        Likewise, behind LOCAL_INCLUDE_DIR, where glibc puts its assert.h.  */
  627.     { TOOL_INCLUDE_DIR, 0, 0 },
  628.     /* This is the dir for fixincludes.  Put it just before
  629.        the files that we fix.  */
  630.     { GCC_INCLUDE_DIR, 0, 0 },
  631.     /* Some systems have an extra dir of include files.  */
  632. #ifdef SYSTEM_INCLUDE_DIR
  633.     { SYSTEM_INCLUDE_DIR, 0, 0 },
  634. #endif
  635.     { STANDARD_INCLUDE_DIR, 0, 0 },
  636. #endif /* not CROSS_COMPILE */
  637.     { 0, 0, 0 }
  638.     };
  639. #endif /* no INCLUDE_DEFAULTS */
  640.  
  641. /* The code looks at the defaults through this pointer, rather than through
  642.    the constant structure above.  This pointer gets changed if an environment
  643.    variable specifies other defaults.  */
  644. static struct default_include *include_defaults = include_defaults_array;
  645.  
  646. static struct file_name_list *include = 0;    /* First dir to search */
  647.     /* First dir to search for <file> */
  648. /* This is the first element to use for #include <...>.
  649.    If it is 0, use the entire chain for such includes.  */
  650. static struct file_name_list *first_bracket_include = 0;
  651. /* This is the first element in the chain that corresponds to
  652.    a directory of system header files.  */
  653. static struct file_name_list *first_system_include = 0;
  654. static struct file_name_list *last_include = 0;    /* Last in chain */
  655.  
  656. /* Chain of include directories to put at the end of the other chain.  */
  657. static struct file_name_list *after_include = 0;
  658. static struct file_name_list *last_after_include = 0;    /* Last in chain */
  659.  
  660. /* Chain to put at the start of the system include files.  */
  661. static struct file_name_list *before_system = 0;
  662. static struct file_name_list *last_before_system = 0;    /* Last in chain */
  663.  
  664. /* List of included files that contained #pragma once.  */
  665. static struct file_name_list *dont_repeat_files = 0;
  666.  
  667. /* List of other included files.
  668.    If ->control_macro if nonzero, the file had a #ifndef
  669.    around the entire contents, and ->control_macro gives the macro name.  */
  670. static struct file_name_list *all_include_files = 0;
  671.  
  672. /* Directory prefix that should replace `/usr' in the standard
  673.    include file directories.  */
  674. static char *include_prefix;
  675.  
  676. /* Global list of strings read in from precompiled files.  This list
  677.    is kept in the order the strings are read in, with new strings being
  678.    added at the end through stringlist_tailp.  We use this list to output
  679.    the strings at the end of the run. 
  680. */
  681. static STRINGDEF *stringlist;
  682. static STRINGDEF **stringlist_tailp = &stringlist;
  683.  
  684.  
  685. /* Structure returned by create_definition */
  686. typedef struct macrodef MACRODEF;
  687. struct macrodef
  688. {
  689.   struct definition *defn;
  690.   U_CHAR *symnam;
  691.   int symlen;
  692. };
  693.  
  694. enum sharp_token_type {
  695.   NO_SHARP_TOKEN = 0,        /* token not present */
  696.  
  697.   SHARP_TOKEN = '#',        /* token spelled with # only */
  698.   WHITE_SHARP_TOKEN,        /* token spelled with # and white space */
  699.  
  700.   PERCENT_COLON_TOKEN = '%',    /* token spelled with %: only */
  701.   WHITE_PERCENT_COLON_TOKEN    /* token spelled with %: and white space */
  702. };
  703.  
  704. /* Structure allocated for every #define.  For a simple replacement
  705.    such as
  706.        #define foo bar ,
  707.    nargs = -1, the `pattern' list is null, and the expansion is just
  708.    the replacement text.  Nargs = 0 means a functionlike macro with no args,
  709.    e.g.,
  710.        #define getchar() getc (stdin) .
  711.    When there are args, the expansion is the replacement text with the
  712.    args squashed out, and the reflist is a list describing how to
  713.    build the output from the input: e.g., "3 chars, then the 1st arg,
  714.    then 9 chars, then the 3rd arg, then 0 chars, then the 2nd arg".
  715.    The chars here come from the expansion.  Whatever is left of the
  716.    expansion after the last arg-occurrence is copied after that arg.
  717.    Note that the reflist can be arbitrarily long---
  718.    its length depends on the number of times the arguments appear in
  719.    the replacement text, not how many args there are.  Example:
  720.    #define f(x) x+x+x+x+x+x+x would have replacement text "++++++" and
  721.    pattern list
  722.      { (0, 1), (1, 1), (1, 1), ..., (1, 1), NULL }
  723.    where (x, y) means (nchars, argno). */
  724.  
  725. typedef struct definition DEFINITION;
  726. struct definition {
  727.   int nargs;
  728.   int length;            /* length of expansion string */
  729.   int predefined;        /* True if the macro was builtin or */
  730.                 /* came from the command line */
  731.   U_CHAR *expansion;
  732.   int line;            /* Line number of definition */
  733.   char *file;            /* File of definition */
  734.   char rest_args;        /* Nonzero if last arg. absorbs the rest */
  735.   struct reflist {
  736.     struct reflist *next;
  737.  
  738.     enum sharp_token_type stringify;    /* set if a # operator before arg */
  739.     enum sharp_token_type raw_before;    /* set if a ## operator before arg */
  740.     enum sharp_token_type raw_after;    /* set if a ## operator after arg */
  741.  
  742.     char rest_args;        /* Nonzero if this arg. absorbs the rest */
  743.     int nchars;            /* Number of literal chars to copy before
  744.                    this arg occurrence.  */
  745.     int argno;            /* Number of arg to substitute (origin-0) */
  746.   } *pattern;
  747.   union {
  748.     /* Names of macro args, concatenated in reverse order
  749.        with comma-space between them.
  750.        The only use of this is that we warn on redefinition
  751.        if this differs between the old and new definitions.  */
  752.     U_CHAR *argnames;
  753.   } args;
  754. };
  755.  
  756. /* different kinds of things that can appear in the value field
  757.    of a hash node.  Actually, this may be useless now. */
  758. union hashval {
  759.   char *cpval;
  760.   DEFINITION *defn;
  761.   KEYDEF *keydef;
  762. };
  763.  
  764. /*
  765.  * special extension string that can be added to the last macro argument to 
  766.  * allow it to absorb the "rest" of the arguments when expanded.  Ex:
  767.  *         #define wow(a, b...)        process (b, a, b)
  768.  *        { wow (1, 2, 3); }    ->    { process (2, 3, 1, 2, 3); }
  769.  *        { wow (one, two); }    ->    { process (two, one, two); }
  770.  * if this "rest_arg" is used with the concat token '##' and if it is not
  771.  * supplied then the token attached to with ## will not be outputted.  Ex:
  772.  *         #define wow (a, b...)        process (b ## , a, ## b)
  773.  *        { wow (1, 2); }        ->    { process (2, 1, 2); }
  774.  *        { wow (one); }        ->    { process (one); {
  775.  */
  776. static char rest_extension[] = "...";
  777. #define REST_EXTENSION_LENGTH    (sizeof (rest_extension) - 1)
  778.  
  779. /* The structure of a node in the hash table.  The hash table
  780.    has entries for all tokens defined by #define directives (type T_MACRO),
  781.    plus some special tokens like __LINE__ (these each have their own
  782.    type, and the appropriate code is run when that type of node is seen.
  783.    It does not contain control words like "#define", which are recognized
  784.    by a separate piece of code. */
  785.  
  786. /* different flavors of hash nodes --- also used in keyword table */
  787. enum node_type {
  788.  T_DEFINE = 1,    /* the `#define' keyword */
  789.  T_INCLUDE,    /* the `#include' keyword */
  790.  T_INCLUDE_NEXT, /* the `#include_next' keyword */
  791.  T_IMPORT,      /* the `#import' keyword */
  792.  T_IFDEF,    /* the `#ifdef' keyword */
  793.  T_IFNDEF,    /* the `#ifndef' keyword */
  794.  T_IF,        /* the `#if' keyword */
  795.  T_ELSE,    /* `#else' */
  796.  T_PRAGMA,    /* `#pragma' */
  797.  T_ELIF,    /* `#elif' */
  798.  T_UNDEF,    /* `#undef' */
  799.  T_LINE,    /* `#line' */
  800.  T_ERROR,    /* `#error' */
  801.  T_WARNING,    /* `#warning' */
  802.  T_ENDIF,    /* `#endif' */
  803.  T_SCCS,    /* `#sccs', used on system V.  */
  804.  T_IDENT,    /* `#ident', used on system V.  */
  805.  T_ASSERT,    /* `#assert', taken from system V.  */
  806.  T_UNASSERT,    /* `#unassert', taken from system V.  */
  807.  T_SPECLINE,    /* special symbol `__LINE__' */
  808.  T_DATE,    /* `__DATE__' */
  809.  T_FILE,    /* `__FILE__' */
  810.  T_BASE_FILE,    /* `__BASE_FILE__' */
  811.  T_INCLUDE_LEVEL, /* `__INCLUDE_LEVEL__' */
  812.  T_VERSION,    /* `__VERSION__' */
  813.  T_SIZE_TYPE,   /* `__SIZE_TYPE__' */
  814.  T_PTRDIFF_TYPE,   /* `__PTRDIFF_TYPE__' */
  815.  T_WCHAR_TYPE,   /* `__WCHAR_TYPE__' */
  816.  T_USER_LABEL_PREFIX_TYPE, /* `__USER_LABEL_PREFIX__' */
  817.  T_REGISTER_PREFIX_TYPE,   /* `__REGISTER_PREFIX__' */
  818.  T_IMMEDIATE_PREFIX_TYPE,  /* `__IMMEDIATE_PREFIX__' */
  819.  T_TIME,    /* `__TIME__' */
  820.  T_CONST,    /* Constant value, used by `__STDC__' */
  821.  T_MACRO,    /* macro defined by `#define' */
  822.  T_DISABLED,    /* macro temporarily turned off for rescan */
  823.  T_SPEC_DEFINED, /* special `defined' macro for use in #if statements */
  824.  T_PCSTRING,    /* precompiled string (hashval is KEYDEF *) */
  825.  T_UNUSED    /* Used for something not defined.  */
  826.  };
  827.  
  828. struct hashnode {
  829.   struct hashnode *next;    /* double links for easy deletion */
  830.   struct hashnode *prev;
  831.   struct hashnode **bucket_hdr;    /* also, a back pointer to this node's hash
  832.                    chain is kept, in case the node is the head
  833.                    of the chain and gets deleted. */
  834.   enum node_type type;        /* type of special token */
  835.   int length;            /* length of token, for quick comparison */
  836.   U_CHAR *name;            /* the actual name */
  837.   union hashval value;        /* pointer to expansion, or whatever */
  838. };
  839.  
  840. typedef struct hashnode HASHNODE;
  841.  
  842. /* Some definitions for the hash table.  The hash function MUST be
  843.    computed as shown in hashf () below.  That is because the rescan
  844.    loop computes the hash value `on the fly' for most tokens,
  845.    in order to avoid the overhead of a lot of procedure calls to
  846.    the hashf () function.  Hashf () only exists for the sake of
  847.    politeness, for use when speed isn't so important. */
  848.  
  849. #define HASHSIZE 1403
  850. static HASHNODE *hashtab[HASHSIZE];
  851. #define HASHSTEP(old, c) ((old << 2) + c)
  852. #define MAKE_POS(v) (v & 0x7fffffff) /* make number positive */
  853.  
  854. /* Symbols to predefine.  */
  855.  
  856. #ifdef CPP_PREDEFINES
  857. static char *predefs = CPP_PREDEFINES;
  858. #else
  859. static char *predefs = "";
  860. #endif
  861.  
  862. /* We let tm.h override the types used here, to handle trivial differences
  863.    such as the choice of unsigned int or long unsigned int for size_t.
  864.    When machines start needing nontrivial differences in the size type,
  865.    it would be best to do something here to figure out automatically
  866.    from other information what type to use.  */
  867.  
  868. /* The string value for __SIZE_TYPE__.  */
  869.  
  870. #ifndef SIZE_TYPE
  871. #define SIZE_TYPE "long unsigned int"
  872. #endif
  873.  
  874. /* The string value for __PTRDIFF_TYPE__.  */
  875.  
  876. #ifndef PTRDIFF_TYPE
  877. #define PTRDIFF_TYPE "long int"
  878. #endif
  879.  
  880. /* The string value for __WCHAR_TYPE__.  */
  881.  
  882. #ifndef WCHAR_TYPE
  883. #define WCHAR_TYPE "int"
  884. #endif
  885. char * wchar_type = WCHAR_TYPE;
  886. #undef WCHAR_TYPE
  887.  
  888. /* The string value for __USER_LABEL_PREFIX__ */
  889.  
  890. #ifndef USER_LABEL_PREFIX
  891. #define USER_LABEL_PREFIX ""
  892. #endif
  893.  
  894. /* The string value for __REGISTER_PREFIX__ */
  895.  
  896. #ifndef REGISTER_PREFIX
  897. #define REGISTER_PREFIX ""
  898. #endif
  899.  
  900. /* The string value for __IMMEDIATE_PREFIX__ */
  901.  
  902. #ifndef IMMEDIATE_PREFIX
  903. #define IMMEDIATE_PREFIX ""
  904. #endif
  905.  
  906. /* In the definition of a #assert name, this structure forms
  907.    a list of the individual values asserted.
  908.    Each value is itself a list of "tokens".
  909.    These are strings that are compared by name.  */
  910.  
  911. struct tokenlist_list {
  912.   struct tokenlist_list *next;
  913.   struct arglist *tokens;
  914. };
  915.  
  916. struct assertion_hashnode {
  917.   struct assertion_hashnode *next;    /* double links for easy deletion */
  918.   struct assertion_hashnode *prev;
  919.   /* also, a back pointer to this node's hash
  920.      chain is kept, in case the node is the head
  921.      of the chain and gets deleted. */
  922.   struct assertion_hashnode **bucket_hdr;
  923.   int length;            /* length of token, for quick comparison */
  924.   U_CHAR *name;            /* the actual name */
  925.   /* List of token-sequences.  */
  926.   struct tokenlist_list *value;
  927. };
  928.  
  929. typedef struct assertion_hashnode ASSERTION_HASHNODE;
  930.  
  931. /* Some definitions for the hash table.  The hash function MUST be
  932.    computed as shown in hashf below.  That is because the rescan
  933.    loop computes the hash value `on the fly' for most tokens,
  934.    in order to avoid the overhead of a lot of procedure calls to
  935.    the hashf function.  hashf only exists for the sake of
  936.    politeness, for use when speed isn't so important. */
  937.  
  938. #define ASSERTION_HASHSIZE 37
  939. static ASSERTION_HASHNODE *assertion_hashtab[ASSERTION_HASHSIZE];
  940.  
  941. /* Nonzero means inhibit macroexpansion of what seem to be
  942.    assertion tests, in rescan.  For #if.  */
  943. static int assertions_flag;
  944.  
  945. /* `struct directive' defines one #-directive, including how to handle it.  */
  946.  
  947. #define DO_PROTO PROTO((U_CHAR *, U_CHAR *, FILE_BUF *, struct directive *))
  948.  
  949. struct directive {
  950.   int length;            /* Length of name */
  951.   int (*func) DO_PROTO;    /* Function to handle directive */
  952.   char *name;            /* Name of directive */
  953.   enum node_type type;        /* Code which describes which directive. */
  954.   char angle_brackets;        /* Nonzero => <...> is special.  */
  955.   char traditional_comments;    /* Nonzero: keep comments if -traditional.  */
  956.   char pass_thru;        /* Copy preprocessed directive to output file.  */
  957. };
  958.  
  959. /* These functions are declared to return int instead of void since they
  960.    are going to be placed in the table and some old compilers have trouble with
  961.    pointers to functions returning void.  */
  962.  
  963. static int do_assert DO_PROTO;
  964. static int do_define DO_PROTO;
  965. static int do_elif DO_PROTO;
  966. static int do_else DO_PROTO;
  967. static int do_endif DO_PROTO;
  968. static int do_error DO_PROTO;
  969. static int do_ident DO_PROTO;
  970. static int do_if DO_PROTO;
  971. static int do_include DO_PROTO;
  972. static int do_line DO_PROTO;
  973. static int do_pragma DO_PROTO;
  974. #ifdef SCCS_DIRECTIVE
  975. static int do_sccs DO_PROTO;
  976. #endif
  977. static int do_unassert DO_PROTO;
  978. static int do_undef DO_PROTO;
  979. static int do_warning DO_PROTO;
  980. static int do_xifdef DO_PROTO;
  981.  
  982. /* Here is the actual list of #-directives, most-often-used first.  */
  983.  
  984. static struct directive directive_table[] = {
  985.   {  6, do_define, "define", T_DEFINE, 0, 1},
  986.   {  2, do_if, "if", T_IF},
  987.   {  5, do_xifdef, "ifdef", T_IFDEF},
  988.   {  6, do_xifdef, "ifndef", T_IFNDEF},
  989.   {  5, do_endif, "endif", T_ENDIF},
  990.   {  4, do_else, "else", T_ELSE},
  991.   {  4, do_elif, "elif", T_ELIF},
  992.   {  4, do_line, "line", T_LINE},
  993.   {  7, do_include, "include", T_INCLUDE, 1},
  994.   { 12, do_include, "include_next", T_INCLUDE_NEXT, 1},
  995.   {  6, do_include, "import", T_IMPORT, 1},
  996.   {  5, do_undef, "undef", T_UNDEF},
  997.   {  5, do_error, "error", T_ERROR},
  998.   {  7, do_warning, "warning", T_WARNING},
  999. #ifdef SCCS_DIRECTIVE
  1000.   {  4, do_sccs, "sccs", T_SCCS},
  1001. #endif
  1002.   {  6, do_pragma, "pragma", T_PRAGMA, 0, 0, 1},
  1003.   {  5, do_ident, "ident", T_IDENT},
  1004.   {  6, do_assert, "assert", T_ASSERT},
  1005.   {  8, do_unassert, "unassert", T_UNASSERT},
  1006.   {  -1, 0, "", T_UNUSED},
  1007. };
  1008.  
  1009. /* When a directive handler is called,
  1010.    this points to the # (or the : of the %:) that started the directive.  */
  1011. U_CHAR *directive_start;
  1012.  
  1013. /* table to tell if char can be part of a C identifier. */
  1014. U_CHAR is_idchar[256];
  1015. /* table to tell if char can be first char of a c identifier. */
  1016. U_CHAR is_idstart[256];
  1017. /* table to tell if c is horizontal space.  */
  1018. U_CHAR is_hor_space[256];
  1019. /* table to tell if c is horizontal or vertical space.  */
  1020. static U_CHAR is_space[256];
  1021. /* names of some characters */
  1022. static char *char_name[256];
  1023.  
  1024. #define SKIP_WHITE_SPACE(p) do { while (is_hor_space[*p]) p++; } while (0)
  1025. #define SKIP_ALL_WHITE_SPACE(p) do { while (is_space[*p]) p++; } while (0)
  1026.   
  1027. static int errors = 0;            /* Error counter for exit code */
  1028.  
  1029. /* Name of output file, for error messages.  */
  1030. static char *out_fname;
  1031.  
  1032. /* Zero means dollar signs are punctuation.
  1033.    -$ stores 0; -traditional may store 1.  Default is 1 for VMS, 0 otherwise.
  1034.    This must be 0 for correct processing of this ANSI C program:
  1035.     #define foo(a) #a
  1036.     #define lose(b) foo (b)
  1037.     #define test$
  1038.     lose (test)    */
  1039. static int dollars_in_ident;
  1040. #ifndef DOLLARS_IN_IDENTIFIERS
  1041. #define DOLLARS_IN_IDENTIFIERS 1
  1042. #endif
  1043.  
  1044.  
  1045. /* Stack of conditionals currently in progress
  1046.    (including both successful and failing conditionals).  */
  1047.  
  1048. struct if_stack {
  1049.   struct if_stack *next;    /* for chaining to the next stack frame */
  1050.   char *fname;        /* copied from input when frame is made */
  1051.   int lineno;            /* similarly */
  1052.   int if_succeeded;        /* true if a leg of this if-group
  1053.                     has been passed through rescan */
  1054.   U_CHAR *control_macro;    /* For #ifndef at start of file,
  1055.                    this is the macro name tested.  */
  1056.   enum node_type type;        /* type of last directive seen in this group */
  1057. };
  1058. typedef struct if_stack IF_STACK_FRAME;
  1059. static IF_STACK_FRAME *if_stack = NULL;
  1060.  
  1061. /* Buffer of -M output.  */
  1062. static char *deps_buffer;
  1063.  
  1064. /* Number of bytes allocated in above.  */
  1065. static int deps_allocated_size;
  1066.  
  1067. /* Number of bytes used.  */
  1068. static int deps_size;
  1069.  
  1070. /* Number of bytes since the last newline.  */
  1071. static int deps_column;
  1072.  
  1073. /* Nonzero means -I- has been seen,
  1074.    so don't look for #include "foo" the source-file directory.  */
  1075. static int ignore_srcdir;
  1076.  
  1077. static int safe_read PROTO((int, char *, int));
  1078. static void safe_write PROTO((int, char *, int));
  1079.  
  1080. int main PROTO((int, char **));
  1081.  
  1082. static void path_include PROTO((char *));
  1083.  
  1084. static U_CHAR *index0 PROTO((U_CHAR *, int, size_t));
  1085.  
  1086. static void trigraph_pcp PROTO((FILE_BUF *));
  1087.  
  1088. static void newline_fix PROTO((U_CHAR *));
  1089. static void name_newline_fix PROTO((U_CHAR *));
  1090.  
  1091. static char *get_lintcmd PROTO((U_CHAR *, U_CHAR *, U_CHAR **, int *, int *));
  1092.  
  1093. static void rescan PROTO((FILE_BUF *, int));
  1094.  
  1095. static FILE_BUF expand_to_temp_buffer PROTO((U_CHAR *, U_CHAR *, int, int));
  1096.  
  1097. static int handle_directive PROTO((FILE_BUF *, FILE_BUF *));
  1098.  
  1099. static struct tm *timestamp PROTO((void));
  1100. static void special_symbol PROTO((HASHNODE *, FILE_BUF *));
  1101.  
  1102. static int redundant_include_p PROTO((char *));
  1103. static int is_system_include PROTO((char *));
  1104. static char *skip_redundant_dir_prefix PROTO((char *));
  1105.  
  1106. static char *read_filename_string PROTO((int, FILE *));
  1107. static struct file_name_map *read_name_map PROTO((char *));
  1108. static int open_include_file PROTO((char *, struct file_name_list *));
  1109.  
  1110. static void finclude PROTO((int, char *, FILE_BUF *, int, struct file_name_list *));
  1111. static void record_control_macro PROTO((char *, U_CHAR *));
  1112.  
  1113. static int import_hash PROTO((char *));
  1114. static int lookup_import PROTO((char *, struct file_name_list *));
  1115. static void add_import PROTO((int, char *));
  1116.  
  1117. static char *check_precompiled PROTO((int, char *, char **));
  1118. static int check_preconditions PROTO((char *));
  1119. static void pcfinclude PROTO((U_CHAR *, U_CHAR *, U_CHAR *, FILE_BUF *));
  1120. static void pcstring_used PROTO((HASHNODE *));
  1121. static void write_output PROTO((void));
  1122. static void pass_thru_directive PROTO((U_CHAR *, U_CHAR *, FILE_BUF *, struct directive *));
  1123.  
  1124. static MACRODEF create_definition PROTO((U_CHAR *, U_CHAR *, FILE_BUF *));
  1125.  
  1126. static int check_macro_name PROTO((U_CHAR *, char *));
  1127. static int compare_defs PROTO((DEFINITION *, DEFINITION *));
  1128. static int comp_def_part PROTO((int, U_CHAR *, int, U_CHAR *, int, int));
  1129.  
  1130. static DEFINITION *collect_expansion  PROTO((U_CHAR *, U_CHAR *, int, struct arglist *));
  1131.  
  1132. int check_assertion PROTO((U_CHAR *, int, int, struct arglist *));
  1133. static int compare_token_lists PROTO((struct arglist *, struct arglist *));
  1134.  
  1135. static struct arglist *read_token_list PROTO((U_CHAR **, U_CHAR *, int *));
  1136. static void free_token_list PROTO((struct arglist *));
  1137.  
  1138. static ASSERTION_HASHNODE *assertion_install PROTO((U_CHAR *, int, int));
  1139. static ASSERTION_HASHNODE *assertion_lookup PROTO((U_CHAR *, int, int));
  1140. static void delete_assertion PROTO((ASSERTION_HASHNODE *));
  1141.  
  1142. static void do_once PROTO((void));
  1143.  
  1144. static HOST_WIDE_INT eval_if_expression PROTO((U_CHAR *, int));
  1145. static void conditional_skip PROTO((FILE_BUF *, int, enum node_type, U_CHAR *, FILE_BUF *));
  1146. static void skip_if_group PROTO((FILE_BUF *, int, FILE_BUF *));
  1147. static void validate_else PROTO((U_CHAR *));
  1148.  
  1149. static U_CHAR *skip_to_end_of_comment PROTO((FILE_BUF *, int *, int));
  1150. static U_CHAR *skip_quoted_string PROTO((U_CHAR *, U_CHAR *, int, int *, int *, int *));
  1151. static char *quote_string PROTO((char *, char *));
  1152. static U_CHAR *skip_paren_group PROTO((FILE_BUF *));
  1153.  
  1154. /* Last arg to output_line_directive.  */
  1155. enum file_change_code {same_file, enter_file, leave_file};
  1156. static void output_line_directive PROTO((FILE_BUF *, FILE_BUF *, int, enum file_change_code));
  1157.  
  1158. static void macroexpand PROTO((HASHNODE *, FILE_BUF *));
  1159.  
  1160. struct argdata;
  1161. static char *macarg PROTO((struct argdata *, int));
  1162.  
  1163. static U_CHAR *macarg1 PROTO((U_CHAR *, U_CHAR *, int *, int *, int *, int));
  1164.  
  1165. static int discard_comments PROTO((U_CHAR *, int, int));
  1166.  
  1167. static int change_newlines PROTO((U_CHAR *, int));
  1168.  
  1169. char *my_strerror PROTO((int));
  1170. void error PRINTF_PROTO_1((char *, ...));
  1171. static void verror PROTO((char *, va_list));
  1172. static void error_from_errno PROTO((char *));
  1173. void warning PRINTF_PROTO_1((char *, ...));
  1174. static void vwarning PROTO((char *, va_list));
  1175. static void error_with_line PRINTF_PROTO_2((int, char *, ...));
  1176. static void verror_with_line PROTO((int, char *, va_list));
  1177. static void vwarning_with_line PROTO((int, char *, va_list));
  1178. static void warning_with_line PRINTF_PROTO_2((int, char *, ...));
  1179. void pedwarn PRINTF_PROTO_1((char *, ...));
  1180. void pedwarn_with_line PRINTF_PROTO_2((int, char *, ...));
  1181. static void pedwarn_with_file_and_line PRINTF_PROTO_3((char *, int, char *, ...));
  1182.  
  1183. static void print_containing_files PROTO((void));
  1184.  
  1185. static int line_for_error PROTO((int));
  1186. static int grow_outbuf PROTO((FILE_BUF *, int));
  1187.  
  1188. static HASHNODE *install PROTO((U_CHAR *, int, enum node_type, char *, int));
  1189. HASHNODE *lookup PROTO((U_CHAR *, int, int));
  1190. static void delete_macro PROTO((HASHNODE *));
  1191. static int hashf PROTO((U_CHAR *, int, int));
  1192.  
  1193. static void dump_single_macro PROTO((HASHNODE *, FILE *));
  1194. static void dump_all_macros PROTO((void));
  1195. static void dump_defn_1 PROTO((U_CHAR *, int, int, FILE *));
  1196. static void dump_arg_n PROTO((DEFINITION *, int, FILE *));
  1197.  
  1198. static void initialize_char_syntax PROTO((void));
  1199. static void initialize_builtins PROTO((FILE_BUF *, FILE_BUF *));
  1200.  
  1201. static void make_definition PROTO((char *, FILE_BUF *));
  1202. static void make_undef PROTO((char *, FILE_BUF *));
  1203.  
  1204. static void make_assertion PROTO((char *, char *));
  1205.  
  1206. static void append_include_chain PROTO((struct file_name_list *, struct file_name_list *));
  1207.  
  1208. static void deps_output PROTO((char *, int));
  1209.  
  1210. void fatal PRINTF_PROTO_1((char *, ...)) __attribute__ ((noreturn));
  1211. void fancy_abort PROTO((void)) __attribute__ ((noreturn));
  1212. static void perror_with_name PROTO((char *));
  1213. static void pfatal_with_name PROTO((char *)) __attribute__ ((noreturn));
  1214. static void pipe_closed PROTO((int)) __attribute__ ((noreturn));
  1215.  
  1216. static void memory_full PROTO((void)) __attribute__ ((noreturn));
  1217. GENERIC_PTR xmalloc PROTO((size_t));
  1218. static GENERIC_PTR xrealloc PROTO((GENERIC_PTR, size_t));
  1219. static GENERIC_PTR xcalloc PROTO((size_t, size_t));
  1220. static char *savestring PROTO((char *));
  1221.  
  1222. static int file_size_and_mode PROTO((int, int *, long int *));
  1223.  
  1224. /* Read LEN bytes at PTR from descriptor DESC, for file FILENAME,
  1225.    retrying if necessary.  Return a negative value if an error occurs,
  1226.    otherwise return the actual number of bytes read,
  1227.    which must be LEN unless end-of-file was reached.  */
  1228.  
  1229. static int
  1230. safe_read (desc, ptr, len)
  1231.      int desc;
  1232.      char *ptr;
  1233.      int len;
  1234. {
  1235.   int left = len;
  1236.   while (left > 0) {
  1237.     int nchars = read (desc, ptr, left);
  1238.     if (nchars < 0)
  1239.       {
  1240. #ifdef EINTR
  1241.     if (errno == EINTR)
  1242.       continue;
  1243. #endif
  1244.     return nchars;
  1245.       }
  1246.     if (nchars == 0)
  1247.       break;
  1248.     ptr += nchars;
  1249.     left -= nchars;
  1250.   }
  1251.   return len - left;
  1252. }
  1253.  
  1254. /* Write LEN bytes at PTR to descriptor DESC,
  1255.    retrying if necessary, and treating any real error as fatal.  */
  1256.  
  1257. static void
  1258. safe_write (desc, ptr, len)
  1259.      int desc;
  1260.      char *ptr;
  1261.      int len;
  1262. {
  1263.   while (len > 0) {
  1264.     int written = write (desc, ptr, len);
  1265.     if (written < 0)
  1266.       {
  1267. #ifdef EINTR
  1268.     if (errno == EINTR)
  1269.       continue;
  1270. #endif
  1271.     pfatal_with_name (out_fname);
  1272.       }
  1273.     ptr += written;
  1274.     len -= written;
  1275.   }
  1276. }
  1277.  
  1278. int
  1279. main (argc, argv)
  1280.      int argc;
  1281.      char **argv;
  1282. {
  1283.   int st_mode;
  1284.   long st_size;
  1285.   char *in_fname;
  1286.   char *cp;
  1287.   int f, i;
  1288.   FILE_BUF *fp;
  1289.   char **pend_files = (char **) xmalloc (argc * sizeof (char *));
  1290.   char **pend_defs = (char **) xmalloc (argc * sizeof (char *));
  1291.   char **pend_undefs = (char **) xmalloc (argc * sizeof (char *));
  1292.   char **pend_assertions = (char **) xmalloc (argc * sizeof (char *));
  1293.   char **pend_includes = (char **) xmalloc (argc * sizeof (char *));
  1294.  
  1295.   /* Record the option used with each element of pend_assertions.
  1296.      This is preparation for supporting more than one option for making
  1297.      an assertion.  */
  1298.   char **pend_assertion_options = (char **) xmalloc (argc * sizeof (char *));
  1299.   int inhibit_predefs = 0;
  1300.   int no_standard_includes = 0;
  1301.   int no_standard_cplusplus_includes = 0;
  1302.   int missing_newline = 0;
  1303.  
  1304.   /* Non-0 means don't output the preprocessed program.  */
  1305.   int inhibit_output = 0;
  1306.   /* Non-0 means -v, so print the full set of include dirs.  */
  1307.   int verbose = 0;
  1308.  
  1309.   /* File name which deps are being written to.
  1310.      This is 0 if deps are being written to stdout.  */
  1311.   char *deps_file = 0;
  1312.   /* Fopen file mode to open deps_file with.  */
  1313.   char *deps_mode = "a";
  1314.   /* Stream on which to print the dependency information.  */
  1315.   FILE *deps_stream = 0;
  1316.   /* Target-name to write with the dependency information.  */
  1317.   char *deps_target = 0;
  1318.  
  1319. #ifdef RLIMIT_STACK
  1320.   /* Get rid of any avoidable limit on stack size.  */
  1321.   {
  1322.     struct rlimit rlim;
  1323.  
  1324.     /* Set the stack limit huge so that alloca (particularly stringtab
  1325.      * in dbxread.c) does not fail. */
  1326.     getrlimit (RLIMIT_STACK, &rlim);
  1327.     rlim.rlim_cur = rlim.rlim_max;
  1328.     setrlimit (RLIMIT_STACK, &rlim);
  1329.   }
  1330. #endif /* RLIMIT_STACK defined */
  1331.  
  1332. #ifdef GET_DEFAULT_PRIORITY
  1333.   GET_DEFAULT_PRIORITY ();
  1334. #endif
  1335.  
  1336. #ifdef SIGPIPE
  1337.   signal (SIGPIPE, pipe_closed);
  1338. #endif
  1339.  
  1340.   cp = argv[0] + strlen (argv[0]);
  1341.   while (cp != argv[0] && cp[-1] != '/'
  1342. #ifdef DIR_SEPARATOR
  1343.      && cp[-1] != DIR_SEPARATOR
  1344. #endif
  1345. #ifdef VOL_SEPARATOR
  1346.      && cp[-1] != VOL_SEPARATOR
  1347. #endif
  1348.      )
  1349.     --cp;
  1350.   progname = cp;
  1351.  
  1352. #ifdef VMS
  1353.   {
  1354.     /* Remove directories from PROGNAME.  */
  1355.     char *p;
  1356.     char *s = progname;
  1357.  
  1358.     if ((p = rindex (s, ':')) != 0) s = p + 1;    /* skip device */
  1359.     if ((p = rindex (s, ']')) != 0) s = p + 1;    /* skip directory */
  1360.     if ((p = rindex (s, '>')) != 0) s = p + 1;    /* alternate (int'n'l) dir */
  1361.     s = progname = savestring (s);
  1362.     if ((p = rindex (s, ';')) != 0) *p = '\0';    /* strip version number */
  1363.     if ((p = rindex (s, '.')) != 0        /* strip type iff ".exe" */
  1364.     && (p[1] == 'e' || p[1] == 'E')
  1365.     && (p[2] == 'x' || p[2] == 'X')
  1366.     && (p[3] == 'e' || p[3] == 'E')
  1367.     && !p[4])
  1368.       *p = '\0';
  1369.   }
  1370. #endif
  1371.  
  1372.   in_fname = NULL;
  1373.   out_fname = NULL;
  1374.  
  1375.   /* Initialize is_idchar to allow $.  */
  1376.   dollars_in_ident = 1;
  1377.   initialize_char_syntax ();
  1378.   dollars_in_ident = DOLLARS_IN_IDENTIFIERS > 0;
  1379.  
  1380.   no_line_directives = 0;
  1381.   no_trigraphs = 1;
  1382.   dump_macros = dump_none;
  1383.   no_output = 0;
  1384.   cplusplus = 0;
  1385.   cplusplus_comments = 1;
  1386.  
  1387.   bzero ((char *) pend_files, argc * sizeof (char *));
  1388.   bzero ((char *) pend_defs, argc * sizeof (char *));
  1389.   bzero ((char *) pend_undefs, argc * sizeof (char *));
  1390.   bzero ((char *) pend_assertions, argc * sizeof (char *));
  1391.   bzero ((char *) pend_includes, argc * sizeof (char *));
  1392.  
  1393.   /* Process switches and find input file name.  */
  1394.  
  1395.   for (i = 1; i < argc; i++) {
  1396.     if (argv[i][0] != '-') {
  1397.       if (out_fname != NULL)
  1398.     fatal ("Usage: %s [switches] input output", argv[0]);
  1399.       else if (in_fname != NULL)
  1400.     out_fname = argv[i];
  1401.       else
  1402.     in_fname = argv[i];
  1403.     } else {
  1404.       switch (argv[i][1]) {
  1405.  
  1406.       case 'i':
  1407.     if (!strcmp (argv[i], "-include")) {
  1408.       if (i + 1 == argc)
  1409.         fatal ("Filename missing after `-include' option");
  1410.       else
  1411.         pend_includes[i] = argv[i+1], i++;
  1412.     }
  1413.     if (!strcmp (argv[i], "-imacros")) {
  1414.       if (i + 1 == argc)
  1415.         fatal ("Filename missing after `-imacros' option");
  1416.       else
  1417.         pend_files[i] = argv[i+1], i++;
  1418.     }
  1419.     if (!strcmp (argv[i], "-iprefix")) {
  1420.       if (i + 1 == argc)
  1421.         fatal ("Filename missing after `-iprefix' option");
  1422.       else
  1423.         include_prefix = argv[++i];
  1424.     }
  1425.     if (!strcmp (argv[i], "-ifoutput")) {
  1426.       output_conditionals = 1;
  1427.     }
  1428.     if (!strcmp (argv[i], "-isystem")) {
  1429.       struct file_name_list *dirtmp;
  1430.  
  1431.       if (i + 1 == argc)
  1432.         fatal ("Filename missing after `-isystem' option");
  1433.  
  1434.       dirtmp = (struct file_name_list *)
  1435.         xmalloc (sizeof (struct file_name_list));
  1436.       dirtmp->next = 0;
  1437.       dirtmp->control_macro = 0;
  1438.       dirtmp->c_system_include_path = 1;
  1439.       dirtmp->fname = xmalloc (strlen (argv[i+1]) + 1);
  1440.       strcpy (dirtmp->fname, argv[++i]);
  1441.       dirtmp->got_name_map = 0;
  1442.  
  1443.       if (before_system == 0)
  1444.         before_system = dirtmp;
  1445.       else
  1446.         last_before_system->next = dirtmp;
  1447.       last_before_system = dirtmp; /* Tail follows the last one */
  1448.     }
  1449.     /* Add directory to end of path for includes,
  1450.        with the default prefix at the front of its name.  */
  1451.     if (!strcmp (argv[i], "-iwithprefix")) {
  1452.       struct file_name_list *dirtmp;
  1453.       char *prefix;
  1454.  
  1455.       if (include_prefix != 0)
  1456.         prefix = include_prefix;
  1457.       else {
  1458.         prefix = savestring (GCC_INCLUDE_DIR);
  1459.         /* Remove the `include' from /usr/local/lib/gcc.../include.  */
  1460.         if (!strcmp (prefix + strlen (prefix) - 8, "/include"))
  1461.           prefix[strlen (prefix) - 7] = 0;
  1462.       }
  1463.  
  1464.       dirtmp = (struct file_name_list *)
  1465.         xmalloc (sizeof (struct file_name_list));
  1466.       dirtmp->next = 0;    /* New one goes on the end */
  1467.       dirtmp->control_macro = 0;
  1468.       dirtmp->c_system_include_path = 0;
  1469.       if (i + 1 == argc)
  1470.         fatal ("Directory name missing after `-iwithprefix' option");
  1471.  
  1472.       dirtmp->fname = xmalloc (strlen (argv[i+1]) + strlen (prefix) + 1);
  1473.       strcpy (dirtmp->fname, prefix);
  1474.       strcat (dirtmp->fname, argv[++i]);
  1475.       dirtmp->got_name_map = 0;
  1476.  
  1477.       if (after_include == 0)
  1478.         after_include = dirtmp;
  1479.       else
  1480.         last_after_include->next = dirtmp;
  1481.       last_after_include = dirtmp; /* Tail follows the last one */
  1482.     }
  1483.     /* Add directory to main path for includes,
  1484.        with the default prefix at the front of its name.  */
  1485.     if (!strcmp (argv[i], "-iwithprefixbefore")) {
  1486.       struct file_name_list *dirtmp;
  1487.       char *prefix;
  1488.  
  1489.       if (include_prefix != 0)
  1490.         prefix = include_prefix;
  1491.       else {
  1492.         prefix = savestring (GCC_INCLUDE_DIR);
  1493.         /* Remove the `include' from /usr/local/lib/gcc.../include.  */
  1494.         if (!strcmp (prefix + strlen (prefix) - 8, "/include"))
  1495.           prefix[strlen (prefix) - 7] = 0;
  1496.       }
  1497.  
  1498.       dirtmp = (struct file_name_list *)
  1499.         xmalloc (sizeof (struct file_name_list));
  1500.       dirtmp->next = 0;    /* New one goes on the end */
  1501.       dirtmp->control_macro = 0;
  1502.       dirtmp->c_system_include_path = 0;
  1503.       if (i + 1 == argc)
  1504.         fatal ("Directory name missing after `-iwithprefixbefore' option");
  1505.  
  1506.       dirtmp->fname = xmalloc (strlen (argv[i+1]) + strlen (prefix) + 1);
  1507.       strcpy (dirtmp->fname, prefix);
  1508.       strcat (dirtmp->fname, argv[++i]);
  1509.       dirtmp->got_name_map = 0;
  1510.  
  1511.       append_include_chain (dirtmp, dirtmp);
  1512.     }
  1513.     /* Add directory to end of path for includes.  */
  1514.     if (!strcmp (argv[i], "-idirafter")) {
  1515.       struct file_name_list *dirtmp;
  1516.  
  1517.       dirtmp = (struct file_name_list *)
  1518.         xmalloc (sizeof (struct file_name_list));
  1519.       dirtmp->next = 0;    /* New one goes on the end */
  1520.       dirtmp->control_macro = 0;
  1521.       dirtmp->c_system_include_path = 0;
  1522.       if (i + 1 == argc)
  1523.         fatal ("Directory name missing after `-idirafter' option");
  1524.       else
  1525.         dirtmp->fname = argv[++i];
  1526.       dirtmp->got_name_map = 0;
  1527.  
  1528.       if (after_include == 0)
  1529.         after_include = dirtmp;
  1530.       else
  1531.         last_after_include->next = dirtmp;
  1532.       last_after_include = dirtmp; /* Tail follows the last one */
  1533.     }
  1534.     break;
  1535.  
  1536.       case 'o':
  1537.     if (out_fname != NULL)
  1538.       fatal ("Output filename specified twice");
  1539.     if (i + 1 == argc)
  1540.       fatal ("Filename missing after -o option");
  1541.     out_fname = argv[++i];
  1542.     if (!strcmp (out_fname, "-"))
  1543.       out_fname = "";
  1544.     break;
  1545.  
  1546.       case 'p':
  1547. #ifdef PARSE_PRIORITY
  1548.     if (PARSE_PRIORITY (argc, argv, &i))
  1549.       {
  1550.         break;
  1551.       }
  1552. #endif
  1553.     if (!strcmp (argv[i], "-pedantic"))
  1554.       pedantic = 1;
  1555.     else if (!strcmp (argv[i], "-pedantic-errors")) {
  1556.       pedantic = 1;
  1557.       pedantic_errors = 1;
  1558.     } else if (!strcmp (argv[i], "-pcp")) {
  1559.       char *pcp_fname;
  1560.       if (i + 1 == argc)
  1561.         fatal ("Filename missing after -pcp option");
  1562.       pcp_fname = argv[++i];
  1563.       pcp_outfile = 
  1564.         ((pcp_fname[0] != '-' || pcp_fname[1] != '\0')
  1565.          ? fopen (pcp_fname, "w")
  1566.          : stdout);
  1567.       if (pcp_outfile == 0)
  1568.         pfatal_with_name (pcp_fname);
  1569.       no_precomp = 1;
  1570.     }
  1571.     break;
  1572.  
  1573.       case 't':
  1574.     if (!strcmp (argv[i], "-traditional")) {
  1575.       traditional = 1;
  1576.       cplusplus_comments = 0;
  1577.       if (dollars_in_ident > 0)
  1578.         dollars_in_ident = 1;
  1579.     } else if (!strcmp (argv[i], "-trigraphs")) {
  1580.       no_trigraphs = 0;
  1581.     }
  1582.     break;
  1583.  
  1584.       case 'l':
  1585.     if (! strcmp (argv[i], "-lang-c"))
  1586.       cplusplus = 0, cplusplus_comments = 1, objc = 0;
  1587.     if (! strcmp (argv[i], "-lang-c89"))
  1588.       cplusplus = 0, cplusplus_comments = 0, objc = 0;
  1589.     if (! strcmp (argv[i], "-lang-c++"))
  1590.       cplusplus = 1, cplusplus_comments = 1, objc = 0;
  1591.     if (! strcmp (argv[i], "-lang-objc"))
  1592.       objc = 1, cplusplus = 0, cplusplus_comments = 1;
  1593.     if (! strcmp (argv[i], "-lang-objc++"))
  1594.       objc = 1, cplusplus = 1, cplusplus_comments = 1;
  1595.      if (! strcmp (argv[i], "-lang-asm"))
  1596.        lang_asm = 1;
  1597.      if (! strcmp (argv[i], "-lint"))
  1598.        for_lint = 1;
  1599.     break;
  1600.  
  1601.       case '+':
  1602.     cplusplus = 1, cplusplus_comments = 1;
  1603.     break;
  1604.  
  1605.       case 'w':
  1606.     inhibit_warnings = 1;
  1607.     break;
  1608.  
  1609.       case 'W':
  1610.     if (!strcmp (argv[i], "-Wtrigraphs"))
  1611.       warn_trigraphs = 1;
  1612.     else if (!strcmp (argv[i], "-Wno-trigraphs"))
  1613.       warn_trigraphs = 0;
  1614.     else if (!strcmp (argv[i], "-Wcomment"))
  1615.       warn_comments = 1;
  1616.     else if (!strcmp (argv[i], "-Wno-comment"))
  1617.       warn_comments = 0;
  1618.     else if (!strcmp (argv[i], "-Wcomments"))
  1619.       warn_comments = 1;
  1620.     else if (!strcmp (argv[i], "-Wno-comments"))
  1621.       warn_comments = 0;
  1622.     else if (!strcmp (argv[i], "-Wtraditional"))
  1623.       warn_stringify = 1;
  1624.     else if (!strcmp (argv[i], "-Wno-traditional"))
  1625.       warn_stringify = 0;
  1626.     else if (!strcmp (argv[i], "-Wimport"))
  1627.       warn_import = 1;
  1628.     else if (!strcmp (argv[i], "-Wno-import"))
  1629.       warn_import = 0;
  1630.     else if (!strcmp (argv[i], "-Werror"))
  1631.       warnings_are_errors = 1;
  1632.     else if (!strcmp (argv[i], "-Wno-error"))
  1633.       warnings_are_errors = 0;
  1634.     else if (!strcmp (argv[i], "-Wall"))
  1635.       {
  1636.         warn_trigraphs = 1;
  1637.         warn_comments = 1;
  1638.       }
  1639.     break;
  1640.  
  1641.       case 'M':
  1642.     /* The style of the choices here is a bit mixed.
  1643.        The chosen scheme is a hybrid of keeping all options in one string
  1644.        and specifying each option in a separate argument:
  1645.        -M|-MM|-MD file|-MMD file [-MG].  An alternative is:
  1646.        -M|-MM|-MD file|-MMD file|-MG|-MMG; or more concisely:
  1647.        -M[M][G][D file].  This is awkward to handle in specs, and is not
  1648.        as extensible.  */
  1649.     /* ??? -MG must be specified in addition to one of -M or -MM.
  1650.        This can be relaxed in the future without breaking anything.
  1651.        The converse isn't true.  */
  1652.  
  1653.     /* -MG isn't valid with -MD or -MMD.  This is checked for later.  */
  1654.     if (!strcmp (argv[i], "-MG"))
  1655.       {
  1656.         print_deps_missing_files = 1;
  1657.         break;
  1658.       }
  1659.     if (!strcmp (argv[i], "-M"))
  1660.       print_deps = 2;
  1661.     else if (!strcmp (argv[i], "-MM"))
  1662.       print_deps = 1;
  1663.     else if (!strcmp (argv[i], "-MD"))
  1664.       print_deps = 2;
  1665.     else if (!strcmp (argv[i], "-MMD"))
  1666.       print_deps = 1;
  1667.     /* For -MD and -MMD options, write deps on file named by next arg.  */
  1668.     if (!strcmp (argv[i], "-MD")
  1669.         || !strcmp (argv[i], "-MMD")) {
  1670.       if (i + 1 == argc)
  1671.         fatal ("Filename missing after %s option", argv[i]);
  1672.       i++;
  1673.       deps_file = argv[i];
  1674.       deps_mode = "w";
  1675.     } else {
  1676.       /* For -M and -MM, write deps on standard output
  1677.          and suppress the usual output.  */
  1678.       deps_stream = stdout;
  1679.       inhibit_output = 1;
  1680.     }      
  1681.     break;
  1682.  
  1683.       case 'd':
  1684.     {
  1685.       char *p = argv[i] + 2;
  1686.       char c;
  1687.       while ((c = *p++)) {
  1688.         /* Arg to -d specifies what parts of macros to dump */
  1689.         switch (c) {
  1690.         case 'M':
  1691.           dump_macros = dump_only;
  1692.           no_output = 1;
  1693.           break;
  1694.         case 'N':
  1695.           dump_macros = dump_names;
  1696.           break;
  1697.         case 'D':
  1698.           dump_macros = dump_definitions;
  1699.           break;
  1700.         }
  1701.       }
  1702.     }
  1703.     break;
  1704.  
  1705.       case 'g':
  1706.     if (argv[i][2] == '3')
  1707.       debug_output = 1;
  1708.     break;
  1709.  
  1710.       case 'v':
  1711.     fprintf (stderr, "GNU CPP version %s", version_string);
  1712. #ifdef TARGET_VERSION
  1713.     TARGET_VERSION;
  1714. #endif
  1715.     fprintf (stderr, "\n");
  1716.     verbose = 1;
  1717.     break;
  1718.  
  1719.       case 'H':
  1720.     print_include_names = 1;
  1721.     break;
  1722.  
  1723.       case 'D':
  1724.     if (argv[i][2] != 0)
  1725.       pend_defs[i] = argv[i] + 2;
  1726.     else if (i + 1 == argc)
  1727.       fatal ("Macro name missing after -D option");
  1728.     else
  1729.       i++, pend_defs[i] = argv[i];
  1730.     break;
  1731.  
  1732.       case 'A':
  1733.     {
  1734.       char *p;
  1735.  
  1736.       if (argv[i][2] != 0)
  1737.         p = argv[i] + 2;
  1738.       else if (i + 1 == argc)
  1739.         fatal ("Assertion missing after -A option");
  1740.       else
  1741.         p = argv[++i];
  1742.  
  1743.       if (!strcmp (p, "-")) {
  1744.         /* -A- eliminates all predefined macros and assertions.
  1745.            Let's include also any that were specified earlier
  1746.            on the command line.  That way we can get rid of any
  1747.            that were passed automatically in from GCC.  */
  1748.         int j;
  1749.         inhibit_predefs = 1;
  1750.         for (j = 0; j < i; j++)
  1751.           pend_defs[j] = pend_assertions[j] = 0;
  1752.       } else {
  1753.         pend_assertions[i] = p;
  1754.         pend_assertion_options[i] = "-A";
  1755.       }
  1756.     }
  1757.     break;
  1758.  
  1759.       case 'U':        /* JF #undef something */
  1760.     if (argv[i][2] != 0)
  1761.       pend_undefs[i] = argv[i] + 2;
  1762.     else if (i + 1 == argc)
  1763.       fatal ("Macro name missing after -U option");
  1764.     else
  1765.       pend_undefs[i] = argv[i+1], i++;
  1766.     break;
  1767.  
  1768.       case 'C':
  1769.     put_out_comments = 1;
  1770.     break;
  1771.  
  1772.       case 'E':            /* -E comes from cc -E; ignore it.  */
  1773.     break;
  1774.  
  1775.       case 'P':
  1776.     no_line_directives = 1;
  1777.     break;
  1778.  
  1779.       case '$':            /* Don't include $ in identifiers.  */
  1780.     dollars_in_ident = 0;
  1781.     break;
  1782.  
  1783.       case 'I':            /* Add directory to path for includes.  */
  1784.     {
  1785.       struct file_name_list *dirtmp;
  1786.  
  1787.       if (! ignore_srcdir && !strcmp (argv[i] + 2, "-")) {
  1788.         ignore_srcdir = 1;
  1789.         /* Don't use any preceding -I directories for #include <...>.  */
  1790.         first_bracket_include = 0;
  1791.       }
  1792.       else {
  1793.         dirtmp = (struct file_name_list *)
  1794.           xmalloc (sizeof (struct file_name_list));
  1795.         dirtmp->next = 0;        /* New one goes on the end */
  1796.         dirtmp->control_macro = 0;
  1797.         dirtmp->c_system_include_path = 0;
  1798.         if (argv[i][2] != 0)
  1799.           dirtmp->fname = argv[i] + 2;
  1800.         else if (i + 1 == argc)
  1801.           fatal ("Directory name missing after -I option");
  1802.         else
  1803.           dirtmp->fname = argv[++i];
  1804.         dirtmp->got_name_map = 0;
  1805.         append_include_chain (dirtmp, dirtmp);
  1806.       }
  1807.     }
  1808.     break;
  1809.  
  1810.       case 'n':
  1811.     if (!strcmp (argv[i], "-nostdinc"))
  1812.       /* -nostdinc causes no default include directories.
  1813.          You must specify all include-file directories with -I.  */
  1814.       no_standard_includes = 1;
  1815.     else if (!strcmp (argv[i], "-nostdinc++"))
  1816.       /* -nostdinc++ causes no default C++-specific include directories. */
  1817.       no_standard_cplusplus_includes = 1;
  1818.     else if (!strcmp (argv[i], "-noprecomp"))
  1819.       no_precomp = 1;
  1820.     break;
  1821.  
  1822.       case 'u':
  1823.     /* Sun compiler passes undocumented switch "-undef".
  1824.        Let's assume it means to inhibit the predefined symbols.  */
  1825.     inhibit_predefs = 1;
  1826.     break;
  1827.  
  1828.       case '\0': /* JF handle '-' as file name meaning stdin or stdout */
  1829.     if (in_fname == NULL) {
  1830.       in_fname = "";
  1831.       break;
  1832.     } else if (out_fname == NULL) {
  1833.       out_fname = "";
  1834.       break;
  1835.     }    /* else fall through into error */
  1836.  
  1837.       default:
  1838.     fatal ("Invalid option `%s'", argv[i]);
  1839.       }
  1840.     }
  1841.   }
  1842.  
  1843. #ifdef SET_PRIORITY
  1844.   SET_PRIORITY ();
  1845. #endif
  1846.  
  1847.   /* Add dirs from CPATH after dirs from -I.  */
  1848.   /* There seems to be confusion about what CPATH should do,
  1849.      so for the moment it is not documented.  */
  1850.   /* Some people say that CPATH should replace the standard include dirs,
  1851.      but that seems pointless: it comes before them, so it overrides them
  1852.      anyway.  */
  1853.   cp = getenv ("CPATH");
  1854.   if (cp && ! no_standard_includes)
  1855.     path_include (cp);
  1856.  
  1857.   /* Now that dollars_in_ident is known, initialize is_idchar.  */
  1858.   initialize_char_syntax ();
  1859.  
  1860.   /* Initialize output buffer */
  1861.  
  1862.   outbuf.buf = (U_CHAR *) xmalloc (OUTBUF_SIZE);
  1863.   outbuf.bufp = outbuf.buf;
  1864.   outbuf.length = OUTBUF_SIZE;
  1865.  
  1866.   /* Do partial setup of input buffer for the sake of generating
  1867.      early #line directives (when -g is in effect).  */
  1868.  
  1869.   fp = &instack[++indepth];
  1870.   if (in_fname == NULL)
  1871.     in_fname = "";
  1872.   fp->nominal_fname = fp->fname = in_fname;
  1873.   fp->lineno = 0;
  1874.  
  1875.   /* In C++, wchar_t is a distinct basic type, and we can expect
  1876.      __wchar_t to be defined by cc1plus.  */
  1877.   if (cplusplus)
  1878.     wchar_type = "__wchar_t";
  1879.  
  1880.   /* Install __LINE__, etc.  Must follow initialize_char_syntax
  1881.      and option processing.  */
  1882.   initialize_builtins (fp, &outbuf);
  1883.  
  1884.   /* Do standard #defines and assertions
  1885.      that identify system and machine type.  */
  1886.  
  1887.   if (!inhibit_predefs) {
  1888.     char *p = (char *) alloca (strlen (predefs) + 1);
  1889.     strcpy (p, predefs);
  1890.     while (*p) {
  1891.       char *q;
  1892.       while (*p == ' ' || *p == '\t')
  1893.     p++;
  1894.       /* Handle -D options.  */ 
  1895.       if (p[0] == '-' && p[1] == 'D') {
  1896.     q = &p[2];
  1897.     while (*p && *p != ' ' && *p != '\t')
  1898.       p++;
  1899.     if (*p != 0)
  1900.       *p++= 0;
  1901.     if (debug_output)
  1902.       output_line_directive (fp, &outbuf, 0, same_file);
  1903.     make_definition (q, &outbuf);
  1904.     while (*p == ' ' || *p == '\t')
  1905.       p++;
  1906.       } else if (p[0] == '-' && p[1] == 'A') {
  1907.     /* Handle -A options (assertions).  */ 
  1908.     char *assertion;
  1909.     char *past_name;
  1910.     char *value;
  1911.     char *past_value;
  1912.     char *termination;
  1913.     int save_char;
  1914.  
  1915.     assertion = &p[2];
  1916.     past_name = assertion;
  1917.     /* Locate end of name.  */
  1918.     while (*past_name && *past_name != ' '
  1919.            && *past_name != '\t' && *past_name != '(')
  1920.       past_name++;
  1921.     /* Locate `(' at start of value.  */
  1922.     value = past_name;
  1923.     while (*value && (*value == ' ' || *value == '\t'))
  1924.       value++;
  1925.     if (*value++ != '(')
  1926.       abort ();
  1927.     while (*value && (*value == ' ' || *value == '\t'))
  1928.       value++;
  1929.     past_value = value;
  1930.     /* Locate end of value.  */
  1931.     while (*past_value && *past_value != ' '
  1932.            && *past_value != '\t' && *past_value != ')')
  1933.       past_value++;
  1934.     termination = past_value;
  1935.     while (*termination && (*termination == ' ' || *termination == '\t'))
  1936.       termination++;
  1937.     if (*termination++ != ')')
  1938.       abort ();
  1939.     if (*termination && *termination != ' ' && *termination != '\t')
  1940.       abort ();
  1941.     /* Temporarily null-terminate the value.  */
  1942.     save_char = *termination;
  1943.     *termination = '\0';
  1944.     /* Install the assertion.  */
  1945.     make_assertion ("-A", assertion);
  1946.     *termination = (char) save_char;
  1947.     p = termination;
  1948.     while (*p == ' ' || *p == '\t')
  1949.       p++;
  1950.       } else {
  1951.     abort ();
  1952.       }
  1953.     }
  1954.   }
  1955.  
  1956.   /* Now handle the command line options.  */
  1957.  
  1958.   /* Do -U's, -D's and -A's in the order they were seen.  */
  1959.   for (i = 1; i < argc; i++) {
  1960.     if (pend_undefs[i]) {
  1961.       if (debug_output)
  1962.         output_line_directive (fp, &outbuf, 0, same_file);
  1963.       make_undef (pend_undefs[i], &outbuf);
  1964.     }
  1965.     if (pend_defs[i]) {
  1966.       if (debug_output)
  1967.         output_line_directive (fp, &outbuf, 0, same_file);
  1968.       make_definition (pend_defs[i], &outbuf);
  1969.     }
  1970.     if (pend_assertions[i])
  1971.       make_assertion (pend_assertion_options[i], pend_assertions[i]);
  1972.   }
  1973.  
  1974.   done_initializing = 1;
  1975.  
  1976.   { /* read the appropriate environment variable and if it exists
  1977.        replace include_defaults with the listed path. */
  1978.     char *epath = 0;
  1979.     switch ((objc << 1) + cplusplus)
  1980.       {
  1981.       case 0:
  1982.     epath = getenv ("C_INCLUDE_PATH");
  1983.     break;
  1984.       case 1:
  1985.     epath = getenv ("CPLUS_INCLUDE_PATH");
  1986.     break;
  1987.       case 2:
  1988.     epath = getenv ("OBJC_INCLUDE_PATH");
  1989.     break;
  1990.       case 3:
  1991.     epath = getenv ("OBJCPLUS_INCLUDE_PATH");
  1992.     break;
  1993.       }
  1994.     /* If the environment var for this language is set,
  1995.        add to the default list of include directories.  */
  1996.     if (epath) {
  1997.       char *nstore = (char *) alloca (strlen (epath) + 2);
  1998.       int num_dirs;
  1999.       char *startp, *endp;
  2000.  
  2001.       for (num_dirs = 1, startp = epath; *startp; startp++)
  2002.     if (*startp == PATH_SEPARATOR)
  2003.       num_dirs++;
  2004.       include_defaults
  2005.     = (struct default_include *) xmalloc ((num_dirs
  2006.                            * sizeof (struct default_include))
  2007.                           + sizeof (include_defaults_array));
  2008.       startp = endp = epath;
  2009.       num_dirs = 0;
  2010.       while (1) {
  2011.         /* Handle cases like c:/usr/lib:d:/gcc/lib */
  2012.         if ((*endp == PATH_SEPARATOR
  2013. #if 0 /* Obsolete, now that we use semicolons as the path separator.  */
  2014. #ifdef __MSDOS__
  2015.          && (endp-startp != 1 || !isalpha (*startp))
  2016. #endif
  2017. #endif
  2018.          )
  2019.             || *endp == 0) {
  2020.       strncpy (nstore, startp, endp-startp);
  2021.       if (endp == startp)
  2022.         strcpy (nstore, ".");
  2023.       else
  2024.         nstore[endp-startp] = '\0';
  2025.  
  2026.       include_defaults[num_dirs].fname = savestring (nstore);
  2027.       include_defaults[num_dirs].cplusplus = cplusplus;
  2028.       include_defaults[num_dirs].cxx_aware = 1;
  2029.       num_dirs++;
  2030.       if (*endp == '\0')
  2031.         break;
  2032.       endp = startp = endp + 1;
  2033.     } else
  2034.       endp++;
  2035.       }
  2036.       /* Put the usual defaults back in at the end.  */
  2037.       bcopy ((char *) include_defaults_array,
  2038.          (char *) &include_defaults[num_dirs],
  2039.          sizeof (include_defaults_array));
  2040.     }
  2041.   }
  2042.  
  2043.   append_include_chain (before_system, last_before_system);
  2044.   first_system_include = before_system;
  2045.  
  2046.   /* Unless -fnostdinc,
  2047.      tack on the standard include file dirs to the specified list */
  2048.   if (!no_standard_includes) {
  2049.     struct default_include *p = include_defaults;
  2050.     char *specd_prefix = include_prefix;
  2051.     char *default_prefix = savestring (GCC_INCLUDE_DIR);
  2052.     int default_len = 0;
  2053.     /* Remove the `include' from /usr/local/lib/gcc.../include.  */
  2054.     if (!strcmp (default_prefix + strlen (default_prefix) - 8, "/include")) {
  2055.       default_len = strlen (default_prefix) - 7;
  2056.       default_prefix[default_len] = 0;
  2057.     }
  2058.     /* Search "translated" versions of GNU directories.
  2059.        These have /usr/local/lib/gcc... replaced by specd_prefix.  */
  2060.     if (specd_prefix != 0 && default_len != 0)
  2061.       for (p = include_defaults; p->fname; p++) {
  2062.     /* Some standard dirs are only for C++.  */
  2063.     if (!p->cplusplus || (cplusplus && !no_standard_cplusplus_includes)) {
  2064.       /* Does this dir start with the prefix?  */
  2065.       if (!strncmp (p->fname, default_prefix, default_len)) {
  2066.         /* Yes; change prefix and add to search list.  */
  2067.         struct file_name_list *new
  2068.           = (struct file_name_list *) xmalloc (sizeof (struct file_name_list));
  2069.         int this_len = strlen (specd_prefix) + strlen (p->fname) - default_len;
  2070.         char *str = xmalloc (this_len + 1);
  2071.         strcpy (str, specd_prefix);
  2072.         strcat (str, p->fname + default_len);
  2073.         new->fname = str;
  2074.         new->control_macro = 0;
  2075.         new->c_system_include_path = !p->cxx_aware;
  2076.         new->got_name_map = 0;
  2077.         append_include_chain (new, new);
  2078.         if (first_system_include == 0)
  2079.           first_system_include = new;
  2080.       }
  2081.     }
  2082.       }
  2083.     /* Search ordinary names for GNU include directories.  */
  2084.     for (p = include_defaults; p->fname; p++) {
  2085.       /* Some standard dirs are only for C++.  */
  2086.       if (!p->cplusplus || (cplusplus && !no_standard_cplusplus_includes)) {
  2087.     struct file_name_list *new
  2088.       = (struct file_name_list *) xmalloc (sizeof (struct file_name_list));
  2089.     new->control_macro = 0;
  2090.     new->c_system_include_path = !p->cxx_aware;
  2091.     new->fname = p->fname;
  2092.     new->got_name_map = 0;
  2093.     append_include_chain (new, new);
  2094.     if (first_system_include == 0)
  2095.       first_system_include = new;
  2096.       }
  2097.     }
  2098.   }
  2099.  
  2100.   /* Tack the after_include chain at the end of the include chain.  */
  2101.   append_include_chain (after_include, last_after_include);
  2102.   if (first_system_include == 0)
  2103.     first_system_include = after_include;
  2104.  
  2105.   /* With -v, print the list of dirs to search.  */
  2106.   if (verbose) {
  2107.     struct file_name_list *p;
  2108.     fprintf (stderr, "#include \"...\" search starts here:\n");
  2109.     for (p = include; p; p = p->next) {
  2110.       if (p == first_bracket_include)
  2111.     fprintf (stderr, "#include <...> search starts here:\n");
  2112.       fprintf (stderr, " %s\n", p->fname);
  2113.     }
  2114.     fprintf (stderr, "End of search list.\n");
  2115.   }
  2116.  
  2117.   /* Scan the -imacros files before the main input.
  2118.      Much like #including them, but with no_output set
  2119.      so that only their macro definitions matter.  */
  2120.  
  2121.   no_output++; no_record_file++;
  2122.   for (i = 1; i < argc; i++)
  2123.     if (pend_files[i]) {
  2124.       int fd = open (pend_files[i], O_RDONLY, 0666);
  2125.       if (fd < 0) {
  2126.     perror_with_name (pend_files[i]);
  2127.     return FATAL_EXIT_CODE;
  2128.       }
  2129.       finclude (fd, pend_files[i], &outbuf, 0, NULL_PTR);
  2130.     }
  2131.   no_output--; no_record_file--;
  2132.  
  2133.   /* Copy the entire contents of the main input file into
  2134.      the stacked input buffer previously allocated for it.  */
  2135.  
  2136.   /* JF check for stdin */
  2137.   if (in_fname == NULL || *in_fname == 0) {
  2138.     in_fname = "";
  2139.     f = 0;
  2140.   } else if ((f = open (in_fname, O_RDONLY, 0666)) < 0)
  2141.     goto perror;
  2142.  
  2143.   /* -MG doesn't select the form of output and must be specified with one of
  2144.      -M or -MM.  -MG doesn't make sense with -MD or -MMD since they don't
  2145.      inhibit compilation.  */
  2146.   if (print_deps_missing_files && (print_deps == 0 || !inhibit_output))
  2147.     fatal ("-MG must be specified with one of -M or -MM");
  2148.  
  2149.   /* Either of two environment variables can specify output of deps.
  2150.      Its value is either "OUTPUT_FILE" or "OUTPUT_FILE DEPS_TARGET",
  2151.      where OUTPUT_FILE is the file to write deps info to
  2152.      and DEPS_TARGET is the target to mention in the deps.  */
  2153.  
  2154.   if (print_deps == 0
  2155.       && (getenv ("SUNPRO_DEPENDENCIES") != 0
  2156.       || getenv ("DEPENDENCIES_OUTPUT") != 0)) {
  2157.     char *spec = getenv ("DEPENDENCIES_OUTPUT");
  2158.     char *s;
  2159.     char *output_file;
  2160.  
  2161.     if (spec == 0) {
  2162.       spec = getenv ("SUNPRO_DEPENDENCIES");
  2163.       print_deps = 2;
  2164.     }
  2165.     else
  2166.       print_deps = 1;
  2167.  
  2168.     s = spec;
  2169.     /* Find the space before the DEPS_TARGET, if there is one.  */
  2170.     /* This should use index.  (mrs) */
  2171.     while (*s != 0 && *s != ' ') s++;
  2172.     if (*s != 0) {
  2173.       deps_target = s + 1;
  2174.       output_file = xmalloc (s - spec + 1);
  2175.       bcopy (spec, output_file, s - spec);
  2176.       output_file[s - spec] = 0;
  2177.     }
  2178.     else {
  2179.       deps_target = 0;
  2180.       output_file = spec;
  2181.     }
  2182.       
  2183.     deps_file = output_file;
  2184.     deps_mode = "a";
  2185.   }
  2186.  
  2187.   /* For -M, print the expected object file name
  2188.      as the target of this Make-rule.  */
  2189.   if (print_deps) {
  2190.     deps_allocated_size = 200;
  2191.     deps_buffer = xmalloc (deps_allocated_size);
  2192.     deps_buffer[0] = 0;
  2193.     deps_size = 0;
  2194.     deps_column = 0;
  2195.  
  2196.     if (deps_target) {
  2197.       deps_output (deps_target, ':');
  2198.     } else if (*in_fname == 0) {
  2199.       deps_output ("-", ':');
  2200.     } else {
  2201.       char *p, *q;
  2202.       int len;
  2203.  
  2204.       /* Discard all directory prefixes from filename.  */
  2205. #ifdef FILE_NAME_NONDIRECTORY
  2206.       q = FILE_NAME_NONDIRECTORY (in_fname);
  2207. #else
  2208.       if ((q = rindex (in_fname, '/')) != NULL
  2209. #ifdef DIR_SEPARATOR
  2210.       && (q = rindex (in_fname, DIR_SEPARATOR)) != NULL
  2211. #endif
  2212.       )
  2213.     ++q;
  2214.       else
  2215.     q = in_fname;
  2216. #endif
  2217.       /* Copy remainder to mungable area.  */
  2218.       p = (char *) alloca (strlen(q) + 8);
  2219.       strcpy (p, q);
  2220.  
  2221.       /* Output P, but remove known suffixes.  */
  2222.       len = strlen (p);
  2223.       q = p + len;
  2224.       if (len >= 2
  2225.       && p[len - 2] == '.'
  2226.       && index("cCsSm", p[len - 1]))
  2227.     q = p + (len - 2);
  2228.       else if (len >= 3
  2229.            && p[len - 3] == '.'
  2230.            && p[len - 2] == 'c'
  2231.            && p[len - 1] == 'c')
  2232.     q = p + (len - 3);
  2233.       else if (len >= 4
  2234.            && p[len - 4] == '.'
  2235.            && p[len - 3] == 'c'
  2236.            && p[len - 2] == 'x'
  2237.            && p[len - 1] == 'x')
  2238.     q = p + (len - 4);
  2239.       else if (len >= 4
  2240.            && p[len - 4] == '.'
  2241.            && p[len - 3] == 'c'
  2242.            && p[len - 2] == 'p'
  2243.            && p[len - 1] == 'p')
  2244.     q = p + (len - 4);
  2245.  
  2246.       /* Supply our own suffix.  */
  2247. #ifndef VMS
  2248.       strcpy (q, ".o");
  2249. #else
  2250.       strcpy (q, ".obj");
  2251. #endif
  2252.  
  2253.       deps_output (p, ':');
  2254.       deps_output (in_fname, ' ');
  2255.     }
  2256.   }
  2257.  
  2258.   file_size_and_mode (f, &st_mode, &st_size);
  2259.   fp->nominal_fname = fp->fname = in_fname;
  2260.   fp->lineno = 1;
  2261.   fp->system_header_p = 0;
  2262.   /* JF all this is mine about reading pipes and ttys */
  2263.   if (! S_ISREG (st_mode)) {
  2264.     /* Read input from a file that is not a normal disk file.
  2265.        We cannot preallocate a buffer with the correct size,
  2266.        so we must read in the file a piece at the time and make it bigger.  */
  2267.     int size;
  2268.     int bsize;
  2269.     int cnt;
  2270.  
  2271.     bsize = 2000;
  2272.     size = 0;
  2273.     fp->buf = (U_CHAR *) xmalloc (bsize + 2);
  2274.     for (;;) {
  2275.       cnt = safe_read (f, (char *) fp->buf + size, bsize - size);
  2276.       if (cnt < 0) goto perror;    /* error! */
  2277.       size += cnt;
  2278.       if (size != bsize) break;    /* End of file */
  2279.       bsize *= 2;
  2280.       fp->buf = (U_CHAR *) xrealloc (fp->buf, bsize + 2);
  2281.     }
  2282.     fp->length = size;
  2283.   } else {
  2284.     /* Read a file whose size we can determine in advance.
  2285.        For the sake of VMS, st_size is just an upper bound.  */
  2286.     fp->buf = (U_CHAR *) xmalloc (st_size + 2);
  2287.     fp->length = safe_read (f, (char *) fp->buf, st_size);
  2288.     if (fp->length < 0) goto perror;
  2289.   }
  2290.   fp->bufp = fp->buf;
  2291.   fp->if_stack = if_stack;
  2292.  
  2293.   /* Make sure data ends with a newline.  And put a null after it.  */
  2294.  
  2295.   if ((fp->length > 0 && fp->buf[fp->length - 1] != '\n')
  2296.       /* Backslash-newline at end is not good enough.  */
  2297.       || (fp->length > 1 && fp->buf[fp->length - 2] == '\\')) {
  2298.     fp->buf[fp->length++] = '\n';
  2299.     missing_newline = 1;
  2300.   }
  2301.   fp->buf[fp->length] = '\0';
  2302.  
  2303.   /* Unless inhibited, convert trigraphs in the input.  */
  2304.  
  2305.   if (!no_trigraphs)
  2306.     trigraph_pcp (fp);
  2307.  
  2308.   /* Now that we know the input file is valid, open the output.  */
  2309.  
  2310.   if (!out_fname || !strcmp (out_fname, ""))
  2311.     out_fname = "stdout";
  2312.   else if (! freopen (out_fname, "w", stdout))
  2313.     pfatal_with_name (out_fname);
  2314.  
  2315.   output_line_directive (fp, &outbuf, 0, same_file);
  2316.  
  2317.   /* Scan the -include files before the main input.  */
  2318.  
  2319.   no_record_file++;
  2320.   for (i = 1; i < argc; i++)
  2321.     if (pend_includes[i]) {
  2322.       int fd = open (pend_includes[i], O_RDONLY, 0666);
  2323.       if (fd < 0) {
  2324.     perror_with_name (pend_includes[i]);
  2325.     return FATAL_EXIT_CODE;
  2326.       }
  2327.       finclude (fd, pend_includes[i], &outbuf, 0, NULL_PTR);
  2328.     }
  2329.   no_record_file--;
  2330.  
  2331.   /* Scan the input, processing macros and directives.  */
  2332.  
  2333.   rescan (&outbuf, 0);
  2334.  
  2335.   if (missing_newline)
  2336.     fp->lineno--;
  2337.  
  2338.   if (pedantic && missing_newline)
  2339.     pedwarn ("file does not end in newline");
  2340.  
  2341.   /* Now we have processed the entire input
  2342.      Write whichever kind of output has been requested.  */
  2343.  
  2344.   if (dump_macros == dump_only)
  2345.     dump_all_macros ();
  2346.   else if (! inhibit_output) {
  2347.     write_output ();
  2348.   }
  2349.  
  2350.   if (print_deps) {
  2351.     /* Don't actually write the deps file if compilation has failed.  */
  2352.     if (errors == 0) {
  2353.       if (deps_file && ! (deps_stream = fopen (deps_file, deps_mode)))
  2354.     pfatal_with_name (deps_file);
  2355.       fputs (deps_buffer, deps_stream);
  2356.       putc ('\n', deps_stream);
  2357.       if (deps_file) {
  2358.     if (ferror (deps_stream) || fclose (deps_stream) != 0)
  2359.       fatal ("I/O error on output");
  2360.       }
  2361.     }
  2362.   }
  2363.  
  2364.   if (pcp_outfile && pcp_outfile != stdout
  2365.       && (ferror (pcp_outfile) || fclose (pcp_outfile) != 0))
  2366.     fatal ("I/O error on `-pcp' output");
  2367.  
  2368.   if (ferror (stdout) || fclose (stdout) != 0)
  2369.     fatal ("I/O error on output");
  2370.  
  2371.   if (errors)
  2372.     exit (FATAL_EXIT_CODE);
  2373.   exit (SUCCESS_EXIT_CODE);
  2374.  
  2375.  perror:
  2376.   pfatal_with_name (in_fname);
  2377.   return 0;
  2378. }
  2379.  
  2380. /* Given a colon-separated list of file names PATH,
  2381.    add all the names to the search path for include files.  */
  2382.  
  2383. static void
  2384. path_include (path)
  2385.      char *path;
  2386. {
  2387.   char *p;
  2388.  
  2389.   p = path;
  2390.  
  2391.   if (*p)
  2392.     while (1) {
  2393.       char *q = p;
  2394.       char *name;
  2395.       struct file_name_list *dirtmp;
  2396.  
  2397.       /* Find the end of this name.  */
  2398.       while (*q != 0 && *q != PATH_SEPARATOR) q++;
  2399.       if (p == q) {
  2400.     /* An empty name in the path stands for the current directory.  */
  2401.     name = xmalloc (2);
  2402.     name[0] = '.';
  2403.     name[1] = 0;
  2404.       } else {
  2405.     /* Otherwise use the directory that is named.  */
  2406.     name = xmalloc (q - p + 1);
  2407.     bcopy (p, name, q - p);
  2408.     name[q - p] = 0;
  2409.       }
  2410.  
  2411.       dirtmp = (struct file_name_list *)
  2412.     xmalloc (sizeof (struct file_name_list));
  2413.       dirtmp->next = 0;        /* New one goes on the end */
  2414.       dirtmp->control_macro = 0;
  2415.       dirtmp->c_system_include_path = 0;
  2416.       dirtmp->fname = name;
  2417.       dirtmp->got_name_map = 0;
  2418.       append_include_chain (dirtmp, dirtmp);
  2419.  
  2420.       /* Advance past this name.  */
  2421.       p = q;
  2422.       if (*p == 0)
  2423.     break;
  2424.       /* Skip the colon.  */
  2425.       p++;
  2426.     }
  2427. }
  2428.  
  2429. /* Return the address of the first character in S that equals C.
  2430.    S is an array of length N, possibly containing '\0's, and followed by '\0'.
  2431.    Return 0 if there is no such character.  Assume that C itself is not '\0'.
  2432.    If we knew we could use memchr, we could just invoke memchr (S, C, N),
  2433.    but unfortunately memchr isn't autoconfigured yet.  */
  2434.  
  2435. static U_CHAR *
  2436. index0 (s, c, n)
  2437.      U_CHAR *s;
  2438.      int c;
  2439.      size_t n;
  2440. {
  2441.   char *p = (char *) s;
  2442.   for (;;) {
  2443.     char *q = index (p, c);
  2444.     if (q)
  2445.       return (U_CHAR *) q;
  2446.     else {
  2447.       size_t l = strlen (p);
  2448.       if (l == n)
  2449.     return 0;
  2450.       l++;
  2451.       p += l;
  2452.       n -= l;
  2453.     }
  2454.   }
  2455. }
  2456.  
  2457. /* Pre-C-Preprocessor to translate ANSI trigraph idiocy in BUF
  2458.    before main CCCP processing.  Name `pcp' is also in honor of the
  2459.    drugs the trigraph designers must have been on.
  2460.  
  2461.    Using an extra pass through the buffer takes a little extra time,
  2462.    but is infinitely less hairy than trying to handle trigraphs inside
  2463.    strings, etc. everywhere, and also makes sure that trigraphs are
  2464.    only translated in the top level of processing. */
  2465.  
  2466. static void
  2467. trigraph_pcp (buf)
  2468.      FILE_BUF *buf;
  2469. {
  2470.   register U_CHAR c, *fptr, *bptr, *sptr, *lptr;
  2471.   int len;
  2472.  
  2473.   fptr = bptr = sptr = buf->buf;
  2474.   lptr = fptr + buf->length;
  2475.   while ((sptr = index0 (sptr, '?', (size_t) (lptr - sptr))) != NULL) {
  2476.     if (*++sptr != '?')
  2477.       continue;
  2478.     switch (*++sptr) {
  2479.       case '=':
  2480.       c = '#';
  2481.       break;
  2482.     case '(':
  2483.       c = '[';
  2484.       break;
  2485.     case '/':
  2486.       c = '\\';
  2487.       break;
  2488.     case ')':
  2489.       c = ']';
  2490.       break;
  2491.     case '\'':
  2492.       c = '^';
  2493.       break;
  2494.     case '<':
  2495.       c = '{';
  2496.       break;
  2497.     case '!':
  2498.       c = '|';
  2499.       break;
  2500.     case '>':
  2501.       c = '}';
  2502.       break;
  2503.     case '-':
  2504.       c  = '~';
  2505.       break;
  2506.     case '?':
  2507.       sptr--;
  2508.       continue;
  2509.     default:
  2510.       continue;
  2511.     }
  2512.     len = sptr - fptr - 2;
  2513.  
  2514.     /* BSD doc says bcopy () works right for overlapping strings.  In ANSI
  2515.        C, this will be memmove (). */
  2516.     if (bptr != fptr && len > 0)
  2517.       bcopy ((char *) fptr, (char *) bptr, len);
  2518.  
  2519.     bptr += len;
  2520.     *bptr++ = c;
  2521.     fptr = ++sptr;
  2522.   }
  2523.   len = buf->length - (fptr - buf->buf);
  2524.   if (bptr != fptr && len > 0)
  2525.     bcopy ((char *) fptr, (char *) bptr, len);
  2526.   buf->length -= fptr - bptr;
  2527.   buf->buf[buf->length] = '\0';
  2528.   if (warn_trigraphs && fptr != bptr)
  2529.     warning_with_line (0, "%d trigraph(s) encountered", (fptr - bptr) / 2);
  2530. }
  2531.  
  2532. /* Move all backslash-newline pairs out of embarrassing places.
  2533.    Exchange all such pairs following BP
  2534.    with any potentially-embarrassing characters that follow them.
  2535.    Potentially-embarrassing characters are / and *
  2536.    (because a backslash-newline inside a comment delimiter
  2537.    would cause it not to be recognized).  */
  2538.  
  2539. static void
  2540. newline_fix (bp)
  2541.      U_CHAR *bp;
  2542. {
  2543.   register U_CHAR *p = bp;
  2544.  
  2545.   /* First count the backslash-newline pairs here.  */
  2546.  
  2547.   while (p[0] == '\\' && p[1] == '\n')
  2548.     p += 2;
  2549.  
  2550.   /* What follows the backslash-newlines is not embarrassing.  */
  2551.  
  2552.   if (*p != '/' && *p != '*')
  2553.     return;
  2554.  
  2555.   /* Copy all potentially embarrassing characters
  2556.      that follow the backslash-newline pairs
  2557.      down to where the pairs originally started.  */
  2558.  
  2559.   while (*p == '*' || *p == '/')
  2560.     *bp++ = *p++;
  2561.  
  2562.   /* Now write the same number of pairs after the embarrassing chars.  */
  2563.   while (bp < p) {
  2564.     *bp++ = '\\';
  2565.     *bp++ = '\n';
  2566.   }
  2567. }
  2568.  
  2569. /* Like newline_fix but for use within a directive-name.
  2570.    Move any backslash-newlines up past any following symbol constituents.  */
  2571.  
  2572. static void
  2573. name_newline_fix (bp)
  2574.      U_CHAR *bp;
  2575. {
  2576.   register U_CHAR *p = bp;
  2577.  
  2578.   /* First count the backslash-newline pairs here.  */
  2579.   while (p[0] == '\\' && p[1] == '\n')
  2580.     p += 2;
  2581.  
  2582.   /* What follows the backslash-newlines is not embarrassing.  */
  2583.  
  2584.   if (!is_idchar[*p])
  2585.     return;
  2586.  
  2587.   /* Copy all potentially embarrassing characters
  2588.      that follow the backslash-newline pairs
  2589.      down to where the pairs originally started.  */
  2590.  
  2591.   while (is_idchar[*p])
  2592.     *bp++ = *p++;
  2593.  
  2594.   /* Now write the same number of pairs after the embarrassing chars.  */
  2595.   while (bp < p) {
  2596.     *bp++ = '\\';
  2597.     *bp++ = '\n';
  2598.   }
  2599. }
  2600.  
  2601. /* Look for lint commands in comments.
  2602.  
  2603.    When we come in here, ibp points into a comment.  Limit is as one expects.
  2604.    scan within the comment -- it should start, after lwsp, with a lint command.
  2605.    If so that command is returned as a (constant) string.
  2606.  
  2607.    Upon return, any arg will be pointed to with argstart and will be
  2608.    arglen long.  Note that we don't parse that arg since it will just
  2609.    be printed out again.
  2610. */
  2611.  
  2612. static char *
  2613. get_lintcmd (ibp, limit, argstart, arglen, cmdlen)
  2614.      register U_CHAR *ibp;
  2615.      register U_CHAR *limit;
  2616.      U_CHAR **argstart;        /* point to command arg */
  2617.      int *arglen, *cmdlen;    /* how long they are */
  2618. {
  2619.   long linsize;
  2620.   register U_CHAR *numptr;    /* temp for arg parsing */
  2621.  
  2622.   *arglen = 0;
  2623.  
  2624.   SKIP_WHITE_SPACE (ibp);
  2625.  
  2626.   if (ibp >= limit) return NULL;
  2627.  
  2628.   linsize = limit - ibp;
  2629.   
  2630.   /* Oh, I wish C had lexical functions... hell, I'll just open-code the set */
  2631.   if ((linsize >= 10) && !bcmp (ibp, "NOTREACHED", 10)) {
  2632.     *cmdlen = 10;
  2633.     return "NOTREACHED";
  2634.   }
  2635.   if ((linsize >= 8) && !bcmp (ibp, "ARGSUSED", 8)) {
  2636.     *cmdlen = 8;
  2637.     return "ARGSUSED";
  2638.   }
  2639.   if ((linsize >= 11) && !bcmp (ibp, "LINTLIBRARY", 11)) {
  2640.     *cmdlen = 11;
  2641.     return "LINTLIBRARY";
  2642.   }
  2643.   if ((linsize >= 7) && !bcmp (ibp, "VARARGS", 7)) {
  2644.     *cmdlen = 7;
  2645.     ibp += 7; linsize -= 7;
  2646.     if ((linsize == 0) || ! isdigit (*ibp)) return "VARARGS";
  2647.  
  2648.     /* OK, read a number */
  2649.     for (numptr = *argstart = ibp; (numptr < limit) && isdigit (*numptr);
  2650.      numptr++);
  2651.     *arglen = numptr - *argstart;
  2652.     return "VARARGS";
  2653.   }
  2654.   return NULL;
  2655. }
  2656.  
  2657. /*
  2658.  * The main loop of the program.
  2659.  *
  2660.  * Read characters from the input stack, transferring them to the
  2661.  * output buffer OP.
  2662.  *
  2663.  * Macros are expanded and push levels on the input stack.
  2664.  * At the end of such a level it is popped off and we keep reading.
  2665.  * At the end of any other kind of level, we return.
  2666.  * #-directives are handled, except within macros.
  2667.  *
  2668.  * If OUTPUT_MARKS is nonzero, keep Newline markers found in the input
  2669.  * and insert them when appropriate.  This is set while scanning macro
  2670.  * arguments before substitution.  It is zero when scanning for final output.
  2671.  *   There are three types of Newline markers:
  2672.  *   * Newline -  follows a macro name that was not expanded
  2673.  *     because it appeared inside an expansion of the same macro.
  2674.  *     This marker prevents future expansion of that identifier.
  2675.  *     When the input is rescanned into the final output, these are deleted.
  2676.  *     These are also deleted by ## concatenation.
  2677.  *   * Newline Space (or Newline and any other whitespace character)
  2678.  *     stands for a place that tokens must be separated or whitespace
  2679.  *     is otherwise desirable, but where the ANSI standard specifies there
  2680.  *     is no whitespace.  This marker turns into a Space (or whichever other
  2681.  *     whitespace char appears in the marker) in the final output,
  2682.  *     but it turns into nothing in an argument that is stringified with #.
  2683.  *     Such stringified arguments are the only place where the ANSI standard
  2684.  *     specifies with precision that whitespace may not appear.
  2685.  *
  2686.  * During this function, IP->bufp is kept cached in IBP for speed of access.
  2687.  * Likewise, OP->bufp is kept in OBP.  Before calling a subroutine
  2688.  * IBP, IP and OBP must be copied back to memory.  IP and IBP are
  2689.  * copied back with the RECACHE macro.  OBP must be copied back from OP->bufp
  2690.  * explicitly, and before RECACHE, since RECACHE uses OBP.
  2691.  */
  2692.  
  2693. static void
  2694. rescan (op, output_marks)
  2695.      FILE_BUF *op;
  2696.      int output_marks;
  2697. {
  2698.   /* Character being scanned in main loop.  */
  2699.   register U_CHAR c;
  2700.  
  2701.   /* Length of pending accumulated identifier.  */
  2702.   register int ident_length = 0;
  2703.  
  2704.   /* Hash code of pending accumulated identifier.  */
  2705.   register int hash = 0;
  2706.  
  2707.   /* Current input level (&instack[indepth]).  */
  2708.   FILE_BUF *ip;
  2709.  
  2710.   /* Pointer for scanning input.  */
  2711.   register U_CHAR *ibp;
  2712.  
  2713.   /* Pointer to end of input.  End of scan is controlled by LIMIT.  */
  2714.   register U_CHAR *limit;
  2715.  
  2716.   /* Pointer for storing output.  */
  2717.   register U_CHAR *obp;
  2718.  
  2719.   /* REDO_CHAR is nonzero if we are processing an identifier
  2720.      after backing up over the terminating character.
  2721.      Sometimes we process an identifier without backing up over
  2722.      the terminating character, if the terminating character
  2723.      is not special.  Backing up is done so that the terminating character
  2724.      will be dispatched on again once the identifier is dealt with.  */
  2725.   int redo_char = 0;
  2726.  
  2727.   /* 1 if within an identifier inside of which a concatenation
  2728.      marker (Newline -) has been seen.  */
  2729.   int concatenated = 0;
  2730.  
  2731.   /* While scanning a comment or a string constant,
  2732.      this records the line it started on, for error messages.  */
  2733.   int start_line;
  2734.  
  2735.   /* Record position of last `real' newline.  */
  2736.   U_CHAR *beg_of_line;
  2737.  
  2738. /* Pop the innermost input stack level, assuming it is a macro expansion.  */
  2739.  
  2740. #define POPMACRO \
  2741. do { ip->macro->type = T_MACRO;        \
  2742.      if (ip->free_ptr) free (ip->free_ptr);    \
  2743.      --indepth; } while (0)
  2744.  
  2745. /* Reload `rescan's local variables that describe the current
  2746.    level of the input stack.  */
  2747.  
  2748. #define RECACHE  \
  2749. do { ip = &instack[indepth];        \
  2750.      ibp = ip->bufp;            \
  2751.      limit = ip->buf + ip->length;    \
  2752.      op->bufp = obp;            \
  2753.      check_expand (op, limit - ibp);    \
  2754.      beg_of_line = 0;            \
  2755.      obp = op->bufp; } while (0)
  2756.  
  2757.   if (no_output && instack[indepth].fname != 0)
  2758.     skip_if_group (&instack[indepth], 1, NULL);
  2759.  
  2760.   obp = op->bufp;
  2761.   RECACHE;
  2762.  
  2763.   beg_of_line = ibp;
  2764.  
  2765.   /* Our caller must always put a null after the end of
  2766.      the input at each input stack level.  */
  2767.   if (*limit != 0)
  2768.     abort ();
  2769.  
  2770.   while (1) {
  2771.     c = *ibp++;
  2772.     *obp++ = c;
  2773.  
  2774.     switch (c) {
  2775.     case '\\':
  2776.       if (*ibp == '\n' && !ip->macro) {
  2777.     /* At the top level, always merge lines ending with backslash-newline,
  2778.        even in middle of identifier.  But do not merge lines in a macro,
  2779.        since backslash might be followed by a newline-space marker.  */
  2780.     ++ibp;
  2781.     ++ip->lineno;
  2782.     --obp;        /* remove backslash from obuf */
  2783.     break;
  2784.       }
  2785.       /* If ANSI, backslash is just another character outside a string.  */
  2786.       if (!traditional)
  2787.     goto randomchar;
  2788.       /* Otherwise, backslash suppresses specialness of following char,
  2789.      so copy it here to prevent the switch from seeing it.
  2790.      But first get any pending identifier processed.  */
  2791.       if (ident_length > 0)
  2792.     goto specialchar;
  2793.       if (ibp < limit)
  2794.     *obp++ = *ibp++;
  2795.       break;
  2796.  
  2797.     case '%':
  2798.       if (ident_length || ip->macro || traditional)
  2799.     goto randomchar;
  2800.       while (*ibp == '\\' && ibp[1] == '\n') {
  2801.     ibp += 2;
  2802.     ++ip->lineno;
  2803.       }
  2804.       if (*ibp != ':')
  2805.     break;
  2806.       /* Treat this %: digraph as if it were #.  */
  2807.       /* Fall through.  */
  2808.  
  2809.     case '#':
  2810.       if (assertions_flag) {
  2811.     if (ident_length)
  2812.       goto specialchar;
  2813.     /* Copy #foo (bar lose) without macro expansion.  */
  2814.     obp[-1] = '#';    /* In case it was '%'. */
  2815.     SKIP_WHITE_SPACE (ibp);
  2816.     while (is_idchar[*ibp])
  2817.       *obp++ = *ibp++;
  2818.     SKIP_WHITE_SPACE (ibp);
  2819.     if (*ibp == '(') {
  2820.       ip->bufp = ibp;
  2821.       skip_paren_group (ip);
  2822.       bcopy ((char *) ibp, (char *) obp, ip->bufp - ibp);
  2823.       obp += ip->bufp - ibp;
  2824.       ibp = ip->bufp;
  2825.     }
  2826.     break;
  2827.       }
  2828.  
  2829.       /* If this is expanding a macro definition, don't recognize
  2830.      preprocessing directives.  */
  2831.       if (ip->macro != 0)
  2832.     goto randomchar;
  2833.       /* If this is expand_into_temp_buffer,
  2834.      don't recognize them either.  Warn about them
  2835.      only after an actual newline at this level,
  2836.      not at the beginning of the input level.  */
  2837.       if (! ip->fname) {
  2838.     if (ip->buf != beg_of_line)
  2839.       warning ("preprocessing directive not recognized within macro arg");
  2840.     goto randomchar;
  2841.       }
  2842.       if (ident_length)
  2843.     goto specialchar;
  2844.  
  2845.       
  2846.       /* # keyword: a # must be first nonblank char on the line */
  2847.       if (beg_of_line == 0)
  2848.     goto randomchar;
  2849.       {
  2850.     U_CHAR *bp;
  2851.  
  2852.     /* Scan from start of line, skipping whitespace, comments
  2853.        and backslash-newlines, and see if we reach this #.
  2854.        If not, this # is not special.  */
  2855.     bp = beg_of_line;
  2856.     /* If -traditional, require # to be at beginning of line.  */
  2857.     if (!traditional) {
  2858.       while (1) {
  2859.         if (is_hor_space[*bp])
  2860.           bp++;
  2861.         else if (*bp == '\\' && bp[1] == '\n')
  2862.           bp += 2;
  2863.         else if (*bp == '/' && bp[1] == '*') {
  2864.           bp += 2;
  2865.           while (!(*bp == '*' && bp[1] == '/'))
  2866.         bp++;
  2867.           bp += 2;
  2868.         }
  2869.         /* There is no point in trying to deal with C++ // comments here,
  2870.            because if there is one, then this # must be part of the
  2871.            comment and we would never reach here.  */
  2872.         else break;
  2873.       }
  2874.       if (c == '%') {
  2875.         if (bp[0] != '%')
  2876.           break;
  2877.         while (bp[1] == '\\' && bp[2] == '\n')
  2878.           bp += 2;
  2879.         if (bp + 1 != ibp)
  2880.           break;
  2881.         /* %: appears at start of line; skip past the ':' too.  */
  2882.         bp++;
  2883.         ibp++;
  2884.       }
  2885.     }
  2886.     if (bp + 1 != ibp)
  2887.       goto randomchar;
  2888.       }
  2889.  
  2890.       /* This # can start a directive.  */
  2891.  
  2892.       --obp;        /* Don't copy the '#' */
  2893.  
  2894.       ip->bufp = ibp;
  2895.       op->bufp = obp;
  2896.       if (! handle_directive (ip, op)) {
  2897. #ifdef USE_C_ALLOCA
  2898.     alloca (0);
  2899. #endif
  2900.     /* Not a known directive: treat it as ordinary text.
  2901.        IP, OP, IBP, etc. have not been changed.  */
  2902.     if (no_output && instack[indepth].fname) {
  2903.       /* If not generating expanded output,
  2904.          what we do with ordinary text is skip it.
  2905.          Discard everything until next # directive.  */
  2906.       skip_if_group (&instack[indepth], 1, 0);
  2907.       RECACHE;
  2908.       beg_of_line = ibp;
  2909.       break;
  2910.     }
  2911.     *obp++ = '#';    /* Copy # (even if it was originally %:).  */
  2912.     /* Don't expand an identifier that could be a macro directive.
  2913.        (Section 3.8.3 of the ANSI C standard)            */
  2914.     SKIP_WHITE_SPACE (ibp);
  2915.     if (is_idstart[*ibp])
  2916.       {
  2917.         *obp++ = *ibp++;
  2918.         while (is_idchar[*ibp])
  2919.           *obp++ = *ibp++;
  2920.       }
  2921.     goto randomchar;
  2922.       }
  2923. #ifdef USE_C_ALLOCA
  2924.       alloca (0);
  2925. #endif
  2926.       /* A # directive has been successfully processed.  */
  2927.       /* If not generating expanded output, ignore everything until
  2928.      next # directive.  */
  2929.       if (no_output && instack[indepth].fname)
  2930.     skip_if_group (&instack[indepth], 1, 0);
  2931.       obp = op->bufp;
  2932.       RECACHE;
  2933.       beg_of_line = ibp;
  2934.       break;
  2935.  
  2936.     case '\"':            /* skip quoted string */
  2937.     case '\'':
  2938.       /* A single quoted string is treated like a double -- some
  2939.      programs (e.g., troff) are perverse this way */
  2940.  
  2941.       if (ident_length)
  2942.     goto specialchar;
  2943.  
  2944.       start_line = ip->lineno;
  2945.  
  2946.       /* Skip ahead to a matching quote.  */
  2947.  
  2948.       while (1) {
  2949.     if (ibp >= limit) {
  2950.       if (ip->macro != 0) {
  2951.         /* try harder: this string crosses a macro expansion boundary.
  2952.            This can happen naturally if -traditional.
  2953.            Otherwise, only -D can make a macro with an unmatched quote.  */
  2954.         POPMACRO;
  2955.         RECACHE;
  2956.         continue;
  2957.       }
  2958.       if (!traditional) {
  2959.         error_with_line (line_for_error (start_line),
  2960.                  "unterminated string or character constant");
  2961.         error_with_line (multiline_string_line,
  2962.                  "possible real start of unterminated constant");
  2963.         multiline_string_line = 0;
  2964.       }
  2965.       break;
  2966.     }
  2967.     *obp++ = *ibp;
  2968.     switch (*ibp++) {
  2969.     case '\n':
  2970.       ++ip->lineno;
  2971.       ++op->lineno;
  2972.       /* Traditionally, end of line ends a string constant with no error.
  2973.          So exit the loop and record the new line.  */
  2974.       if (traditional) {
  2975.         beg_of_line = ibp;
  2976.         goto while2end;
  2977.       }
  2978.       if (c == '\'') {
  2979.         error_with_line (line_for_error (start_line),
  2980.                  "unterminated character constant");
  2981.         goto while2end;
  2982.       }
  2983.       if (pedantic && multiline_string_line == 0) {
  2984.         pedwarn_with_line (line_for_error (start_line),
  2985.                    "string constant runs past end of line");
  2986.       }
  2987.       if (multiline_string_line == 0)
  2988.         multiline_string_line = ip->lineno - 1;
  2989.       break;
  2990.  
  2991.     case '\\':
  2992.       if (ibp >= limit)
  2993.         break;
  2994.       if (*ibp == '\n') {
  2995.         /* Backslash newline is replaced by nothing at all,
  2996.            but keep the line counts correct.  */
  2997.         --obp;
  2998.         ++ibp;
  2999.         ++ip->lineno;
  3000.       } else {
  3001.         /* ANSI stupidly requires that in \\ the second \
  3002.            is *not* prevented from combining with a newline.  */
  3003.         while (*ibp == '\\' && ibp[1] == '\n') {
  3004.           ibp += 2;
  3005.           ++ip->lineno;
  3006.         }
  3007.         *obp++ = *ibp++;
  3008.       }
  3009.       break;
  3010.  
  3011.     case '\"':
  3012.     case '\'':
  3013.       if (ibp[-1] == c)
  3014.         goto while2end;
  3015.       break;
  3016.     }
  3017.       }
  3018.     while2end:
  3019.       break;
  3020.  
  3021.     case '/':
  3022.       if (*ibp == '\\' && ibp[1] == '\n')
  3023.     newline_fix (ibp);
  3024.  
  3025.       if (*ibp != '*'
  3026.       && !(cplusplus_comments && *ibp == '/'))
  3027.     goto randomchar;
  3028.       if (ip->macro != 0)
  3029.     goto randomchar;
  3030.       if (ident_length)
  3031.     goto specialchar;
  3032.  
  3033.       if (*ibp == '/') {
  3034.     /* C++ style comment... */
  3035.     start_line = ip->lineno;
  3036.  
  3037.     /* Comments are equivalent to spaces. */
  3038.     if (! put_out_comments)
  3039.       obp[-1] = ' ';
  3040.  
  3041.     {
  3042.       U_CHAR *before_bp = ibp;
  3043.  
  3044.       while (++ibp < limit) {
  3045.         if (*ibp == '\n') {
  3046.           if (ibp[-1] != '\\') {
  3047.         if (put_out_comments) {
  3048.           bcopy ((char *) before_bp, (char *) obp, ibp - before_bp);
  3049.           obp += ibp - before_bp;
  3050.         }
  3051.         break;
  3052.           }
  3053.           ++ip->lineno;
  3054.           /* Copy the newline into the output buffer, in order to
  3055.          avoid the pain of a #line every time a multiline comment
  3056.          is seen.  */
  3057.           if (!put_out_comments)
  3058.         *obp++ = '\n';
  3059.           ++op->lineno;
  3060.         }
  3061.       }
  3062.       break;
  3063.     }
  3064.       }
  3065.  
  3066.       /* Ordinary C comment.  Skip it, optionally copying it to output.  */
  3067.  
  3068.       start_line = ip->lineno;
  3069.  
  3070.       ++ibp;            /* Skip the star. */
  3071.  
  3072.       /* If this cpp is for lint, we peek inside the comments: */
  3073.       if (for_lint) {
  3074.     U_CHAR *argbp;
  3075.     int cmdlen, arglen;
  3076.     char *lintcmd = get_lintcmd (ibp, limit, &argbp, &arglen, &cmdlen);
  3077.  
  3078.     if (lintcmd != NULL) {
  3079.       op->bufp = obp;
  3080.       check_expand (op, cmdlen + arglen + 14);
  3081.       obp = op->bufp;
  3082.       /* I believe it is always safe to emit this newline: */
  3083.       obp[-1] = '\n';
  3084.       bcopy ("#pragma lint ", (char *) obp, 13);
  3085.       obp += 13;
  3086.       bcopy (lintcmd, (char *) obp, cmdlen);
  3087.       obp += cmdlen;
  3088.  
  3089.       if (arglen != 0) {
  3090.         *(obp++) = ' ';
  3091.         bcopy (argbp, (char *) obp, arglen);
  3092.         obp += arglen;
  3093.       }
  3094.  
  3095.       /* OK, now bring us back to the state we were in before we entered
  3096.          this branch.  We need #line because the #pragma's newline always
  3097.          messes up the line count.  */
  3098.       op->bufp = obp;
  3099.       output_line_directive (ip, op, 0, same_file);
  3100.       check_expand (op, limit - ibp + 2);
  3101.       obp = op->bufp;
  3102.       *(obp++) = '/';
  3103.     }
  3104.       }
  3105.  
  3106.       /* Comments are equivalent to spaces.
  3107.      Note that we already output the slash; we might not want it.
  3108.      For -traditional, a comment is equivalent to nothing.  */
  3109.       if (! put_out_comments) {
  3110.     if (traditional)
  3111.       obp--;
  3112.     else
  3113.       obp[-1] = ' ';
  3114.       }
  3115.       else
  3116.     *obp++ = '*';
  3117.  
  3118.       {
  3119.     U_CHAR *before_bp = ibp;
  3120.  
  3121.     while (ibp < limit) {
  3122.       switch (*ibp++) {
  3123.       case '/':
  3124.         if (warn_comments && *ibp == '*')
  3125.           warning ("`/*' within comment");
  3126.         break;
  3127.       case '*':
  3128.         if (*ibp == '\\' && ibp[1] == '\n')
  3129.           newline_fix (ibp);
  3130.         if (ibp >= limit || *ibp == '/')
  3131.           goto comment_end;
  3132.         break;
  3133.       case '\n':
  3134.         ++ip->lineno;
  3135.         /* Copy the newline into the output buffer, in order to
  3136.            avoid the pain of a #line every time a multiline comment
  3137.            is seen.  */
  3138.         if (!put_out_comments)
  3139.           *obp++ = '\n';
  3140.         ++op->lineno;
  3141.       }
  3142.     }
  3143.       comment_end:
  3144.  
  3145.     if (ibp >= limit)
  3146.       error_with_line (line_for_error (start_line),
  3147.                "unterminated comment");
  3148.     else {
  3149.       ibp++;
  3150.       if (put_out_comments) {
  3151.         bcopy ((char *) before_bp, (char *) obp, ibp - before_bp);
  3152.         obp += ibp - before_bp;
  3153.       }
  3154.     }
  3155.       }
  3156.       break;
  3157.  
  3158.     case '$':
  3159.       if (!dollars_in_ident)
  3160.     goto randomchar;
  3161.       goto letter;
  3162.  
  3163.     case '0': case '1': case '2': case '3': case '4':
  3164.     case '5': case '6': case '7': case '8': case '9':
  3165.       /* If digit is not part of identifier, it starts a number,
  3166.      which means that following letters are not an identifier.
  3167.      "0x5" does not refer to an identifier "x5".
  3168.      So copy all alphanumerics that follow without accumulating
  3169.      as an identifier.  Periods also, for sake of "3.e7".  */
  3170.  
  3171.       if (ident_length == 0) {
  3172.     for (;;) {
  3173.       while (ibp[0] == '\\' && ibp[1] == '\n') {
  3174.         ++ip->lineno;
  3175.         ibp += 2;
  3176.       }
  3177.       c = *ibp++;
  3178.       if (!is_idchar[c] && c != '.') {
  3179.         --ibp;
  3180.         break;
  3181.       }
  3182.       *obp++ = c;
  3183.       /* A sign can be part of a preprocessing number
  3184.          if it follows an e.  */
  3185.       if (c == 'e' || c == 'E') {
  3186.         while (ibp[0] == '\\' && ibp[1] == '\n') {
  3187.           ++ip->lineno;
  3188.           ibp += 2;
  3189.         }
  3190.         if (*ibp == '+' || *ibp == '-') {
  3191.           *obp++ = *ibp++;
  3192.           /* But traditional C does not let the token go past the sign.  */
  3193.           if (traditional)
  3194.         break;
  3195.         }
  3196.       }
  3197.     }
  3198.     break;
  3199.       }
  3200.       /* fall through */
  3201.  
  3202.     case '_':
  3203.     case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
  3204.     case 'g': case 'h': case 'i': case 'j': case 'k': case 'l':
  3205.     case 'm': case 'n': case 'o': case 'p': case 'q': case 'r':
  3206.     case 's': case 't': case 'u': case 'v': case 'w': case 'x':
  3207.     case 'y': case 'z':
  3208.     case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
  3209.     case 'G': case 'H': case 'I': case 'J': case 'K': case 'L':
  3210.     case 'M': case 'N': case 'O': case 'P': case 'Q': case 'R':
  3211.     case 'S': case 'T': case 'U': case 'V': case 'W': case 'X':
  3212.     case 'Y': case 'Z':
  3213.     letter:
  3214.       ident_length++;
  3215.       /* Compute step of hash function, to avoid a proc call on every token */
  3216.       hash = HASHSTEP (hash, c);
  3217.       break;
  3218.  
  3219.     case '\n':
  3220.       if (ip->fname == 0 && *ibp == '-') {
  3221.     /* Newline - inhibits expansion of preceding token.
  3222.        If expanding a macro arg, we keep the newline -.
  3223.        In final output, it is deleted.
  3224.        We recognize Newline - in macro bodies and macro args.  */
  3225.     if (! concatenated) {
  3226.       ident_length = 0;
  3227.       hash = 0;
  3228.     }
  3229.     ibp++;
  3230.     if (!output_marks) {
  3231.       obp--;
  3232.     } else {
  3233.       /* If expanding a macro arg, keep the newline -.  */
  3234.       *obp++ = '-';
  3235.     }
  3236.     break;
  3237.       }
  3238.  
  3239.       /* If reprocessing a macro expansion, newline is a special marker.  */
  3240.       else if (ip->macro != 0) {
  3241.     /* Newline White is a "funny space" to separate tokens that are
  3242.        supposed to be separate but without space between.
  3243.        Here White means any whitespace character.
  3244.        Newline - marks a recursive macro use that is not
  3245.        supposed to be expandable.  */
  3246.  
  3247.     if (is_space[*ibp]) {
  3248.       /* Newline Space does not prevent expansion of preceding token
  3249.          so expand the preceding token and then come back.  */
  3250.       if (ident_length > 0)
  3251.         goto specialchar;
  3252.  
  3253.       /* If generating final output, newline space makes a space.  */
  3254.       if (!output_marks) {
  3255.         obp[-1] = *ibp++;
  3256.         /* And Newline Newline makes a newline, so count it.  */
  3257.         if (obp[-1] == '\n')
  3258.           op->lineno++;
  3259.       } else {
  3260.         /* If expanding a macro arg, keep the newline space.
  3261.            If the arg gets stringified, newline space makes nothing.  */
  3262.         *obp++ = *ibp++;
  3263.       }
  3264.     } else abort ();    /* Newline followed by something random?  */
  3265.     break;
  3266.       }
  3267.  
  3268.       /* If there is a pending identifier, handle it and come back here.  */
  3269.       if (ident_length > 0)
  3270.     goto specialchar;
  3271.  
  3272.       beg_of_line = ibp;
  3273.  
  3274.       /* Update the line counts and output a #line if necessary.  */
  3275.       ++ip->lineno;
  3276.       ++op->lineno;
  3277.       if (ip->lineno != op->lineno) {
  3278.     op->bufp = obp;
  3279.     output_line_directive (ip, op, 1, same_file);
  3280.     check_expand (op, limit - ibp);
  3281.     obp = op->bufp;
  3282.       }
  3283.       break;
  3284.  
  3285.       /* Come here either after (1) a null character that is part of the input
  3286.      or (2) at the end of the input, because there is a null there.  */
  3287.     case 0:
  3288.       if (ibp <= limit)
  3289.     /* Our input really contains a null character.  */
  3290.     goto randomchar;
  3291.  
  3292.       /* At end of a macro-expansion level, pop it and read next level.  */
  3293.       if (ip->macro != 0) {
  3294.     obp--;
  3295.     ibp--;
  3296.     /* If traditional, and we have an identifier that ends here,
  3297.        process it now, so we get the right error for recursion.  */
  3298.     if (traditional && ident_length
  3299.         && ! is_idchar[*instack[indepth - 1].bufp]) {
  3300.       redo_char = 1;
  3301.       goto randomchar;
  3302.     }
  3303.     POPMACRO;
  3304.     RECACHE;
  3305.     break;
  3306.       }
  3307.  
  3308.       /* If we don't have a pending identifier,
  3309.      return at end of input.  */
  3310.       if (ident_length == 0) {
  3311.     obp--;
  3312.     ibp--;
  3313.     op->bufp = obp;
  3314.     ip->bufp = ibp;
  3315.     goto ending;
  3316.       }
  3317.  
  3318.       /* If we do have a pending identifier, just consider this null
  3319.      a special character and arrange to dispatch on it again.
  3320.      The second time, IDENT_LENGTH will be zero so we will return.  */
  3321.  
  3322.       /* Fall through */
  3323.  
  3324. specialchar:
  3325.  
  3326.       /* Handle the case of a character such as /, ', " or null
  3327.      seen following an identifier.  Back over it so that
  3328.      after the identifier is processed the special char
  3329.      will be dispatched on again.  */
  3330.  
  3331.       ibp--;
  3332.       obp--;
  3333.       redo_char = 1;
  3334.  
  3335.     default:
  3336.  
  3337. randomchar:
  3338.  
  3339.       if (ident_length > 0) {
  3340.     register HASHNODE *hp;
  3341.  
  3342.     /* We have just seen an identifier end.  If it's a macro, expand it.
  3343.  
  3344.        IDENT_LENGTH is the length of the identifier
  3345.        and HASH is its hash code.
  3346.  
  3347.        The identifier has already been copied to the output,
  3348.        so if it is a macro we must remove it.
  3349.  
  3350.        If REDO_CHAR is 0, the char that terminated the identifier
  3351.        has been skipped in the output and the input.
  3352.        OBP-IDENT_LENGTH-1 points to the identifier.
  3353.        If the identifier is a macro, we must back over the terminator.
  3354.  
  3355.        If REDO_CHAR is 1, the terminating char has already been
  3356.        backed over.  OBP-IDENT_LENGTH points to the identifier.  */
  3357.  
  3358. #ifdef CPP_SYMNAME_HOOK
  3359.     {
  3360.       char *begin = obp - ident_length;
  3361.       if (!redo_char)
  3362.         {
  3363.           begin--;
  3364.         }
  3365.       CPP_SYMNAME_HOOK (begin, ident_length);
  3366.     }
  3367. #endif
  3368.     if (!pcp_outfile || pcp_inside_if) {
  3369.       for (hp = hashtab[MAKE_POS (hash) % HASHSIZE]; hp != NULL;
  3370.            hp = hp->next) {
  3371.         
  3372.         if (hp->length == ident_length) {
  3373.           int obufp_before_macroname;
  3374.           int op_lineno_before_macroname;
  3375.           register int i = ident_length;
  3376.           register U_CHAR *p = hp->name;
  3377.           register U_CHAR *q = obp - i;
  3378.           int disabled;
  3379.           
  3380.           if (! redo_char)
  3381.         q--;
  3382.           
  3383.           do {        /* All this to avoid a strncmp () */
  3384.         if (*p++ != *q++)
  3385.           goto hashcollision;
  3386.           } while (--i);
  3387.           
  3388.           /* We found a use of a macro name.
  3389.          see if the context shows it is a macro call.  */
  3390.           
  3391.           /* Back up over terminating character if not already done.  */
  3392.           if (! redo_char) {
  3393.         ibp--;
  3394.         obp--;
  3395.           }
  3396.           
  3397.           /* Save this as a displacement from the beginning of the output
  3398.          buffer.  We can not save this as a position in the output
  3399.          buffer, because it may get realloc'ed by RECACHE.  */
  3400.           obufp_before_macroname = (obp - op->buf) - ident_length;
  3401.           op_lineno_before_macroname = op->lineno;
  3402.           
  3403.           if (hp->type == T_PCSTRING) {
  3404.         pcstring_used (hp); /* Mark the definition of this key
  3405.                        as needed, ensuring that it
  3406.                        will be output.  */
  3407.         break;        /* Exit loop, since the key cannot have a
  3408.                    definition any longer.  */
  3409.           }
  3410.  
  3411.           /* Record whether the macro is disabled.  */
  3412.           disabled = hp->type == T_DISABLED;
  3413.           
  3414.           /* This looks like a macro ref, but if the macro was disabled,
  3415.          just copy its name and put in a marker if requested.  */
  3416.           
  3417.           if (disabled) {
  3418. #if 0
  3419.         /* This error check caught useful cases such as
  3420.            #define foo(x,y) bar (x (y,0), y)
  3421.            foo (foo, baz)  */
  3422.         if (traditional)
  3423.           error ("recursive use of macro `%s'", hp->name);
  3424. #endif
  3425.         
  3426.         if (output_marks) {
  3427.           check_expand (op, limit - ibp + 2);
  3428.           *obp++ = '\n';
  3429.           *obp++ = '-';
  3430.         }
  3431.         break;
  3432.           }
  3433.           
  3434.           /* If macro wants an arglist, verify that a '(' follows.
  3435.          first skip all whitespace, copying it to the output
  3436.          after the macro name.  Then, if there is no '(',
  3437.          decide this is not a macro call and leave things that way.  */
  3438.           if ((hp->type == T_MACRO || hp->type == T_DISABLED)
  3439.           && hp->value.defn->nargs >= 0)
  3440.         {
  3441.           U_CHAR *old_ibp = ibp;
  3442.           U_CHAR *old_obp = obp;
  3443.           int old_iln = ip->lineno;
  3444.           int old_oln = op->lineno;
  3445.           
  3446.           while (1) {
  3447.             /* Scan forward over whitespace, copying it to the output.  */
  3448.             if (ibp == limit && ip->macro != 0) {
  3449.               POPMACRO;
  3450.               RECACHE;
  3451.               old_ibp = ibp;
  3452.               old_obp = obp;
  3453.               old_iln = ip->lineno;
  3454.               old_oln = op->lineno;
  3455.             }
  3456.             /* A comment: copy it unchanged or discard it.  */
  3457.             else if (*ibp == '/' && ibp[1] == '*') {
  3458.               if (put_out_comments) {
  3459.             *obp++ = '/';
  3460.             *obp++ = '*';
  3461.               } else if (! traditional) {
  3462.             *obp++ = ' ';
  3463.               }
  3464.               ibp += 2;
  3465.               while (ibp + 1 != limit
  3466.                  && !(ibp[0] == '*' && ibp[1] == '/')) {
  3467.             /* We need not worry about newline-marks,
  3468.                since they are never found in comments.  */
  3469.             if (*ibp == '\n') {
  3470.               /* Newline in a file.  Count it.  */
  3471.               ++ip->lineno;
  3472.               ++op->lineno;
  3473.             }
  3474.             if (put_out_comments)
  3475.               *obp++ = *ibp++;
  3476.             else
  3477.               ibp++;
  3478.               }
  3479.               ibp += 2;
  3480.               if (put_out_comments) {
  3481.             *obp++ = '*';
  3482.             *obp++ = '/';
  3483.               }
  3484.             }
  3485.             else if (is_space[*ibp]) {
  3486.               *obp++ = *ibp++;
  3487.               if (ibp[-1] == '\n') {
  3488.             if (ip->macro == 0) {
  3489.               /* Newline in a file.  Count it.  */
  3490.               ++ip->lineno;
  3491.               ++op->lineno;
  3492.             } else if (!output_marks) {
  3493.               /* A newline mark, and we don't want marks
  3494.                  in the output.  If it is newline-hyphen,
  3495.                  discard it entirely.  Otherwise, it is
  3496.                  newline-whitechar, so keep the whitechar.  */
  3497.               obp--;
  3498.               if (*ibp == '-')
  3499.                 ibp++;
  3500.               else {
  3501.                 if (*ibp == '\n')
  3502.                   ++op->lineno;
  3503.                 *obp++ = *ibp++;
  3504.               }
  3505.             } else {
  3506.               /* A newline mark; copy both chars to the output.  */
  3507.               *obp++ = *ibp++;
  3508.             }
  3509.               }
  3510.             }
  3511.             else break;
  3512.           }
  3513.           if (*ibp != '(') {
  3514.             /* It isn't a macro call.
  3515.                Put back the space that we just skipped.  */
  3516.             ibp = old_ibp;
  3517.             obp = old_obp;
  3518.             ip->lineno = old_iln;
  3519.             op->lineno = old_oln;
  3520.             /* Exit the for loop.  */
  3521.             break;
  3522.           }
  3523.         }
  3524.           
  3525.           /* This is now known to be a macro call.
  3526.          Discard the macro name from the output,
  3527.          along with any following whitespace just copied,
  3528.          but preserve newlines if not outputting marks since this
  3529.          is more likely to do the right thing with line numbers.  */
  3530.           obp = op->buf + obufp_before_macroname;
  3531.           if (output_marks)
  3532.         op->lineno = op_lineno_before_macroname;
  3533.           else {
  3534.         int newlines = op->lineno - op_lineno_before_macroname;
  3535.         while (0 < newlines--)
  3536.           *obp++ = '\n';
  3537.           }
  3538.  
  3539.           /* Prevent accidental token-pasting with a character
  3540.          before the macro call.  */
  3541.           if (!traditional && obp != op->buf) {
  3542.         switch (obp[-1]) {
  3543.         case '!':  case '%':  case '&':  case '*':
  3544.         case '+':  case '-':  case '/':  case ':':
  3545.         case '<':  case '=':  case '>':  case '^':
  3546.         case '|':
  3547.           /* If we are expanding a macro arg, make a newline marker
  3548.              to separate the tokens.  If we are making real output,
  3549.              a plain space will do.  */
  3550.           if (output_marks)
  3551.             *obp++ = '\n';
  3552.           *obp++ = ' ';
  3553.         }
  3554.           }
  3555.  
  3556.           /* Expand the macro, reading arguments as needed,
  3557.          and push the expansion on the input stack.  */
  3558.           ip->bufp = ibp;
  3559.           op->bufp = obp;
  3560.           macroexpand (hp, op);
  3561.           
  3562.           /* Reexamine input stack, since macroexpand has pushed
  3563.          a new level on it.  */
  3564.           obp = op->bufp;
  3565.           RECACHE;
  3566.           break;
  3567.         }
  3568. hashcollision:
  3569.         ;
  3570.       }            /* End hash-table-search loop */
  3571.     }
  3572.     ident_length = hash = 0; /* Stop collecting identifier */
  3573.     redo_char = 0;
  3574.     concatenated = 0;
  3575.       }                /* End if (ident_length > 0) */
  3576.     }                /* End switch */
  3577.   }                /* End per-char loop */
  3578.  
  3579.   /* Come here to return -- but first give an error message
  3580.      if there was an unterminated successful conditional.  */
  3581.  ending:
  3582.   if (if_stack != ip->if_stack)
  3583.     {
  3584.       char *str;
  3585.  
  3586.       switch (if_stack->type)
  3587.     {
  3588.     case T_IF:
  3589.       str = "if";
  3590.       break;
  3591.     case T_IFDEF:
  3592.       str = "ifdef";
  3593.       break;
  3594.     case T_IFNDEF:
  3595.       str = "ifndef";
  3596.       break;
  3597.     case T_ELSE:
  3598.       str = "else";
  3599.       break;
  3600.     case T_ELIF:
  3601.       str = "elif";
  3602.       break;
  3603.     default:
  3604.       abort ();
  3605.     }
  3606.  
  3607.       error_with_line (line_for_error (if_stack->lineno),
  3608.                "unterminated `#%s' conditional", str);
  3609.   }
  3610.   if_stack = ip->if_stack;
  3611. }
  3612.  
  3613. /*
  3614.  * Rescan a string into a temporary buffer and return the result
  3615.  * as a FILE_BUF.  Note this function returns a struct, not a pointer.
  3616.  *
  3617.  * OUTPUT_MARKS nonzero means keep Newline markers found in the input
  3618.  * and insert such markers when appropriate.  See `rescan' for details.
  3619.  * OUTPUT_MARKS is 1 for macroexpanding a macro argument separately
  3620.  * before substitution; it is 0 for other uses.
  3621.  */
  3622. static FILE_BUF
  3623. expand_to_temp_buffer (buf, limit, output_marks, assertions)
  3624.      U_CHAR *buf, *limit;
  3625.      int output_marks, assertions;
  3626. {
  3627.   register FILE_BUF *ip;
  3628.   FILE_BUF obuf;
  3629.   int length = limit - buf;
  3630.   U_CHAR *buf1;
  3631.   int odepth = indepth;
  3632.   int save_assertions_flag = assertions_flag;
  3633.  
  3634.   assertions_flag = assertions;
  3635.  
  3636.   if (length < 0)
  3637.     abort ();
  3638.  
  3639.   /* Set up the input on the input stack.  */
  3640.  
  3641.   buf1 = (U_CHAR *) alloca (length + 1);
  3642.   {
  3643.     register U_CHAR *p1 = buf;
  3644.     register U_CHAR *p2 = buf1;
  3645.  
  3646.     while (p1 != limit)
  3647.       *p2++ = *p1++;
  3648.   }
  3649.   buf1[length] = 0;
  3650.  
  3651.   /* Set up to receive the output.  */
  3652.  
  3653.   obuf.length = length * 2 + 100; /* Usually enough.  Why be stingy?  */
  3654.   obuf.bufp = obuf.buf = (U_CHAR *) xmalloc (obuf.length);
  3655.   obuf.fname = 0;
  3656.   obuf.macro = 0;
  3657.   obuf.free_ptr = 0;
  3658.  
  3659.   CHECK_DEPTH ({return obuf;});
  3660.  
  3661.   ++indepth;
  3662.  
  3663.   ip = &instack[indepth];
  3664.   ip->fname = 0;
  3665.   ip->nominal_fname = 0;
  3666.   ip->system_header_p = 0;
  3667.   ip->macro = 0;
  3668.   ip->free_ptr = 0;
  3669.   ip->length = length;
  3670.   ip->buf = ip->bufp = buf1;
  3671.   ip->if_stack = if_stack;
  3672.  
  3673.   ip->lineno = obuf.lineno = 1;
  3674.  
  3675.   /* Scan the input, create the output.  */
  3676.   rescan (&obuf, output_marks);
  3677.  
  3678.   /* Pop input stack to original state.  */
  3679.   --indepth;
  3680.  
  3681.   if (indepth != odepth)
  3682.     abort ();
  3683.  
  3684.   /* Record the output.  */
  3685.   obuf.length = obuf.bufp - obuf.buf;
  3686.  
  3687.   assertions_flag = save_assertions_flag;
  3688.   return obuf;
  3689. }
  3690.  
  3691. /*
  3692.  * Process a # directive.  Expects IP->bufp to point after the '#', as in
  3693.  * `#define foo bar'.  Passes to the directive handler
  3694.  * (do_define, do_include, etc.): the addresses of the 1st and
  3695.  * last chars of the directive (starting immediately after the #
  3696.  * keyword), plus op and the keyword table pointer.  If the directive
  3697.  * contains comments it is copied into a temporary buffer sans comments
  3698.  * and the temporary buffer is passed to the directive handler instead.
  3699.  * Likewise for backslash-newlines.
  3700.  *
  3701.  * Returns nonzero if this was a known # directive.
  3702.  * Otherwise, returns zero, without advancing the input pointer.
  3703.  */
  3704.  
  3705. static int
  3706. handle_directive (ip, op)
  3707.      FILE_BUF *ip, *op;
  3708. {
  3709.   register U_CHAR *bp, *cp;
  3710.   register struct directive *kt;
  3711.   register int ident_length;
  3712.   U_CHAR *resume_p;
  3713.  
  3714.   /* Nonzero means we must copy the entire directive
  3715.      to get rid of comments or backslash-newlines.  */
  3716.   int copy_directive = 0;
  3717.  
  3718.   U_CHAR *ident, *after_ident;
  3719.  
  3720.   bp = ip->bufp;
  3721.  
  3722.   /* Record where the directive started.  do_xifdef needs this.  */
  3723.   directive_start = bp - 1;
  3724.  
  3725.   /* Skip whitespace and \-newline.  */
  3726.   while (1) {
  3727.     if (is_hor_space[*bp]) {
  3728.       if (*bp != ' ' && *bp != '\t' && pedantic)
  3729.     pedwarn ("%s in preprocessing directive", char_name[*bp]);
  3730.       bp++;
  3731.     } else if (*bp == '/' && (bp[1] == '*'
  3732.                   || (cplusplus_comments && bp[1] == '/'))) {
  3733.       ip->bufp = bp + 2;
  3734.       skip_to_end_of_comment (ip, &ip->lineno, 0);
  3735.       bp = ip->bufp;
  3736.     } else if (*bp == '\\' && bp[1] == '\n') {
  3737.       bp += 2; ip->lineno++;
  3738.     } else break;
  3739.   }
  3740.  
  3741.   /* Now find end of directive name.
  3742.      If we encounter a backslash-newline, exchange it with any following
  3743.      symbol-constituents so that we end up with a contiguous name.  */
  3744.  
  3745.   cp = bp;
  3746.   while (1) {
  3747.     if (is_idchar[*cp])
  3748.       cp++;
  3749.     else {
  3750.       if (*cp == '\\' && cp[1] == '\n')
  3751.     name_newline_fix (cp);
  3752.       if (is_idchar[*cp])
  3753.     cp++;
  3754.       else break;
  3755.     }
  3756.   }
  3757.   ident_length = cp - bp;
  3758.   ident = bp;
  3759.   after_ident = cp;
  3760.  
  3761.   /* A line of just `#' becomes blank.  */
  3762.  
  3763.   if (ident_length == 0 && *after_ident == '\n') {
  3764.     ip->bufp = after_ident;
  3765.     return 1;
  3766.   }
  3767.  
  3768.   if (ident_length == 0 || !is_idstart[*ident]) {
  3769.     U_CHAR *p = ident;
  3770.     while (is_idchar[*p]) {
  3771.       if (*p < '0' || *p > '9')
  3772.     break;
  3773.       p++;
  3774.     }
  3775.     /* Handle # followed by a line number.  */
  3776.     if (p != ident && !is_idchar[*p]) {
  3777.       static struct directive line_directive_table[] = {
  3778.     {  4, do_line, "line", T_LINE},
  3779.       };
  3780.       if (pedantic)
  3781.     pedwarn ("`#' followed by integer");
  3782.       after_ident = ident;
  3783.       kt = line_directive_table;
  3784.       goto old_linenum;
  3785.     }
  3786.  
  3787.     /* Avoid error for `###' and similar cases unless -pedantic.  */
  3788.     if (p == ident) {
  3789.       while (*p == '#' || is_hor_space[*p]) p++;
  3790.       if (*p == '\n') {
  3791.     if (pedantic && !lang_asm)
  3792.       warning ("invalid preprocessing directive");
  3793.     return 0;
  3794.       }
  3795.     }
  3796.  
  3797.     if (!lang_asm)
  3798.       error ("invalid preprocessing directive name");
  3799.  
  3800.     return 0;
  3801.   }
  3802.  
  3803.   /*
  3804.    * Decode the keyword and call the appropriate expansion
  3805.    * routine, after moving the input pointer up to the next line.
  3806.    */
  3807.   for (kt = directive_table; kt->length > 0; kt++) {
  3808.     if (kt->length == ident_length && !bcmp (kt->name, ident, ident_length)) {
  3809.       register U_CHAR *buf;
  3810.       register U_CHAR *limit;
  3811.       int unterminated;
  3812.       int junk;
  3813.       int *already_output;
  3814.  
  3815.       /* Nonzero means do not delete comments within the directive.
  3816.      #define needs this when -traditional.  */
  3817.       int keep_comments;
  3818.  
  3819.     old_linenum:
  3820.  
  3821.       limit = ip->buf + ip->length;
  3822.       unterminated = 0;
  3823.       already_output = 0;
  3824.       keep_comments = traditional && kt->traditional_comments;
  3825.       /* #import is defined only in Objective C, or when on the NeXT.  */
  3826.       if (kt->type == T_IMPORT
  3827.       && !(objc || lookup ((U_CHAR *) "__NeXT__", -1, -1)))
  3828.     break;
  3829.  
  3830.       /* Find the end of this directive (first newline not backslashed
  3831.      and not in a string or comment).
  3832.      Set COPY_DIRECTIVE if the directive must be copied
  3833.      (it contains a backslash-newline or a comment).  */
  3834.  
  3835.       buf = bp = after_ident;
  3836.       while (bp < limit) {
  3837.     register U_CHAR c = *bp++;
  3838.     switch (c) {
  3839.     case '\\':
  3840.       if (bp < limit) {
  3841.         if (*bp == '\n') {
  3842.           ip->lineno++;
  3843.           copy_directive = 1;
  3844.           bp++;
  3845.         } else if (traditional)
  3846.           bp++;
  3847.       }
  3848.       break;
  3849.  
  3850.     case '\'':
  3851.     case '\"':
  3852.       bp = skip_quoted_string (bp - 1, limit, ip->lineno, &ip->lineno, ©_directive, &unterminated);
  3853.       /* Don't bother calling the directive if we already got an error
  3854.          message due to unterminated string.  Skip everything and pretend
  3855.          we called the directive.  */
  3856.       if (unterminated) {
  3857.         if (traditional) {
  3858.           /* Traditional preprocessing permits unterminated strings.  */
  3859.           ip->bufp = bp;
  3860.           goto endloop1;
  3861.         }
  3862.         ip->bufp = bp;
  3863.         return 1;
  3864.       }
  3865.       break;
  3866.  
  3867.       /* <...> is special for #include.  */
  3868.     case '<':
  3869.       if (!kt->angle_brackets)
  3870.         break;
  3871.       while (bp < limit && *bp != '>' && *bp != '\n') {
  3872.         if (*bp == '\\' && bp[1] == '\n') {
  3873.           ip->lineno++;
  3874.           copy_directive = 1;
  3875.           bp++;
  3876.         }
  3877.         bp++;
  3878.       }
  3879.       break;
  3880.  
  3881.     case '/':
  3882.       if (*bp == '\\' && bp[1] == '\n')
  3883.         newline_fix (bp);
  3884.       if (*bp == '*'
  3885.           || (cplusplus_comments && *bp == '/')) {
  3886.         U_CHAR *obp = bp - 1;
  3887.         ip->bufp = bp + 1;
  3888.         skip_to_end_of_comment (ip, &ip->lineno, 0);
  3889.         bp = ip->bufp;
  3890.         /* No need to copy the directive because of a comment at the end;
  3891.            just don't include the comment in the directive.  */
  3892.         if (bp == limit || *bp == '\n') {
  3893.           bp = obp;
  3894.           goto endloop1;
  3895.         }
  3896.         /* Don't remove the comments if -traditional.  */
  3897.         if (! keep_comments)
  3898.           copy_directive++;
  3899.       }
  3900.       break;
  3901.  
  3902.     case '\f':
  3903.     case '\r':
  3904.     case '\v':
  3905.       if (pedantic)
  3906.         pedwarn ("%s in preprocessing directive", char_name[c]);
  3907.       break;
  3908.  
  3909.     case '\n':
  3910.       --bp;        /* Point to the newline */
  3911.       ip->bufp = bp;
  3912.       goto endloop1;
  3913.     }
  3914.       }
  3915.       ip->bufp = bp;
  3916.  
  3917.     endloop1:
  3918.       resume_p = ip->bufp;
  3919.       /* BP is the end of the directive.
  3920.      RESUME_P is the next interesting data after the directive.
  3921.      A comment may come between.  */
  3922.  
  3923.       /* If a directive should be copied through, and -E was given,
  3924.      pass it through before removing comments.  */
  3925.       if (!no_output && kt->pass_thru && put_out_comments) {
  3926.         int len;
  3927.  
  3928.     /* Output directive name.  */
  3929.         check_expand (op, kt->length + 2);
  3930.     /* Make sure # is at the start of a line */
  3931.     if (op->bufp > op->buf && op->bufp[-1] != '\n') {
  3932.       op->lineno++;
  3933.       *op->bufp++ = '\n';
  3934.     }
  3935.         *op->bufp++ = '#';
  3936.         bcopy (kt->name, op->bufp, kt->length);
  3937.         op->bufp += kt->length;
  3938.  
  3939.     /* Output arguments.  */
  3940.     len = (bp - buf);
  3941.     check_expand (op, len);
  3942.     bcopy (buf, (char *) op->bufp, len);
  3943.     op->bufp += len;
  3944.     /* Take account of any (escaped) newlines just output.  */
  3945.     while (--len >= 0)
  3946.       if (buf[len] == '\n')
  3947.         op->lineno++;
  3948.  
  3949.     already_output = &junk;
  3950.       }                /* Don't we need a newline or #line? */
  3951.  
  3952.       if (copy_directive) {
  3953.     register U_CHAR *xp = buf;
  3954.     /* Need to copy entire directive into temp buffer before dispatching */
  3955.  
  3956.     cp = (U_CHAR *) alloca (bp - buf + 5); /* room for directive plus
  3957.                           some slop */
  3958.     buf = cp;
  3959.  
  3960.     /* Copy to the new buffer, deleting comments
  3961.        and backslash-newlines (and whitespace surrounding the latter).  */
  3962.  
  3963.     while (xp < bp) {
  3964.       register U_CHAR c = *xp++;
  3965.       *cp++ = c;
  3966.  
  3967.       switch (c) {
  3968.       case '\n':
  3969.         abort ();  /* A bare newline should never part of the line.  */
  3970.         break;
  3971.  
  3972.         /* <...> is special for #include.  */
  3973.       case '<':
  3974.         if (!kt->angle_brackets)
  3975.           break;
  3976.         while (xp < bp && c != '>') {
  3977.           c = *xp++;
  3978.           if (c == '\\' && xp < bp && *xp == '\n')
  3979.         xp++;
  3980.           else
  3981.         *cp++ = c;
  3982.         }
  3983.         break;
  3984.  
  3985.       case '\\':
  3986.         if (*xp == '\n') {
  3987.           xp++;
  3988.           cp--;
  3989.           if (cp != buf && is_hor_space[cp[-1]]) {
  3990.         while (cp - 1 != buf && is_hor_space[cp[-2]])
  3991.           cp--;
  3992.         SKIP_WHITE_SPACE (xp);
  3993.           } else if (is_hor_space[*xp]) {
  3994.         *cp++ = *xp++;
  3995.         SKIP_WHITE_SPACE (xp);
  3996.           }
  3997.         } else if (traditional && xp < bp) {
  3998.           *cp++ = *xp++;
  3999.         }
  4000.         break;
  4001.  
  4002.       case '\'':
  4003.       case '\"':
  4004.         {
  4005.           register U_CHAR *bp1
  4006.         = skip_quoted_string (xp - 1, bp, ip->lineno,
  4007.                       NULL_PTR, NULL_PTR, NULL_PTR);
  4008.           while (xp != bp1)
  4009.         if (*xp == '\\') {
  4010.           if (*++xp != '\n')
  4011.             *cp++ = '\\';
  4012.           else
  4013.             xp++;
  4014.         } else
  4015.           *cp++ = *xp++;
  4016.         }
  4017.         break;
  4018.  
  4019.       case '/':
  4020.         if (*xp == '*'
  4021.         || (cplusplus_comments && *xp == '/')) {
  4022.           ip->bufp = xp + 1;
  4023.           /* If we already copied the directive through,
  4024.          already_output != 0 prevents outputting comment now.  */
  4025.           skip_to_end_of_comment (ip, already_output, 0);
  4026.           if (keep_comments)
  4027.         while (xp != ip->bufp)
  4028.           *cp++ = *xp++;
  4029.           /* Delete or replace the slash.  */
  4030.           else if (traditional)
  4031.         cp--;
  4032.           else
  4033.         cp[-1] = ' ';
  4034.           xp = ip->bufp;
  4035.         }
  4036.       }
  4037.     }
  4038.  
  4039.     /* Null-terminate the copy.  */
  4040.  
  4041.     *cp = 0;
  4042.       } else
  4043.     cp = bp;
  4044.  
  4045.       ip->bufp = resume_p;
  4046.  
  4047.       /* Some directives should be written out for cc1 to process,
  4048.      just as if they were not defined.  And sometimes we're copying
  4049.      definitions through.  */
  4050.  
  4051.       if (!no_output && already_output == 0
  4052.       && (kt->pass_thru
  4053. /* Phil.B 27-Mar-93 not quite sure to keep this old fix */      
  4054. #if defined (__amigaos__) && 0
  4055.           || ((kt->type == T_DEFINE || kt->type == T_UNDEF)
  4056. #else
  4057.           || (kt->type == T_DEFINE
  4058. #endif /* __amigaos__ */
  4059.           && (dump_macros == dump_names
  4060.               || dump_macros == dump_definitions)))) {
  4061.         int len;
  4062.  
  4063.     /* Output directive name.  */
  4064.         check_expand (op, kt->length + 1);
  4065.         *op->bufp++ = '#';
  4066.         bcopy (kt->name, (char *) op->bufp, kt->length);
  4067.         op->bufp += kt->length;
  4068.  
  4069.     if (kt->pass_thru || dump_macros == dump_definitions) {
  4070.       /* Output arguments.  */
  4071.       len = (cp - buf);
  4072.       check_expand (op, len);
  4073.       bcopy (buf, (char *) op->bufp, len);
  4074.       op->bufp += len;
  4075.     } else if (kt->type == T_DEFINE && dump_macros == dump_names) {
  4076.       U_CHAR *xp = buf;
  4077.       U_CHAR *yp;
  4078.       SKIP_WHITE_SPACE (xp);
  4079.       yp = xp;
  4080.       while (is_idchar[*xp]) xp++;
  4081.       len = (xp - yp);
  4082.       check_expand (op, len + 1);
  4083.       *op->bufp++ = ' ';
  4084.       bcopy (yp, op->bufp, len);
  4085.       op->bufp += len;
  4086.     }
  4087.       }                /* Don't we need a newline or #line? */
  4088.  
  4089.       /* Call the appropriate directive handler.  buf now points to
  4090.      either the appropriate place in the input buffer, or to
  4091.      the temp buffer if it was necessary to make one.  cp
  4092.      points to the first char after the contents of the (possibly
  4093.      copied) directive, in either case. */
  4094.       (*kt->func) (buf, cp, op, kt);
  4095.       check_expand (op, ip->length - (ip->bufp - ip->buf));
  4096.  
  4097.       return 1;
  4098.     }
  4099.   }
  4100.  
  4101.   /* It is deliberate that we don't warn about undefined directives.
  4102.      That is the responsibility of cc1.  */
  4103.   return 0;
  4104. }
  4105.  
  4106. static struct tm *
  4107. timestamp ()
  4108. {
  4109.   static struct tm *timebuf;
  4110.   if (!timebuf) {
  4111.     time_t t = time ((time_t *)0);
  4112.     timebuf = localtime (&t);
  4113.   }
  4114.   return timebuf;
  4115. }
  4116.  
  4117. static char *monthnames[] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
  4118.                  "Jul", "Aug", "Sep", "Oct", "Nov", "Dec",
  4119.                 };
  4120.  
  4121. /*
  4122.  * expand things like __FILE__.  Place the expansion into the output
  4123.  * buffer *without* rescanning.
  4124.  */
  4125.  
  4126. static void
  4127. special_symbol (hp, op)
  4128.      HASHNODE *hp;
  4129.      FILE_BUF *op;
  4130. {
  4131.   char *buf;
  4132.   int i, len;
  4133.   int true_indepth;
  4134.   FILE_BUF *ip = NULL;
  4135.   struct tm *timebuf;
  4136.  
  4137.   int paren = 0;        /* For special `defined' keyword */
  4138.  
  4139.   if (pcp_outfile && pcp_inside_if
  4140.       && hp->type != T_SPEC_DEFINED && hp->type != T_CONST)
  4141.     error ("Predefined macro `%s' used inside `#if' during precompilation",
  4142.        hp->name);
  4143.     
  4144.   for (i = indepth; i >= 0; i--)
  4145.     if (instack[i].fname != NULL) {
  4146.       ip = &instack[i];
  4147.       break;
  4148.     }
  4149.   if (ip == NULL) {
  4150.     error ("cccp error: not in any file?!");
  4151.     return;            /* the show must go on */
  4152.   }
  4153.  
  4154.   switch (hp->type) {
  4155.   case T_FILE:
  4156.   case T_BASE_FILE:
  4157.     {
  4158.       char *string;
  4159.       if (hp->type == T_FILE)
  4160.     string = ip->nominal_fname;
  4161.       else
  4162.     string = instack[0].nominal_fname;
  4163.  
  4164.       if (string)
  4165.     {
  4166.       buf = (char *) alloca (3 + 4 * strlen (string));
  4167.       quote_string (buf, string);
  4168.     }
  4169.       else
  4170.     buf = "\"\"";
  4171.  
  4172.       break;
  4173.     }
  4174.  
  4175.   case T_INCLUDE_LEVEL:
  4176.     true_indepth = 0;
  4177.     for (i = indepth; i >= 0; i--)
  4178.       if (instack[i].fname != NULL)
  4179.         true_indepth++;
  4180.  
  4181.     buf = (char *) alloca (8);    /* Eight bytes ought to be more than enough */
  4182.     sprintf (buf, "%d", true_indepth - 1);
  4183.     break;
  4184.  
  4185.   case T_VERSION:
  4186.     buf = (char *) alloca (3 + strlen (version_string));
  4187.     sprintf (buf, "\"%s\"", version_string);
  4188.     break;
  4189.  
  4190. #ifndef NO_BUILTIN_SIZE_TYPE
  4191.   case T_SIZE_TYPE:
  4192.     buf = SIZE_TYPE;
  4193.     break;
  4194. #endif
  4195.  
  4196. #ifndef NO_BUILTIN_PTRDIFF_TYPE
  4197.   case T_PTRDIFF_TYPE:
  4198.     buf = PTRDIFF_TYPE;
  4199.     break;
  4200. #endif
  4201.  
  4202.   case T_WCHAR_TYPE:
  4203.     buf = wchar_type;
  4204.     break;
  4205.  
  4206.   case T_USER_LABEL_PREFIX_TYPE:
  4207.     buf = USER_LABEL_PREFIX;
  4208.     break;
  4209.  
  4210.   case T_REGISTER_PREFIX_TYPE:
  4211.     buf = REGISTER_PREFIX;
  4212.     break;
  4213.  
  4214.   case T_IMMEDIATE_PREFIX_TYPE:
  4215.     buf = IMMEDIATE_PREFIX;
  4216.     break;
  4217.  
  4218.   case T_CONST:
  4219.     buf = hp->value.cpval;
  4220.     if (pcp_inside_if && pcp_outfile)
  4221.       /* Output a precondition for this macro use */
  4222.       fprintf (pcp_outfile, "#define %s %s\n", hp->name, buf);
  4223.     break;
  4224.  
  4225.   case T_SPECLINE:
  4226.     buf = (char *) alloca (10);
  4227.     sprintf (buf, "%d", ip->lineno);
  4228.     break;
  4229.  
  4230.   case T_DATE:
  4231.   case T_TIME:
  4232.     buf = (char *) alloca (20);
  4233.     timebuf = timestamp ();
  4234.     if (hp->type == T_DATE)
  4235.       sprintf (buf, "\"%s %2d %4d\"", monthnames[timebuf->tm_mon],
  4236.           timebuf->tm_mday, timebuf->tm_year + 1900);
  4237.     else
  4238.       sprintf (buf, "\"%02d:%02d:%02d\"", timebuf->tm_hour, timebuf->tm_min,
  4239.           timebuf->tm_sec);
  4240.     break;
  4241.  
  4242.   case T_SPEC_DEFINED:
  4243.     buf = " 0 ";        /* Assume symbol is not defined */
  4244.     ip = &instack[indepth];
  4245.     SKIP_WHITE_SPACE (ip->bufp);
  4246.     if (*ip->bufp == '(') {
  4247.       paren++;
  4248.       ip->bufp++;            /* Skip over the paren */
  4249.       SKIP_WHITE_SPACE (ip->bufp);
  4250.     }
  4251.  
  4252.     if (!is_idstart[*ip->bufp])
  4253.       goto oops;
  4254. #ifdef CPP_SYMNAME_HOOK
  4255.     {
  4256.       extern char *strrchr ();
  4257.       char *end = strrchr (ip->bufp, ')');
  4258.       if (end == NULL)
  4259.     {
  4260.       end = ip -> bufp + strlen (ip -> bufp);
  4261.     }
  4262.       CPP_SYMNAME_HOOK (ip -> bufp, end - (char *) (ip -> bufp));
  4263.     }
  4264. #endif
  4265.     if ((hp = lookup (ip->bufp, -1, -1))) {
  4266.       if (pcp_outfile && pcp_inside_if
  4267.       && (hp->type == T_CONST
  4268.           || (hp->type == T_MACRO && hp->value.defn->predefined)))
  4269.     /* Output a precondition for this macro use. */
  4270.     fprintf (pcp_outfile, "#define %s\n", hp->name);
  4271.       buf = " 1 ";
  4272.     }
  4273.     else
  4274.       if (pcp_outfile && pcp_inside_if)    {
  4275.     /* Output a precondition for this macro use */
  4276.     U_CHAR *cp = ip->bufp;
  4277.     fprintf (pcp_outfile, "#undef ");
  4278.     while (is_idchar[*cp]) /* Ick! */
  4279.       fputc (*cp++, pcp_outfile);
  4280.     putc ('\n', pcp_outfile);
  4281.       }
  4282.     while (is_idchar[*ip->bufp])
  4283.       ++ip->bufp;
  4284.     SKIP_WHITE_SPACE (ip->bufp);
  4285.     if (paren) {
  4286.       if (*ip->bufp != ')')
  4287.     goto oops;
  4288.       ++ip->bufp;
  4289.     }
  4290.     break;
  4291.  
  4292. oops:
  4293.  
  4294.     error ("`defined' without an identifier");
  4295.     break;
  4296.  
  4297.   default:
  4298.     error ("cccp error: invalid special hash type"); /* time for gdb */
  4299.     abort ();
  4300.   }
  4301.   len = strlen (buf);
  4302.   check_expand (op, len);
  4303.   bcopy (buf, (char *) op->bufp, len);
  4304.   op->bufp += len;
  4305.  
  4306.   return;
  4307. }
  4308.  
  4309.  
  4310. /* Routines to handle #directives */
  4311.  
  4312. /* Handle #include and #import.
  4313.    This function expects to see "fname" or <fname> on the input.  */
  4314.  
  4315. static int
  4316. do_include (buf, limit, op, keyword)
  4317.      U_CHAR *buf, *limit;
  4318.      FILE_BUF *op;
  4319.      struct directive *keyword;
  4320. {
  4321.   int importing = (keyword->type == T_IMPORT);
  4322.   int skip_dirs = (keyword->type == T_INCLUDE_NEXT);
  4323.   static int import_warning = 0;
  4324.   char *fname;        /* Dynamically allocated fname buffer */
  4325.   char *pcftry;
  4326.   char *pcfname;
  4327.   U_CHAR *fbeg, *fend;        /* Beginning and end of fname */
  4328.  
  4329.   struct file_name_list *search_start = include; /* Chain of dirs to search */
  4330.   struct file_name_list dsp[1];    /* First in chain, if #include "..." */
  4331.   struct file_name_list *searchptr = 0;
  4332.   size_t flen;
  4333.  
  4334.   int f;            /* file number */
  4335.  
  4336.   int retried = 0;        /* Have already tried macro
  4337.                    expanding the include line*/
  4338.   int angle_brackets = 0;    /* 0 for "...", 1 for <...> */
  4339.   int pcf = -1;
  4340.   char *pcfbuf;
  4341.   char *pcfbuflimit;
  4342.   int pcfnum;
  4343.   f= -1;            /* JF we iz paranoid! */
  4344.  
  4345.   if (importing && warn_import && !inhibit_warnings
  4346.       && !instack[indepth].system_header_p && !import_warning) {
  4347.     import_warning = 1;
  4348.     warning ("using `#import' is not recommended");
  4349.     fprintf (stderr, "The fact that a certain header file need not be processed more than once\n");
  4350.     fprintf (stderr, "should be indicated in the header file, not where it is used.\n");
  4351.     fprintf (stderr, "The best way to do this is with a conditional of this form:\n\n");
  4352.     fprintf (stderr, "  #ifndef _FOO_H_INCLUDED\n");
  4353.     fprintf (stderr, "  #define _FOO_H_INCLUDED\n");
  4354.     fprintf (stderr, "  ... <real contents of file> ...\n");
  4355.     fprintf (stderr, "  #endif /* Not _FOO_H_INCLUDED */\n\n");
  4356.     fprintf (stderr, "Then users can use `#include' any number of times.\n");
  4357.     fprintf (stderr, "GNU C automatically avoids processing the file more than once\n");
  4358.     fprintf (stderr, "when it is equipped with such a conditional.\n");
  4359.   }
  4360.  
  4361. get_filename:
  4362.  
  4363.   fbeg = buf;
  4364.   SKIP_WHITE_SPACE (fbeg);
  4365.   /* Discard trailing whitespace so we can easily see
  4366.      if we have parsed all the significant chars we were given.  */
  4367.   while (limit != fbeg && is_hor_space[limit[-1]]) limit--;
  4368.  
  4369.   switch (*fbeg++) {
  4370.   case '\"':
  4371.     {
  4372.       FILE_BUF *fp;
  4373.       /* Copy the operand text, concatenating the strings.  */
  4374.       {
  4375.     U_CHAR *fin = fbeg;
  4376.     fbeg = (U_CHAR *) alloca (limit - fbeg + 1);
  4377.     fend = fbeg;
  4378.     while (fin != limit) {
  4379.       while (fin != limit && *fin != '\"')
  4380.         *fend++ = *fin++;
  4381.       fin++;
  4382.       if (fin == limit)
  4383.         break;
  4384.       /* If not at the end, there had better be another string.  */
  4385.       /* Skip just horiz space, and don't go past limit.  */
  4386.       while (fin != limit && is_hor_space[*fin]) fin++;
  4387.       if (fin != limit && *fin == '\"')
  4388.         fin++;
  4389.       else
  4390.         goto fail;
  4391.     }
  4392.       }
  4393.       *fend = 0;
  4394.  
  4395.       /* We have "filename".  Figure out directory this source
  4396.      file is coming from and put it on the front of the list. */
  4397.  
  4398.       /* If -I- was specified, don't search current dir, only spec'd ones. */
  4399.       if (ignore_srcdir) break;
  4400.  
  4401.       for (fp = &instack[indepth]; fp >= instack; fp--)
  4402.     {
  4403.       int n;
  4404.       char *ep,*nam;
  4405.  
  4406.       if ((nam = fp->nominal_fname) != NULL) {
  4407.         /* Found a named file.  Figure out dir of the file,
  4408.            and put it in front of the search list.  */
  4409.         dsp[0].next = search_start;
  4410.         search_start = dsp;
  4411. #ifndef VMS
  4412.         ep = rindex (nam, '/');
  4413. #ifdef DIR_SEPARATOR
  4414.         if (ep == NULL) ep = rindex (nam, DIR_SEPARATOR);
  4415.         else {
  4416.           char *tmp = rindex (nam, DIR_SEPARATOR);
  4417.           if (tmp != NULL && tmp > ep) ep = tmp;
  4418.         }
  4419. #endif
  4420. #ifdef VOL_SEPARATOR
  4421.         if (ep == NULL) ep = rindex (nam, VOL_SEPARATOR);
  4422.         else {
  4423.           char *tmp = rindex (nam, VOL_SEPARATOR);
  4424.           if (tmp != NULL && tmp > ep) ep = tmp;
  4425.         }
  4426.         if (ep != NULL && *ep == VOL_SEPARATOR) ep++;
  4427. #endif
  4428. #else                /* VMS */
  4429.         ep = rindex (nam, ']');
  4430.         if (ep == NULL) ep = rindex (nam, '>');
  4431.         if (ep == NULL) ep = rindex (nam, ':');
  4432.         if (ep != NULL) ep++;
  4433. #endif                /* VMS */
  4434.         if (ep != NULL) {
  4435.           n = ep - nam;
  4436.           dsp[0].fname = (char *) alloca (n + 1);
  4437.           strncpy (dsp[0].fname, nam, n);
  4438.           dsp[0].fname[n] = '\0';
  4439.           if (n + INCLUDE_LEN_FUDGE > max_include_len)
  4440.         max_include_len = n + INCLUDE_LEN_FUDGE;
  4441.         } else {
  4442.           dsp[0].fname = 0; /* Current directory */
  4443.         }
  4444.         dsp[0].got_name_map = 0;
  4445.         break;
  4446.       }
  4447.     }
  4448.       break;
  4449.     }
  4450.  
  4451.   case '<':
  4452.     fend = fbeg;
  4453.     while (fend != limit && *fend != '>') fend++;
  4454.     if (*fend == '>' && fend + 1 == limit) {
  4455.       angle_brackets = 1;
  4456.       /* If -I-, start with the first -I dir after the -I-.  */
  4457.       if (first_bracket_include)
  4458.     search_start = first_bracket_include;
  4459.       break;
  4460.     }
  4461.     goto fail;
  4462.  
  4463.   default:
  4464. #ifdef VMS
  4465.     /*
  4466.      * Support '#include xyz' like VAX-C to allow for easy use of all the
  4467.      * decwindow include files. It defaults to '#include <xyz.h>' (so the
  4468.      * code from case '<' is repeated here) and generates a warning.
  4469.      * (Note: macro expansion of `xyz' takes precedence.)
  4470.      */
  4471.     if (retried && isalpha(*(--fbeg))) {
  4472.       fend = fbeg;
  4473.       while (fend != limit && (!isspace(*fend))) fend++;
  4474.       warning ("VAX-C-style include specification found, use '#include <filename.h>' !");
  4475.       if (fend  == limit) {
  4476.     angle_brackets = 1;
  4477.     /* If -I-, start with the first -I dir after the -I-.  */
  4478.     if (first_bracket_include)
  4479.       search_start = first_bracket_include;
  4480.     break;
  4481.       }
  4482.     }
  4483. #endif
  4484.  
  4485.   fail:
  4486.     if (retried) {
  4487.       error ("`#%s' expects \"FILENAME\" or <FILENAME>", keyword->name);
  4488.       return 0;
  4489.     } else {
  4490.       /* Expand buffer and then remove any newline markers.
  4491.      We can't just tell expand_to_temp_buffer to omit the markers,
  4492.      since it would put extra spaces in include file names.  */
  4493.       FILE_BUF trybuf;
  4494.       U_CHAR *src;
  4495.       trybuf = expand_to_temp_buffer (buf, limit, 1, 0);
  4496.       src = trybuf.buf;
  4497.       buf = (U_CHAR *) alloca (trybuf.bufp - trybuf.buf + 1);
  4498.       limit = buf;
  4499.       while (src != trybuf.bufp) {
  4500.     switch ((*limit++ = *src++)) {
  4501.       case '\n':
  4502.         limit--;
  4503.         src++;
  4504.         break;
  4505.  
  4506.       case '\'':
  4507.       case '\"':
  4508.         {
  4509.           U_CHAR *src1 = skip_quoted_string (src - 1, trybuf.bufp, 0,
  4510.                          NULL_PTR, NULL_PTR, NULL_PTR);
  4511.           while (src != src1)
  4512.         *limit++ = *src++;
  4513.         }
  4514.         break;
  4515.     }
  4516.       }
  4517.       *limit = 0;
  4518.       free (trybuf.buf);
  4519.       retried++;
  4520.       goto get_filename;
  4521.     }
  4522.   }
  4523.  
  4524.   /* For #include_next, skip in the search path
  4525.      past the dir in which the containing file was found.  */
  4526.   if (skip_dirs) {
  4527.     FILE_BUF *fp;
  4528.     for (fp = &instack[indepth]; fp >= instack; fp--)
  4529.       if (fp->fname != NULL) {
  4530.     /* fp->dir is null if the containing file was specified
  4531.        with an absolute file name.  In that case, don't skip anything.  */
  4532.     if (fp->dir)
  4533.       search_start = fp->dir->next;
  4534.     break;
  4535.       }
  4536.   }
  4537.  
  4538.   flen = fend - fbeg;
  4539.  
  4540.   if (flen == 0)
  4541.     {
  4542.       error ("empty file name in `#%s'", keyword->name);
  4543.       return 0;
  4544.     }
  4545.  
  4546.   /* Allocate this permanently, because it gets stored in the definitions
  4547.      of macros.  */
  4548.   fname = xmalloc (max_include_len + flen + 4);
  4549.   /* + 2 above for slash and terminating null.  */
  4550.   /* + 2 added for '.h' on VMS (to support '#include filename') */
  4551.  
  4552.   /* If specified file name is absolute, just open it.  */
  4553.  
  4554.   if (ABS_FILENAME (fbeg, flen)) {
  4555.     strncpy (fname, (char *) fbeg, flen);
  4556.     fname[flen] = 0;
  4557.     if (redundant_include_p (fname))
  4558.       return 0;
  4559.     if (importing)
  4560.       f = lookup_import (fname, NULL_PTR);
  4561.     else
  4562.       f = open_include_file (fname, NULL_PTR);
  4563.     if (f == -2)
  4564.       return 0;        /* Already included this file */
  4565.   } else {
  4566.     /* Search directory path, trying to open the file.
  4567.        Copy each filename tried into FNAME.  */
  4568.  
  4569.     for (searchptr = search_start; searchptr; searchptr = searchptr->next) {
  4570.       if (searchptr->fname) {
  4571.     /* The empty string in a search path is ignored.
  4572.        This makes it possible to turn off entirely
  4573.        a standard piece of the list.  */
  4574.     if (searchptr->fname[0] == 0)
  4575.       continue;
  4576.     strcpy (fname, skip_redundant_dir_prefix (searchptr->fname));
  4577.     if (fname[0] && fname[strlen (fname) - 1] != '/'
  4578. #ifdef __amigaos__
  4579.         && fname[strlen (fname) - 1] != ':'
  4580. #endif
  4581.         )
  4582.       strcat (fname, "/");
  4583.       } else {
  4584.     fname[0] = 0;
  4585.       }
  4586.       strncat (fname, (char *) fbeg, flen);
  4587. #ifdef VMS
  4588.       /* Change this 1/2 Unix 1/2 VMS file specification into a
  4589.          full VMS file specification */
  4590.       if (searchptr->fname && (searchptr->fname[0] != 0)) {
  4591.     /* Fix up the filename */
  4592.     hack_vms_include_specification (fname);
  4593.       } else {
  4594.           /* This is a normal VMS filespec, so use it unchanged.  */
  4595.     strncpy (fname, fbeg, flen);
  4596.     fname[flen] = 0;
  4597.     /* if it's '#include filename', add the missing .h */
  4598.     if (index(fname,'.')==NULL) {
  4599.       strcat (fname, ".h");
  4600.     }
  4601.       }
  4602. #endif /* VMS */
  4603.       /* ??? There are currently 3 separate mechanisms for avoiding processing
  4604.      of redundant include files: #import, #pragma once, and
  4605.      redundant_include_p.  It would be nice if they were unified.  */
  4606.       if (redundant_include_p (fname))
  4607.     return 0;
  4608.       if (importing)
  4609.     f = lookup_import (fname, searchptr);
  4610.       else
  4611.     f = open_include_file (fname, searchptr);
  4612.       if (f == -2)
  4613.     return 0;            /* Already included this file */
  4614. #ifdef EACCES
  4615.       else if (f == -1 && errno == EACCES)
  4616.     warning ("Header file %s exists, but is not readable", fname);
  4617. #endif
  4618.       if (f >= 0)
  4619.     break;
  4620.     }
  4621.   }
  4622.  
  4623.   if (f < 0) {
  4624.     /* A file that was not found.  */
  4625.  
  4626.     strncpy (fname, (char *) fbeg, flen);
  4627.     fname[flen] = 0;
  4628.     /* If generating dependencies and -MG was specified, we assume missing
  4629.        files are leaf files, living in the same directory as the source file
  4630.        or other similar place; these missing files may be generated from
  4631.        other files and may not exist yet (eg: y.tab.h).  */
  4632.     if (print_deps_missing_files
  4633.     && print_deps > (angle_brackets || (system_include_depth > 0)))
  4634.       {
  4635.     /* If it was requested as a system header file,
  4636.        then assume it belongs in the first place to look for such.  */
  4637.     if (angle_brackets)
  4638.       {
  4639.         for (searchptr = search_start; searchptr; searchptr = searchptr->next)
  4640.           {
  4641.         if (searchptr->fname)
  4642.           {
  4643.             char *p;
  4644.  
  4645.             if (searchptr->fname[0] == 0)
  4646.               continue;
  4647.             p = (char *) alloca (strlen (searchptr->fname)
  4648.                      + strlen (fname) + 2);
  4649.             strcpy (p, skip_redundant_dir_prefix (searchptr->fname));
  4650.             if (p[0] && p[strlen (p) - 1] != '/')
  4651.               strcat (p, "/");
  4652.             strcat (p, fname);
  4653.             deps_output (p, ' ');
  4654.             break;
  4655.           }
  4656.           }
  4657.       }
  4658.     else
  4659.       {
  4660.         /* Otherwise, omit the directory, as if the file existed
  4661.            in the directory with the source.  */
  4662.         deps_output (fname, ' ');
  4663.       }
  4664.       }
  4665.     /* If -M was specified, and this header file won't be added to the
  4666.        dependency list, then don't count this as an error, because we can
  4667.        still produce correct output.  Otherwise, we can't produce correct
  4668.        output, because there may be dependencies we need inside the missing
  4669.        file, and we don't know what directory this missing file exists in.  */
  4670.     else if (print_deps
  4671.     && (print_deps <= (angle_brackets || (system_include_depth > 0))))
  4672.       warning ("No include path in which to find %s", fname);
  4673.     else if (search_start)
  4674.       error_from_errno (fname);
  4675.     else
  4676.       error ("No include path in which to find %s", fname);
  4677.   } else {
  4678.     /* Check to see if this include file is a once-only include file.
  4679.        If so, give up.  */
  4680.  
  4681.     struct file_name_list* ptr;
  4682.  
  4683.     for (ptr = dont_repeat_files; ptr; ptr = ptr->next) {
  4684.       if (!strcmp (ptr->fname, fname)) {
  4685.     close (f);
  4686.         return 0;                /* This file was once'd. */
  4687.       }
  4688.     }
  4689.  
  4690.     for (ptr = all_include_files; ptr; ptr = ptr->next) {
  4691.       if (!strcmp (ptr->fname, fname))
  4692.         break;                /* This file was included before. */
  4693.     }
  4694.  
  4695.     if (ptr == 0) {
  4696.       /* This is the first time for this file.  */
  4697.       /* Add it to list of files included.  */
  4698.  
  4699.       ptr = (struct file_name_list *) xmalloc (sizeof (struct file_name_list));
  4700.       ptr->control_macro = 0;
  4701.       ptr->c_system_include_path = 0;
  4702.       ptr->next = all_include_files;
  4703.       all_include_files = ptr;
  4704.       ptr->fname = savestring (fname);
  4705.       ptr->got_name_map = 0;
  4706.  
  4707.       /* For -M, add this file to the dependencies.  */
  4708.       if (print_deps > (angle_brackets || (system_include_depth > 0)))
  4709.     deps_output (fname, ' ');
  4710.     }   
  4711.  
  4712.     /* Handle -H option.  */
  4713.     if (print_include_names)
  4714.       fprintf (stderr, "%*s%s\n", indepth, "", fname);
  4715.  
  4716.     if (angle_brackets)
  4717.       system_include_depth++;
  4718.  
  4719.     /* Actually process the file.  */
  4720.     add_import (f, fname);    /* Record file on "seen" list for #import. */
  4721.  
  4722.     pcftry = (char *) alloca (strlen (fname) + 30);
  4723.     pcfbuf = 0;
  4724.     pcfnum = 0;
  4725.  
  4726.     if (!no_precomp)
  4727.       {
  4728.     struct stat stat_f;
  4729.  
  4730.     fstat (f, &stat_f);
  4731.  
  4732.     do {
  4733.       sprintf (pcftry, "%s%d", fname, pcfnum++);
  4734.  
  4735.       pcf = open (pcftry, O_RDONLY, 0666);
  4736.       if (pcf != -1)
  4737.         {
  4738.           struct stat s;
  4739.  
  4740.           fstat (pcf, &s);
  4741.           if (bcmp ((char *) &stat_f.st_ino, (char *) &s.st_ino,
  4742.             sizeof (s.st_ino))
  4743.           || stat_f.st_dev != s.st_dev)
  4744.         {
  4745.           pcfbuf = check_precompiled (pcf, fname, &pcfbuflimit);
  4746.           /* Don't need it any more.  */
  4747.           close (pcf);
  4748.         }
  4749.           else
  4750.         {
  4751.           /* Don't need it at all.  */
  4752.           close (pcf);
  4753.           break;
  4754.         }
  4755.         }
  4756.     } while (pcf != -1 && !pcfbuf);
  4757.       }
  4758.     
  4759.     /* Actually process the file */
  4760.     if (pcfbuf) {
  4761.       pcfname = xmalloc (strlen (pcftry) + 1);
  4762.       strcpy (pcfname, pcftry);
  4763.       pcfinclude ((U_CHAR *) pcfbuf, (U_CHAR *) pcfbuflimit,
  4764.           (U_CHAR *) fname, op);
  4765.     }
  4766.     else
  4767.       finclude (f, fname, op, is_system_include (fname), searchptr);
  4768.  
  4769.     if (angle_brackets)
  4770.       system_include_depth--;
  4771.   }
  4772.   return 0;
  4773. }
  4774.  
  4775. /* Return nonzero if there is no need to include file NAME
  4776.    because it has already been included and it contains a conditional
  4777.    to make a repeated include do nothing.  */
  4778.  
  4779. static int
  4780. redundant_include_p (name)
  4781.      char *name;
  4782. {
  4783.   struct file_name_list *l = all_include_files;
  4784.   for (; l; l = l->next)
  4785.     if (! strcmp (name, l->fname)
  4786.     && l->control_macro
  4787.     && lookup (l->control_macro, -1, -1))
  4788.       return 1;
  4789.   return 0;
  4790. }
  4791.  
  4792. /* Return nonzero if the given FILENAME is an absolute pathname which
  4793.    designates a file within one of the known "system" include file
  4794.    directories.  We assume here that if the given FILENAME looks like
  4795.    it is the name of a file which resides either directly in a "system"
  4796.    include file directory, or within any subdirectory thereof, then the
  4797.    given file must be a "system" include file.  This function tells us
  4798.    if we should suppress pedantic errors/warnings for the given FILENAME.
  4799.  
  4800.    The value is 2 if the file is a C-language system header file
  4801.    for which C++ should (on most systems) assume `extern "C"'.  */
  4802.  
  4803. static int
  4804. is_system_include (filename)
  4805.     register char *filename;
  4806. {
  4807.   struct file_name_list *searchptr;
  4808.  
  4809.   for (searchptr = first_system_include; searchptr;
  4810.        searchptr = searchptr->next)
  4811.     if (searchptr->fname) {
  4812.       register char *sys_dir = skip_redundant_dir_prefix (searchptr->fname);
  4813.       register unsigned length = strlen (sys_dir);
  4814.  
  4815.       if (! strncmp (sys_dir, filename, length)
  4816.       && (filename[length] == '/'
  4817. #ifdef DIR_SEPARATOR
  4818.           || filename[length] == DIR_SEPARATOR
  4819. #endif
  4820.           )) {
  4821.     if (searchptr->c_system_include_path)
  4822.       return 2;
  4823.     else
  4824.       return 1;
  4825.       }
  4826.     }
  4827.   return 0;
  4828. }
  4829.  
  4830. /* Skip leading "./" from a directory name.
  4831.    This may yield the empty string, which represents the current directory.  */
  4832.  
  4833. static char *
  4834. skip_redundant_dir_prefix (dir)
  4835.      char *dir;
  4836. {
  4837.   while (dir[0] == '.' && dir[1] == '/')
  4838.     for (dir += 2; *dir == '/'; dir++)
  4839.       continue;
  4840.   if (dir[0] == '.' && !dir[1])
  4841.     dir++;
  4842.   return dir;
  4843. }
  4844.  
  4845. /* The file_name_map structure holds a mapping of file names for a
  4846.    particular directory.  This mapping is read from the file named
  4847.    FILE_NAME_MAP_FILE in that directory.  Such a file can be used to
  4848.    map filenames on a file system with severe filename restrictions,
  4849.    such as DOS.  The format of the file name map file is just a series
  4850.    of lines with two tokens on each line.  The first token is the name
  4851.    to map, and the second token is the actual name to use.  */
  4852.  
  4853. struct file_name_map
  4854. {
  4855.   struct file_name_map *map_next;
  4856.   char *map_from;
  4857.   char *map_to;
  4858. };
  4859.  
  4860. #define FILE_NAME_MAP_FILE "header.gcc"
  4861.  
  4862. /* Read a space delimited string of unlimited length from a stdio
  4863.    file.  */
  4864.  
  4865. static char *
  4866. read_filename_string (ch, f)
  4867.      int ch;
  4868.      FILE *f;
  4869. {
  4870.   char *alloc, *set;
  4871.   int len;
  4872.  
  4873.   len = 20;
  4874.   set = alloc = xmalloc (len + 1);
  4875.   if (! is_space[ch])
  4876.     {
  4877.       *set++ = ch;
  4878.       while ((ch = getc (f)) != EOF && ! is_space[ch])
  4879.     {
  4880.       if (set - alloc == len)
  4881.         {
  4882.           len *= 2;
  4883.           alloc = xrealloc (alloc, len + 1);
  4884.           set = alloc + len / 2;
  4885.         }
  4886.       *set++ = ch;
  4887.     }
  4888.     }
  4889.   *set = '\0';
  4890.   ungetc (ch, f);
  4891.   return alloc;
  4892. }
  4893.  
  4894. /* Read the file name map file for DIRNAME.  */
  4895.  
  4896. static struct file_name_map *
  4897. read_name_map (dirname)
  4898.      char *dirname;
  4899. {
  4900.   /* This structure holds a linked list of file name maps, one per
  4901.      directory.  */
  4902.   struct file_name_map_list
  4903.     {
  4904.       struct file_name_map_list *map_list_next;
  4905.       char *map_list_name;
  4906.       struct file_name_map *map_list_map;
  4907.     };
  4908.   static struct file_name_map_list *map_list;
  4909.   register struct file_name_map_list *map_list_ptr;
  4910.   char *name;
  4911.   FILE *f;
  4912.   size_t dirlen;
  4913.   int separator_needed;
  4914.  
  4915.   dirname = skip_redundant_dir_prefix (dirname);
  4916.  
  4917.   for (map_list_ptr = map_list; map_list_ptr;
  4918.        map_list_ptr = map_list_ptr->map_list_next)
  4919.     if (! strcmp (map_list_ptr->map_list_name, dirname))
  4920.       return map_list_ptr->map_list_map;
  4921.  
  4922.   map_list_ptr = ((struct file_name_map_list *)
  4923.           xmalloc (sizeof (struct file_name_map_list)));
  4924.   map_list_ptr->map_list_name = savestring (dirname);
  4925.   map_list_ptr->map_list_map = NULL;
  4926.  
  4927.   dirlen = strlen (dirname);
  4928.   separator_needed = dirlen != 0 && dirname[dirlen - 1] != '/';
  4929.   name = (char *) alloca (dirlen + strlen (FILE_NAME_MAP_FILE) + 2);
  4930.   strcpy (name, dirname);
  4931.   name[dirlen] = '/';
  4932.   strcpy (name + dirlen + separator_needed, FILE_NAME_MAP_FILE);
  4933.   f = fopen (name, "r");
  4934.   if (!f)
  4935.     map_list_ptr->map_list_map = NULL;
  4936.   else
  4937.     {
  4938.       int ch;
  4939.  
  4940.       while ((ch = getc (f)) != EOF)
  4941.     {
  4942.       char *from, *to;
  4943.       struct file_name_map *ptr;
  4944.  
  4945.       if (is_space[ch])
  4946.         continue;
  4947.       from = read_filename_string (ch, f);
  4948.       while ((ch = getc (f)) != EOF && is_hor_space[ch])
  4949.         ;
  4950.       to = read_filename_string (ch, f);
  4951.  
  4952.       ptr = ((struct file_name_map *)
  4953.          xmalloc (sizeof (struct file_name_map)));
  4954.       ptr->map_from = from;
  4955.  
  4956.       /* Make the real filename absolute.  */
  4957.       if (*to == '/')
  4958.         ptr->map_to = to;
  4959.       else
  4960.         {
  4961.           ptr->map_to = xmalloc (dirlen + strlen (to) + 2);
  4962.           strcpy (ptr->map_to, dirname);
  4963.           ptr->map_to[dirlen] = '/';
  4964.           strcpy (ptr->map_to + dirlen + separator_needed, to);
  4965.           free (to);
  4966.         }          
  4967.  
  4968.       ptr->map_next = map_list_ptr->map_list_map;
  4969.       map_list_ptr->map_list_map = ptr;
  4970.  
  4971.       while ((ch = getc (f)) != '\n')
  4972.         if (ch == EOF)
  4973.           break;
  4974.     }
  4975.       fclose (f);
  4976.     }
  4977.   
  4978.   map_list_ptr->map_list_next = map_list;
  4979.   map_list = map_list_ptr;
  4980.  
  4981.   return map_list_ptr->map_list_map;
  4982. }  
  4983.  
  4984. /* Try to open include file FILENAME.  SEARCHPTR is the directory
  4985.    being tried from the include file search path.  This function maps
  4986.    filenames on file systems based on information read by
  4987.    read_name_map.  */
  4988.  
  4989. static int
  4990. open_include_file (filename, searchptr)
  4991.      char *filename;
  4992.      struct file_name_list *searchptr;
  4993. {
  4994.   register struct file_name_map *map;
  4995.   register char *from;
  4996.   char *p, *dir;
  4997.  
  4998.   if (searchptr && ! searchptr->got_name_map)
  4999.     {
  5000.       searchptr->name_map = read_name_map (searchptr->fname
  5001.                        ? searchptr->fname : ".");
  5002.       searchptr->got_name_map = 1;
  5003.     }
  5004.  
  5005.   /* First check the mapping for the directory we are using.  */
  5006.   if (searchptr && searchptr->name_map)
  5007.     {
  5008.       from = filename;
  5009.       if (searchptr->fname)
  5010.     from += strlen (searchptr->fname) + 1;
  5011.       for (map = searchptr->name_map; map; map = map->map_next)
  5012.     {
  5013.       if (! strcmp (map->map_from, from))
  5014.         {
  5015.           /* Found a match.  */
  5016.           return open (map->map_to, O_RDONLY, 0666);
  5017.         }
  5018.     }
  5019.     }
  5020.  
  5021.   /* Try to find a mapping file for the particular directory we are
  5022.      looking in.  Thus #include <sys/types.h> will look up sys/types.h
  5023.      in /usr/include/header.gcc and look up types.h in
  5024.      /usr/include/sys/header.gcc.  */
  5025.   p = rindex (filename, '/');
  5026. #ifdef DIR_SEPARATOR
  5027.   if (! p) p = rindex (filename, DIR_SEPARATOR);
  5028.   else {
  5029.     char *tmp = rindex (filename, DIR_SEPARATOR);
  5030.     if (tmp != NULL && tmp > p) p = tmp;
  5031.   }
  5032. #endif
  5033.   if (! p)
  5034.     p = filename;
  5035.   if (searchptr
  5036.       && searchptr->fname
  5037.       && strlen (searchptr->fname) == p - filename
  5038.       && ! strncmp (searchptr->fname, filename, p - filename))
  5039.     {
  5040.       /* FILENAME is in SEARCHPTR, which we've already checked.  */
  5041.       return (OPEN_CASE_SENSITIVE (filename, O_RDONLY, 0666));
  5042.     }
  5043.  
  5044.   if (p == filename)
  5045.     {
  5046.       dir = ".";
  5047.       from = filename;
  5048.     }
  5049.   else
  5050.     {
  5051.       dir = (char *) alloca (p - filename + 1);
  5052.       bcopy (filename, dir, p - filename);
  5053.       dir[p - filename] = '\0';
  5054.       from = p + 1;
  5055.     }
  5056.   for (map = read_name_map (dir); map; map = map->map_next)
  5057.     if (! strcmp (map->map_from, from))
  5058.       return open (map->map_to, O_RDONLY, 0666);
  5059.  
  5060.   return (OPEN_CASE_SENSITIVE (filename, O_RDONLY, 0666));
  5061. }
  5062.  
  5063. /* Process the contents of include file FNAME, already open on descriptor F,
  5064.    with output to OP.
  5065.    SYSTEM_HEADER_P is 1 if this file resides in any one of the known
  5066.    "system" include directories (as decided by the `is_system_include'
  5067.    function above).
  5068.    DIRPTR is the link in the dir path through which this file was found,
  5069.    or 0 if the file name was absolute.  */
  5070.  
  5071. static void
  5072. finclude (f, fname, op, system_header_p, dirptr)
  5073.      int f;
  5074.      char *fname;
  5075.      FILE_BUF *op;
  5076.      int system_header_p;
  5077.      struct file_name_list *dirptr;
  5078. {
  5079.   int st_mode;
  5080.   long st_size;
  5081.   long i;
  5082.   FILE_BUF *fp;            /* For input stack frame */
  5083.   int missing_newline = 0;
  5084.  
  5085.   CHECK_DEPTH (return;);
  5086.  
  5087.   if (file_size_and_mode (f, &st_mode, &st_size) < 0)
  5088.     {
  5089.       perror_with_name (fname);
  5090.       close (f);
  5091.       return;
  5092.     }
  5093.  
  5094.   fp = &instack[indepth + 1];
  5095.   bzero ((char *) fp, sizeof (FILE_BUF));
  5096.   fp->nominal_fname = fp->fname = fname;
  5097.   fp->length = 0;
  5098.   fp->lineno = 1;
  5099.   fp->if_stack = if_stack;
  5100.   fp->system_header_p = system_header_p;
  5101.   fp->dir = dirptr;
  5102.  
  5103.   if (S_ISREG (st_mode)) {
  5104.     fp->buf = (U_CHAR *) xmalloc (st_size + 2);
  5105.     fp->bufp = fp->buf;
  5106.  
  5107.     /* Read the file contents, knowing that st_size is an upper bound
  5108.        on the number of bytes we can read.  */
  5109.     fp->length = safe_read (f, (char *) fp->buf, st_size);
  5110.     if (fp->length < 0) goto nope;
  5111.   }
  5112.   else if (S_ISDIR (st_mode)) {
  5113.     error ("directory `%s' specified in #include", fname);
  5114.     close (f);
  5115.     return;
  5116.   } else {
  5117.     /* Cannot count its file size before reading.
  5118.        First read the entire file into heap and
  5119.        copy them into buffer on stack. */
  5120.  
  5121.     int bsize = 2000;
  5122.  
  5123.     st_size = 0;
  5124.     fp->buf = (U_CHAR *) xmalloc (bsize + 2);
  5125.  
  5126.     for (;;) {
  5127.       i = safe_read (f, (char *) fp->buf + st_size, bsize - st_size);
  5128.       if (i < 0)
  5129.     goto nope;      /* error! */
  5130.       st_size += i;
  5131.       if (st_size != bsize)
  5132.     break;    /* End of file */
  5133.       bsize *= 2;
  5134.       fp->buf = (U_CHAR *) xrealloc (fp->buf, bsize + 2);
  5135.     }
  5136.     fp->bufp = fp->buf;
  5137.     fp->length = st_size;
  5138.   }
  5139.  
  5140.   if ((fp->length > 0 && fp->buf[fp->length - 1] != '\n')
  5141.       /* Backslash-newline at end is not good enough.  */
  5142.       || (fp->length > 1 && fp->buf[fp->length - 2] == '\\')) {
  5143.     fp->buf[fp->length++] = '\n';
  5144.     missing_newline = 1;
  5145.   }
  5146.   fp->buf[fp->length] = '\0';
  5147.  
  5148.   /* Close descriptor now, so nesting does not use lots of descriptors.  */
  5149.   close (f);
  5150.  
  5151.   /* Must do this before calling trigraph_pcp, so that the correct file name
  5152.      will be printed in warning messages.  */
  5153.  
  5154.   indepth++;
  5155.   input_file_stack_tick++;
  5156.  
  5157.   if (!no_trigraphs)
  5158.     trigraph_pcp (fp);
  5159.  
  5160.   output_line_directive (fp, op, 0, enter_file);
  5161.   rescan (op, 0);
  5162.  
  5163.   if (missing_newline)
  5164.     fp->lineno--;
  5165.  
  5166.   if (pedantic && missing_newline)
  5167.     pedwarn ("file does not end in newline");
  5168.  
  5169.   indepth--;
  5170.   input_file_stack_tick++;
  5171.   output_line_directive (&instack[indepth], op, 0, leave_file);
  5172.   free (fp->buf);
  5173.   return;
  5174.  
  5175.  nope:
  5176.  
  5177.   perror_with_name (fname);
  5178.   close (f);
  5179.   free (fp->buf);
  5180. }
  5181.  
  5182. /* Record that inclusion of the file named FILE
  5183.    should be controlled by the macro named MACRO_NAME.
  5184.    This means that trying to include the file again
  5185.    will do something if that macro is defined.  */
  5186.  
  5187. static void
  5188. record_control_macro (file, macro_name)
  5189.      char *file;
  5190.      U_CHAR *macro_name;
  5191. {
  5192.   struct file_name_list *new;
  5193.  
  5194.   for (new = all_include_files; new; new = new->next) {
  5195.     if (!strcmp (new->fname, file)) {
  5196.       new->control_macro = macro_name;
  5197.       return;
  5198.     }
  5199.   }
  5200.  
  5201.   /* If the file is not in all_include_files, something's wrong.  */
  5202.   abort ();
  5203. }
  5204.  
  5205. /* Maintain and search list of included files, for #import.  */
  5206.  
  5207. #define IMPORT_HASH_SIZE 31
  5208.  
  5209. struct import_file {
  5210.   char *name;
  5211.   ino_t inode;
  5212.   dev_t dev;
  5213.   struct import_file *next;
  5214. };
  5215.  
  5216. /* Hash table of files already included with #include or #import.  */
  5217.  
  5218. static struct import_file *import_hash_table[IMPORT_HASH_SIZE];
  5219.  
  5220. /* Hash a file name for import_hash_table.  */
  5221.  
  5222. static int 
  5223. import_hash (f)
  5224.      char *f;
  5225. {
  5226.   int val = 0;
  5227.  
  5228.   while (*f) val += *f++;
  5229.   return (val%IMPORT_HASH_SIZE);
  5230. }
  5231.  
  5232. /* Search for file FILENAME in import_hash_table.
  5233.    Return -2 if found, either a matching name or a matching inode.
  5234.    Otherwise, open the file and return a file descriptor if successful
  5235.    or -1 if unsuccessful.  */
  5236.  
  5237. static int
  5238. lookup_import (filename, searchptr)
  5239.      char *filename;
  5240.      struct file_name_list *searchptr;
  5241. {
  5242.   struct import_file *i;
  5243.   int h;
  5244.   int hashval;
  5245.   struct stat sb;
  5246.   int fd;
  5247.  
  5248.   hashval = import_hash (filename);
  5249.  
  5250.   /* Attempt to find file in list of already included files */
  5251.   i = import_hash_table[hashval];
  5252.  
  5253.   while (i) {
  5254.     if (!strcmp (filename, i->name))
  5255.       return -2;        /* return found */
  5256.     i = i->next;
  5257.   }
  5258.   /* Open it and try a match on inode/dev */
  5259.   fd = open_include_file (filename, searchptr);
  5260.   if (fd < 0)
  5261.     return fd;
  5262.   fstat (fd, &sb);
  5263.   for (h = 0; h < IMPORT_HASH_SIZE; h++) {
  5264.     i = import_hash_table[h];
  5265.     while (i) {
  5266.       /* Compare the inode and the device.
  5267.      Supposedly on some systems the inode is not a scalar.  */
  5268.       if (!bcmp ((char *) &i->inode, (char *) &sb.st_ino, sizeof (sb.st_ino))
  5269.       && i->dev == sb.st_dev) {
  5270.         close (fd);
  5271.         return -2;        /* return found */
  5272.       }
  5273.       i = i->next;
  5274.     }
  5275.   }
  5276.   return fd;            /* Not found, return open file */
  5277. }
  5278.  
  5279. /* Add the file FNAME, open on descriptor FD, to import_hash_table.  */
  5280.  
  5281. static void
  5282. add_import (fd, fname)
  5283.      int fd;
  5284.      char *fname;
  5285. {
  5286.   struct import_file *i;
  5287.   int hashval;
  5288.   struct stat sb;
  5289.  
  5290.   hashval = import_hash (fname);
  5291.   fstat (fd, &sb);
  5292.   i = (struct import_file *)xmalloc (sizeof (struct import_file));
  5293.   i->name = xmalloc (strlen (fname)+1);
  5294.   strcpy (i->name, fname);
  5295.   bcopy ((char *) &sb.st_ino, (char *) &i->inode, sizeof (sb.st_ino));
  5296.   i->dev = sb.st_dev;
  5297.   i->next = import_hash_table[hashval];
  5298.   import_hash_table[hashval] = i;
  5299. }
  5300.  
  5301. /* Load the specified precompiled header into core, and verify its
  5302.    preconditions.  PCF indicates the file descriptor to read, which must
  5303.    be a regular file.  FNAME indicates the file name of the original 
  5304.    header.  *LIMIT will be set to an address one past the end of the file.
  5305.    If the preconditions of the file are not satisfied, the buffer is 
  5306.    freed and we return 0.  If the preconditions are satisfied, return
  5307.    the address of the buffer following the preconditions.  The buffer, in
  5308.    this case, should never be freed because various pieces of it will
  5309.    be referred to until all precompiled strings are output at the end of
  5310.    the run.
  5311. */
  5312. static char *
  5313. check_precompiled (pcf, fname, limit)
  5314.      int pcf;
  5315.      char *fname;
  5316.      char **limit;
  5317. {
  5318.   int st_mode;
  5319.   long st_size;
  5320.   int length = 0;
  5321.   char *buf;
  5322.   char *cp;
  5323.  
  5324.   if (pcp_outfile)
  5325.     return 0;
  5326.   
  5327.   if (file_size_and_mode (pcf, &st_mode, &st_size) < 0)
  5328.     return 0;
  5329.  
  5330.   if (S_ISREG (st_mode))
  5331.     {
  5332.       buf = xmalloc (st_size + 2);
  5333.       length = safe_read (pcf, buf, st_size);
  5334.       if (length < 0)
  5335.     goto nope;
  5336.     }
  5337.   else
  5338.     abort ();
  5339.     
  5340.   if (length > 0 && buf[length-1] != '\n')
  5341.     buf[length++] = '\n';
  5342.   buf[length] = '\0';
  5343.   
  5344.   *limit = buf + length;
  5345.  
  5346.   /* File is in core.  Check the preconditions. */
  5347.   if (!check_preconditions (buf))
  5348.     goto nope;
  5349.   for (cp = buf; *cp; cp++)
  5350.     ;
  5351. #ifdef DEBUG_PCP
  5352.   fprintf (stderr, "Using preinclude %s\n", fname);
  5353. #endif
  5354.   return cp + 1;
  5355.  
  5356.  nope:
  5357. #ifdef DEBUG_PCP
  5358.   fprintf (stderr, "Cannot use preinclude %s\n", fname);
  5359. #endif
  5360.   free (buf);
  5361.   return 0;
  5362. }
  5363.  
  5364. /* PREC (null terminated) points to the preconditions of a
  5365.    precompiled header.  These are a series of #define and #undef
  5366.    lines which must match the current contents of the hash
  5367.    table.  */
  5368. static int 
  5369. check_preconditions (prec)
  5370.      char *prec;
  5371. {
  5372.   MACRODEF mdef;
  5373.   char *lineend;
  5374.   
  5375.   while (*prec) {
  5376.     lineend = index (prec, '\n');
  5377.     
  5378.     if (*prec++ != '#') {
  5379.       error ("Bad format encountered while reading precompiled file");
  5380.       return 0;
  5381.     }
  5382.     if (!strncmp (prec, "define", 6)) {
  5383.       HASHNODE *hp;
  5384.       
  5385.       prec += 6;
  5386.       mdef = create_definition ((U_CHAR *) prec, (U_CHAR *) lineend, NULL_PTR);
  5387.  
  5388.       if (mdef.defn == 0)
  5389.     abort ();
  5390.       
  5391.       if ((hp = lookup (mdef.symnam, mdef.symlen, -1)) == NULL
  5392.       || (hp->type != T_MACRO && hp->type != T_CONST)
  5393.       || (hp->type == T_MACRO
  5394.           && !compare_defs (mdef.defn, hp->value.defn)
  5395.           && (mdef.defn->length != 2
  5396.           || mdef.defn->expansion[0] != '\n'
  5397.           || mdef.defn->expansion[1] != ' ')))
  5398.     return 0;
  5399.     } else if (!strncmp (prec, "undef", 5)) {
  5400.       char *name;
  5401.       int len;
  5402.       
  5403.       prec += 5;
  5404.       while (is_hor_space[(U_CHAR) *prec])
  5405.     prec++;
  5406.       name = prec;
  5407.       while (is_idchar[(U_CHAR) *prec])
  5408.     prec++;
  5409.       len = prec - name;
  5410.       
  5411.       if (lookup ((U_CHAR *) name, len, -1))
  5412.     return 0;
  5413.     } else {
  5414.       error ("Bad format encountered while reading precompiled file");
  5415.       return 0;
  5416.     }
  5417.     prec = lineend + 1;
  5418.   }
  5419.   /* They all passed successfully */
  5420.   return 1;
  5421. }
  5422.  
  5423. /* Process the main body of a precompiled file.  BUF points to the
  5424.    string section of the file, following the preconditions.  LIMIT is one
  5425.    character past the end.  NAME is the name of the file being read
  5426.    in.  OP is the main output buffer */
  5427. static void
  5428. pcfinclude (buf, limit, name, op)
  5429.      U_CHAR *buf, *limit, *name;
  5430.      FILE_BUF *op;
  5431. {
  5432.   FILE_BUF tmpbuf;
  5433.   int nstrings;
  5434.   U_CHAR *cp = buf;
  5435.  
  5436.   /* First in the file comes 4 bytes indicating the number of strings, */
  5437.   /* in network byte order. (MSB first).  */
  5438.   nstrings = *cp++;
  5439.   nstrings = (nstrings << 8) | *cp++;
  5440.   nstrings = (nstrings << 8) | *cp++;
  5441.   nstrings = (nstrings << 8) | *cp++;
  5442.   
  5443.   /* Looping over each string... */
  5444.   while (nstrings--) {
  5445.     U_CHAR *string_start;
  5446.     U_CHAR *endofthiskey;
  5447.     STRINGDEF *str;
  5448.     int nkeys;
  5449.     
  5450.     /* Each string starts with a STRINGDEF structure (str), followed */
  5451.     /* by the text of the string (string_start) */
  5452.  
  5453.     /* First skip to a longword boundary */
  5454.     /* ??? Why a 4-byte boundary?  On all machines? */
  5455.     /* NOTE: This works correctly even if HOST_WIDE_INT
  5456.        is narrower than a pointer.
  5457.        Do not try risky measures here to get another type to use!
  5458.        Do not include stddef.h--it will fail!  */
  5459.     if ((HOST_WIDE_INT) cp & 3)
  5460.       cp += 4 - ((HOST_WIDE_INT) cp & 3);
  5461.     
  5462.     /* Now get the string. */
  5463.     str = (STRINGDEF *) (GENERIC_PTR) cp;
  5464.     string_start = cp += sizeof (STRINGDEF);
  5465.     
  5466.     for (; *cp; cp++)        /* skip the string */
  5467.       ;
  5468.     
  5469.     /* We need to macro expand the string here to ensure that the
  5470.        proper definition environment is in place.  If it were only
  5471.        expanded when we find out it is needed, macros necessary for
  5472.        its proper expansion might have had their definitions changed. */
  5473.     tmpbuf = expand_to_temp_buffer (string_start, cp++, 0, 0);
  5474.     /* Lineno is already set in the precompiled file */
  5475.     str->contents = tmpbuf.buf;
  5476.     str->len = tmpbuf.length;
  5477.     str->writeflag = 0;
  5478.     str->filename = name;
  5479.     str->output_mark = outbuf.bufp - outbuf.buf;
  5480.     
  5481.     str->chain = 0;
  5482.     *stringlist_tailp = str;
  5483.     stringlist_tailp = &str->chain;
  5484.     
  5485.     /* Next comes a fourbyte number indicating the number of keys */
  5486.     /* for this string. */
  5487.     nkeys = *cp++;
  5488.     nkeys = (nkeys << 8) | *cp++;
  5489.     nkeys = (nkeys << 8) | *cp++;
  5490.     nkeys = (nkeys << 8) | *cp++;
  5491.  
  5492.     /* If this number is -1, then the string is mandatory. */
  5493.     if (nkeys == -1)
  5494.       str->writeflag = 1;
  5495.     else
  5496.       /* Otherwise, for each key, */
  5497.       for (; nkeys--; free (tmpbuf.buf), cp = endofthiskey + 1) {
  5498.     KEYDEF *kp = (KEYDEF *) (GENERIC_PTR) cp;
  5499.     HASHNODE *hp;
  5500.     
  5501.     /* It starts with a KEYDEF structure */
  5502.     cp += sizeof (KEYDEF);
  5503.     
  5504.     /* Find the end of the key.  At the end of this for loop we
  5505.        advance CP to the start of the next key using this variable. */
  5506.     endofthiskey = cp + strlen ((char *) cp);
  5507.     kp->str = str;
  5508.     
  5509.     /* Expand the key, and enter it into the hash table. */
  5510.     tmpbuf = expand_to_temp_buffer (cp, endofthiskey, 0, 0);
  5511.     tmpbuf.bufp = tmpbuf.buf;
  5512.     
  5513.     while (is_hor_space[*tmpbuf.bufp])
  5514.       tmpbuf.bufp++;
  5515.     if (!is_idstart[*tmpbuf.bufp]
  5516.         || tmpbuf.bufp == tmpbuf.buf + tmpbuf.length) {
  5517.       str->writeflag = 1;
  5518.       continue;
  5519.     }
  5520.         
  5521.     hp = lookup (tmpbuf.bufp, -1, -1);
  5522.     if (hp == NULL) {
  5523.       kp->chain = 0;
  5524.       install (tmpbuf.bufp, -1, T_PCSTRING, (char *) kp, -1);
  5525.     }
  5526.     else if (hp->type == T_PCSTRING) {
  5527.       kp->chain = hp->value.keydef;
  5528.       hp->value.keydef = kp;
  5529.     }
  5530.     else
  5531.       str->writeflag = 1;
  5532.       }
  5533.   }
  5534.   /* This output_line_directive serves to switch us back to the current
  5535.      input file in case some of these strings get output (which will 
  5536.      result in line directives for the header file being output). */
  5537.   output_line_directive (&instack[indepth], op, 0, enter_file);
  5538. }
  5539.  
  5540. /* Called from rescan when it hits a key for strings.  Mark them all */
  5541.  /* used and clean up. */
  5542. static void
  5543. pcstring_used (hp)
  5544.      HASHNODE *hp;
  5545. {
  5546.   KEYDEF *kp;
  5547.   
  5548.   for (kp = hp->value.keydef; kp; kp = kp->chain)
  5549.     kp->str->writeflag = 1;
  5550.   delete_macro (hp);
  5551. }
  5552.  
  5553. /* Write the output, interspersing precompiled strings in their */
  5554.  /* appropriate places. */
  5555. static void
  5556. write_output ()
  5557. {
  5558.   STRINGDEF *next_string;
  5559.   U_CHAR *cur_buf_loc;
  5560.   int line_directive_len = 80;
  5561.   char *line_directive = xmalloc (line_directive_len);
  5562.   int len;
  5563.  
  5564.   /* In each run through the loop, either cur_buf_loc == */
  5565.   /* next_string_loc, in which case we print a series of strings, or */
  5566.   /* it is less than next_string_loc, in which case we write some of */
  5567.   /* the buffer. */
  5568.   cur_buf_loc = outbuf.buf; 
  5569.   next_string = stringlist;
  5570.   
  5571.   while (cur_buf_loc < outbuf.bufp || next_string) {
  5572.     if (next_string
  5573.     && cur_buf_loc - outbuf.buf == next_string->output_mark) {
  5574.       if (next_string->writeflag) {
  5575.     len = 4 * strlen ((char *) next_string->filename) + 32;
  5576.     while (len > line_directive_len)
  5577.       line_directive = xrealloc (line_directive, 
  5578.                      line_directive_len *= 2);
  5579.     sprintf (line_directive, "\n# %d ", next_string->lineno);
  5580.     strcpy (quote_string (line_directive + strlen (line_directive),
  5581.                   (char *) next_string->filename),
  5582.         "\n");
  5583.     safe_write (fileno (stdout), line_directive, strlen (line_directive));
  5584.     safe_write (fileno (stdout),
  5585.             (char *) next_string->contents, next_string->len);
  5586.       }          
  5587.       next_string = next_string->chain;
  5588.     }
  5589.     else {
  5590.       len = (next_string
  5591.          ? (next_string->output_mark 
  5592.         - (cur_buf_loc - outbuf.buf))
  5593.          : outbuf.bufp - cur_buf_loc);
  5594.       
  5595.       safe_write (fileno (stdout), (char *) cur_buf_loc, len);
  5596.       cur_buf_loc += len;
  5597.     }
  5598.   }
  5599.   free (line_directive);
  5600. }
  5601.  
  5602. /* Pass a directive through to the output file.
  5603.    BUF points to the contents of the directive, as a contiguous string.
  5604.    LIMIT points to the first character past the end of the directive.
  5605.    KEYWORD is the keyword-table entry for the directive.  */
  5606.  
  5607. static void
  5608. pass_thru_directive (buf, limit, op, keyword)
  5609.      U_CHAR *buf, *limit;
  5610.      FILE_BUF *op;
  5611.      struct directive *keyword;
  5612. {
  5613.   register unsigned keyword_length = keyword->length;
  5614.  
  5615.   check_expand (op, 1 + keyword_length + (limit - buf));
  5616.   *op->bufp++ = '#';
  5617.   bcopy (keyword->name, (char *) op->bufp, keyword_length);
  5618.   op->bufp += keyword_length;
  5619.   if (limit != buf && buf[0] != ' ')
  5620.     *op->bufp++ = ' ';
  5621.   bcopy ((char *) buf, (char *) op->bufp, limit - buf);
  5622.   op->bufp += (limit - buf);
  5623. #if 0
  5624.   *op->bufp++ = '\n';
  5625.   /* Count the line we have just made in the output,
  5626.      to get in sync properly.  */
  5627.   op->lineno++;
  5628. #endif
  5629. }
  5630.  
  5631. /* The arglist structure is built by do_define to tell
  5632.    collect_definition where the argument names begin.  That
  5633.    is, for a define like "#define f(x,y,z) foo+x-bar*y", the arglist
  5634.    would contain pointers to the strings x, y, and z.
  5635.    Collect_definition would then build a DEFINITION node,
  5636.    with reflist nodes pointing to the places x, y, and z had
  5637.    appeared.  So the arglist is just convenience data passed
  5638.    between these two routines.  It is not kept around after
  5639.    the current #define has been processed and entered into the
  5640.    hash table. */
  5641.  
  5642. struct arglist {
  5643.   struct arglist *next;
  5644.   U_CHAR *name;
  5645.   int length;
  5646.   int argno;
  5647.   char rest_args;
  5648. };
  5649.  
  5650. /* Create a DEFINITION node from a #define directive.  Arguments are 
  5651.    as for do_define. */
  5652. static MACRODEF
  5653. create_definition (buf, limit, op)
  5654.      U_CHAR *buf, *limit;
  5655.      FILE_BUF *op;
  5656. {
  5657.   U_CHAR *bp;            /* temp ptr into input buffer */
  5658.   U_CHAR *symname;        /* remember where symbol name starts */
  5659.   int sym_length;        /* and how long it is */
  5660.   int line = instack[indepth].lineno;
  5661.   char *file = instack[indepth].nominal_fname;
  5662.   int rest_args = 0;
  5663.  
  5664.   DEFINITION *defn;
  5665.   int arglengths = 0;        /* Accumulate lengths of arg names
  5666.                    plus number of args.  */
  5667.   MACRODEF mdef;
  5668.  
  5669.   bp = buf;
  5670.  
  5671.   while (is_hor_space[*bp])
  5672.     bp++;
  5673.  
  5674.   symname = bp;            /* remember where it starts */
  5675.   sym_length = check_macro_name (bp, "macro");
  5676.   bp += sym_length;
  5677.  
  5678.   /* Lossage will occur if identifiers or control keywords are broken
  5679.      across lines using backslash.  This is not the right place to take
  5680.      care of that. */
  5681.  
  5682.   if (*bp == '(') {
  5683.     struct arglist *arg_ptrs = NULL;
  5684.     int argno = 0;
  5685.  
  5686.     bp++;            /* skip '(' */
  5687.     SKIP_WHITE_SPACE (bp);
  5688.  
  5689.     /* Loop over macro argument names.  */
  5690.     while (*bp != ')') {
  5691.       struct arglist *temp;
  5692.  
  5693.       temp = (struct arglist *) alloca (sizeof (struct arglist));
  5694.       temp->name = bp;
  5695.       temp->next = arg_ptrs;
  5696.       temp->argno = argno++;
  5697.       temp->rest_args = 0;
  5698.       arg_ptrs = temp;
  5699.  
  5700.       if (rest_args)
  5701.     pedwarn ("another parameter follows `%s'",
  5702.          rest_extension);
  5703.  
  5704.       if (!is_idstart[*bp])
  5705.     pedwarn ("invalid character in macro parameter name");
  5706.       
  5707.       /* Find the end of the arg name.  */
  5708.       while (is_idchar[*bp]) {
  5709.     bp++;
  5710.     /* do we have a "special" rest-args extension here? */
  5711.     if (limit - bp > REST_EXTENSION_LENGTH &&
  5712.         bcmp (rest_extension, bp, REST_EXTENSION_LENGTH) == 0) {
  5713.       rest_args = 1;
  5714.       temp->rest_args = 1;
  5715.       break;
  5716.     }
  5717.       }
  5718.       temp->length = bp - temp->name;
  5719.       if (rest_args == 1)
  5720.     bp += REST_EXTENSION_LENGTH;
  5721.       arglengths += temp->length + 2;
  5722.       SKIP_WHITE_SPACE (bp);
  5723.       if (temp->length == 0 || (*bp != ',' && *bp != ')')) {
  5724.     error ("badly punctuated parameter list in `#define'");
  5725.     goto nope;
  5726.       }
  5727.       if (*bp == ',') {
  5728.     bp++;
  5729.     SKIP_WHITE_SPACE (bp);
  5730.     /* A comma at this point can only be followed by an identifier.  */
  5731.     if (!is_idstart[*bp]) {
  5732.       error ("badly punctuated parameter list in `#define'");
  5733.       goto nope;
  5734.     }
  5735.       }
  5736.       if (bp >= limit) {
  5737.     error ("unterminated parameter list in `#define'");
  5738.     goto nope;
  5739.       }
  5740.       {
  5741.     struct arglist *otemp;
  5742.  
  5743.     for (otemp = temp->next; otemp != NULL; otemp = otemp->next)
  5744.       if (temp->length == otemp->length &&
  5745.           bcmp (temp->name, otemp->name, temp->length) == 0) {
  5746.           error ("duplicate argument name `%.*s' in `#define'",
  5747.              temp->length, temp->name);
  5748.           goto nope;
  5749.       }
  5750.       }
  5751.     }
  5752.  
  5753.     ++bp;            /* skip paren */
  5754.     SKIP_WHITE_SPACE (bp);
  5755.     /* now everything from bp before limit is the definition. */
  5756.     defn = collect_expansion (bp, limit, argno, arg_ptrs);
  5757.     defn->rest_args = rest_args;
  5758.  
  5759.     /* Now set defn->args.argnames to the result of concatenating
  5760.        the argument names in reverse order
  5761.        with comma-space between them.  */
  5762.     defn->args.argnames = (U_CHAR *) xmalloc (arglengths + 1);
  5763.     {
  5764.       struct arglist *temp;
  5765.       int i = 0;
  5766.       for (temp = arg_ptrs; temp; temp = temp->next) {
  5767.     bcopy (temp->name, &defn->args.argnames[i], temp->length);
  5768.     i += temp->length;
  5769.     if (temp->next != 0) {
  5770.       defn->args.argnames[i++] = ',';
  5771.       defn->args.argnames[i++] = ' ';
  5772.     }
  5773.       }
  5774.       defn->args.argnames[i] = 0;
  5775.     }
  5776.   } else {
  5777.     /* Simple expansion or empty definition.  */
  5778.  
  5779.     if (bp < limit)
  5780.       {
  5781.     if (is_hor_space[*bp]) {
  5782.       bp++;
  5783.       SKIP_WHITE_SPACE (bp);
  5784.     } else {
  5785.       switch (*bp) {
  5786.         case '!':  case '"':  case '#':  case '%':  case '&':  case '\'':
  5787.         case ')':  case '*':  case '+':  case ',':  case '-':  case '.':
  5788.         case '/':  case ':':  case ';':  case '<':  case '=':  case '>':
  5789.         case '?':  case '[':  case '\\': case ']':  case '^':  case '{':
  5790.         case '|':  case '}':  case '~':
  5791.           warning ("missing white space after `#define %.*s'",
  5792.                sym_length, symname);
  5793.           break;
  5794.  
  5795.         default:
  5796.           pedwarn ("missing white space after `#define %.*s'",
  5797.                sym_length, symname);
  5798.           break;
  5799.       }
  5800.     }
  5801.       }
  5802.     /* Now everything from bp before limit is the definition. */
  5803.     defn = collect_expansion (bp, limit, -1, NULL_PTR);
  5804.     defn->args.argnames = (U_CHAR *) "";
  5805.   }
  5806.  
  5807.   defn->line = line;
  5808.   defn->file = file;
  5809.  
  5810.   /* OP is null if this is a predefinition */
  5811.   defn->predefined = !op;
  5812.   mdef.defn = defn;
  5813.   mdef.symnam = symname;
  5814.   mdef.symlen = sym_length;
  5815.  
  5816.   return mdef;
  5817.  
  5818.  nope:
  5819.   mdef.defn = 0;
  5820.   return mdef;
  5821. }
  5822.  
  5823. /* Process a #define directive.
  5824. BUF points to the contents of the #define directive, as a contiguous string.
  5825. LIMIT points to the first character past the end of the definition.
  5826. KEYWORD is the keyword-table entry for #define.  */
  5827.  
  5828. static int
  5829. do_define (buf, limit, op, keyword)
  5830.      U_CHAR *buf, *limit;
  5831.      FILE_BUF *op;
  5832.      struct directive *keyword;
  5833. {
  5834.   int hashcode;
  5835.   MACRODEF mdef;
  5836.  
  5837.   /* If this is a precompiler run (with -pcp) pass thru #define directives.  */
  5838.   if (pcp_outfile && op)
  5839.     pass_thru_directive (buf, limit, op, keyword);
  5840.  
  5841.   mdef = create_definition (buf, limit, op);
  5842.   if (mdef.defn == 0)
  5843.     goto nope;
  5844.  
  5845.   hashcode = hashf (mdef.symnam, mdef.symlen, HASHSIZE);
  5846.  
  5847.   {
  5848.     HASHNODE *hp;
  5849.     if ((hp = lookup (mdef.symnam, mdef.symlen, hashcode)) != NULL) {
  5850.       int ok = 0;
  5851.       /* Redefining a precompiled key is ok.  */
  5852.       if (hp->type == T_PCSTRING)
  5853.     ok = 1;
  5854.       /* Redefining a macro is ok if the definitions are the same.  */
  5855.       else if (hp->type == T_MACRO)
  5856.     ok = ! compare_defs (mdef.defn, hp->value.defn);
  5857.       /* Redefining a constant is ok with -D.  */
  5858.       else if (hp->type == T_CONST)
  5859.         ok = ! done_initializing;
  5860.       /* Print the warning if it's not ok.  */
  5861.       if (!ok) {
  5862.         /* If we are passing through #define and #undef directives, do
  5863.        that for this re-definition now.  */
  5864.         if (debug_output && op)
  5865.       pass_thru_directive (buf, limit, op, keyword);
  5866.  
  5867.     pedwarn ("`%.*s' redefined", mdef.symlen, mdef.symnam);
  5868.     if (hp->type == T_MACRO)
  5869.       pedwarn_with_file_and_line (hp->value.defn->file, hp->value.defn->line,
  5870.                       "this is the location of the previous definition");
  5871.       }
  5872.       /* Replace the old definition.  */
  5873.       hp->type = T_MACRO;
  5874.       hp->value.defn = mdef.defn;
  5875.     } else {
  5876.       /* If we are passing through #define and #undef directives, do
  5877.      that for this new definition now.  */
  5878.       if (debug_output && op)
  5879.     pass_thru_directive (buf, limit, op, keyword);
  5880.       install (mdef.symnam, mdef.symlen, T_MACRO,
  5881.            (char *) mdef.defn, hashcode);
  5882.     }
  5883.   }
  5884.  
  5885.   return 0;
  5886.  
  5887. nope:
  5888.  
  5889.   return 1;
  5890. }
  5891.  
  5892. /* Check a purported macro name SYMNAME, and yield its length.
  5893.    USAGE is the kind of name this is intended for.  */
  5894.  
  5895. static int
  5896. check_macro_name (symname, usage)
  5897.      U_CHAR *symname;
  5898.      char *usage;
  5899. {
  5900.   U_CHAR *p;
  5901.   int sym_length;
  5902.  
  5903.   for (p = symname; is_idchar[*p]; p++)
  5904.     ;
  5905.   sym_length = p - symname;
  5906.   if (sym_length == 0)
  5907.     error ("invalid %s name", usage);
  5908.   else if (!is_idstart[*symname]
  5909.        || (sym_length == 7 && ! bcmp (symname, "defined", 7)))
  5910.     error ("invalid %s name `%.*s'", usage, sym_length, symname);
  5911.   return sym_length;
  5912. }
  5913.  
  5914. /*
  5915.  * return zero if two DEFINITIONs are isomorphic
  5916.  */
  5917. static int
  5918. compare_defs (d1, d2)
  5919.      DEFINITION *d1, *d2;
  5920. {
  5921.   register struct reflist *a1, *a2;
  5922.   register U_CHAR *p1 = d1->expansion;
  5923.   register U_CHAR *p2 = d2->expansion;
  5924.   int first = 1;
  5925.  
  5926.   if (d1->nargs != d2->nargs)
  5927.     return 1;
  5928.   if (strcmp ((char *)d1->args.argnames, (char *)d2->args.argnames))
  5929.     return 1;
  5930.   for (a1 = d1->pattern, a2 = d2->pattern; a1 && a2;
  5931.        a1 = a1->next, a2 = a2->next) {
  5932.     if (!((a1->nchars == a2->nchars && ! bcmp (p1, p2, a1->nchars))
  5933.       || ! comp_def_part (first, p1, a1->nchars, p2, a2->nchars, 0))
  5934.     || a1->argno != a2->argno
  5935.     || a1->stringify != a2->stringify
  5936.     || a1->raw_before != a2->raw_before
  5937.     || a1->raw_after != a2->raw_after)
  5938.       return 1;
  5939.     first = 0;
  5940.     p1 += a1->nchars;
  5941.     p2 += a2->nchars;
  5942.   }
  5943.   if (a1 != a2)
  5944.     return 1;
  5945.   if (comp_def_part (first, p1, d1->length - (p1 - d1->expansion),
  5946.              p2, d2->length - (p2 - d2->expansion), 1))
  5947.     return 1;
  5948.   return 0;
  5949. }
  5950.  
  5951. /* Return 1 if two parts of two macro definitions are effectively different.
  5952.    One of the parts starts at BEG1 and has LEN1 chars;
  5953.    the other has LEN2 chars at BEG2.
  5954.    Any sequence of whitespace matches any other sequence of whitespace.
  5955.    FIRST means these parts are the first of a macro definition;
  5956.     so ignore leading whitespace entirely.
  5957.    LAST means these parts are the last of a macro definition;
  5958.     so ignore trailing whitespace entirely.  */
  5959.  
  5960. static int
  5961. comp_def_part (first, beg1, len1, beg2, len2, last)
  5962.      int first;
  5963.      U_CHAR *beg1, *beg2;
  5964.      int len1, len2;
  5965.      int last;
  5966. {
  5967.   register U_CHAR *end1 = beg1 + len1;
  5968.   register U_CHAR *end2 = beg2 + len2;
  5969.   if (first) {
  5970.     while (beg1 != end1 && is_space[*beg1]) beg1++;
  5971.     while (beg2 != end2 && is_space[*beg2]) beg2++;
  5972.   }
  5973.   if (last) {
  5974.     while (beg1 != end1 && is_space[end1[-1]]) end1--;
  5975.     while (beg2 != end2 && is_space[end2[-1]]) end2--;
  5976.   }
  5977.   while (beg1 != end1 && beg2 != end2) {
  5978.     if (is_space[*beg1] && is_space[*beg2]) {
  5979.       while (beg1 != end1 && is_space[*beg1]) beg1++;
  5980.       while (beg2 != end2 && is_space[*beg2]) beg2++;
  5981.     } else if (*beg1 == *beg2) {
  5982.       beg1++; beg2++;
  5983.     } else break;
  5984.   }
  5985.   return (beg1 != end1) || (beg2 != end2);
  5986. }
  5987.  
  5988. /* Read a replacement list for a macro with parameters.
  5989.    Build the DEFINITION structure.
  5990.    Reads characters of text starting at BUF until END.
  5991.    ARGLIST specifies the formal parameters to look for
  5992.    in the text of the definition; NARGS is the number of args
  5993.    in that list, or -1 for a macro name that wants no argument list.
  5994.    MACRONAME is the macro name itself (so we can avoid recursive expansion)
  5995.    and NAMELEN is its length in characters.
  5996.    
  5997. Note that comments, backslash-newlines, and leading white space
  5998. have already been deleted from the argument.  */
  5999.  
  6000. /* If there is no trailing whitespace, a Newline Space is added at the end
  6001.    to prevent concatenation that would be contrary to the standard.  */
  6002.  
  6003. static DEFINITION *
  6004. collect_expansion (buf, end, nargs, arglist)
  6005.      U_CHAR *buf, *end;
  6006.      int nargs;
  6007.      struct arglist *arglist;
  6008. {
  6009.   DEFINITION *defn;
  6010.   register U_CHAR *p, *limit, *lastp, *exp_p;
  6011.   struct reflist *endpat = NULL;
  6012.   /* Pointer to first nonspace after last ## seen.  */
  6013.   U_CHAR *concat = 0;
  6014.   /* Pointer to first nonspace after last single-# seen.  */
  6015.   U_CHAR *stringify = 0;
  6016.   /* How those tokens were spelled.  */
  6017.   enum sharp_token_type concat_sharp_token_type = NO_SHARP_TOKEN;
  6018.   enum sharp_token_type stringify_sharp_token_type = NO_SHARP_TOKEN;
  6019.   int maxsize;
  6020.   int expected_delimiter = '\0';
  6021.  
  6022.   /* Scan thru the replacement list, ignoring comments and quoted
  6023.      strings, picking up on the macro calls.  It does a linear search
  6024.      thru the arg list on every potential symbol.  Profiling might say
  6025.      that something smarter should happen. */
  6026.  
  6027.   if (end < buf)
  6028.     abort ();
  6029.  
  6030.   /* Find the beginning of the trailing whitespace.  */
  6031.   limit = end;
  6032.   p = buf;
  6033.   while (p < limit && is_space[limit[-1]]) limit--;
  6034.  
  6035.   /* Allocate space for the text in the macro definition.
  6036.      Each input char may or may not need 1 byte,
  6037.      so this is an upper bound.
  6038.      The extra 3 are for invented trailing newline-marker and final null.  */
  6039.   maxsize = (sizeof (DEFINITION)
  6040.          + (limit - p) + 3);
  6041.   defn = (DEFINITION *) xcalloc (1, maxsize);
  6042.  
  6043.   defn->nargs = nargs;
  6044.   exp_p = defn->expansion = (U_CHAR *) defn + sizeof (DEFINITION);
  6045.   lastp = exp_p;
  6046.  
  6047.   if (p[0] == '#'
  6048.       ? p[1] == '#'
  6049.       : p[0] == '%' && p[1] == ':' && p[2] == '%' && p[3] == ':') {
  6050.     error ("`##' at start of macro definition");
  6051.     p += p[0] == '#' ? 2 : 4;
  6052.   }
  6053.  
  6054.   /* Process the main body of the definition.  */
  6055.   while (p < limit) {
  6056.     int skipped_arg = 0;
  6057.     register U_CHAR c = *p++;
  6058.  
  6059.     *exp_p++ = c;
  6060.  
  6061.     if (!traditional) {
  6062.       switch (c) {
  6063.       case '\'':
  6064.       case '\"':
  6065.         if (expected_delimiter != '\0') {
  6066.           if (c == expected_delimiter)
  6067.             expected_delimiter = '\0';
  6068.         } else
  6069.           expected_delimiter = c;
  6070.     break;
  6071.  
  6072.       case '\\':
  6073.     if (p < limit && expected_delimiter) {
  6074.       /* In a string, backslash goes through
  6075.          and makes next char ordinary.  */
  6076.       *exp_p++ = *p++;
  6077.     }
  6078.     break;
  6079.  
  6080.       case '%':
  6081.     if (!expected_delimiter && *p == ':') {
  6082.       /* %: is not a digraph if preceded by an odd number of '<'s.  */
  6083.       U_CHAR *p0 = p - 1;
  6084.       while (buf < p0 && p0[-1] == '<')
  6085.         p0--;
  6086.       if ((p - p0) & 1) {
  6087.         /* Treat %:%: as ## and %: as #.  */
  6088.         if (p[1] == '%' && p[2] == ':') {
  6089.           p += 2;
  6090.           goto sharp_sharp_token;
  6091.         }
  6092.         if (nargs >= 0) {
  6093.           p++;
  6094.           goto sharp_token;
  6095.         }
  6096.       }
  6097.     }
  6098.     break;
  6099.  
  6100.       case '#':
  6101.     /* # is ordinary inside a string.  */
  6102.     if (expected_delimiter)
  6103.       break;
  6104.     if (*p == '#') {
  6105.     sharp_sharp_token:
  6106.       /* ##: concatenate preceding and following tokens.  */
  6107.       /* Take out the first #, discard preceding whitespace.  */
  6108.       exp_p--;
  6109.       while (exp_p > lastp && is_hor_space[exp_p[-1]])
  6110.         --exp_p;
  6111.       /* Skip the second #.  */
  6112.       p++;
  6113.       concat_sharp_token_type = c;
  6114.       if (is_hor_space[*p]) {
  6115.         concat_sharp_token_type = c + 1;
  6116.         p++;
  6117.         SKIP_WHITE_SPACE (p);
  6118.       }
  6119.       concat = p;
  6120.       if (p == limit)
  6121.         error ("`##' at end of macro definition");
  6122.     } else if (nargs >= 0) {
  6123.       /* Single #: stringify following argument ref.
  6124.          Don't leave the # in the expansion.  */
  6125.     sharp_token:
  6126.       exp_p--;
  6127.       stringify_sharp_token_type = c;
  6128.       if (is_hor_space[*p]) {
  6129.         stringify_sharp_token_type = c + 1;
  6130.         p++;
  6131.         SKIP_WHITE_SPACE (p);
  6132.       }
  6133.       if (! is_idstart[*p] || nargs == 0)
  6134.         error ("`#' operator is not followed by a macro argument name");
  6135.       else
  6136.         stringify = p;
  6137.     }
  6138.     break;
  6139.       }
  6140.     } else {
  6141.       /* In -traditional mode, recognize arguments inside strings and
  6142.      and character constants, and ignore special properties of #.
  6143.      Arguments inside strings are considered "stringified", but no
  6144.      extra quote marks are supplied.  */
  6145.       switch (c) {
  6146.       case '\'':
  6147.       case '\"':
  6148.     if (expected_delimiter != '\0') {
  6149.       if (c == expected_delimiter)
  6150.         expected_delimiter = '\0';
  6151.     } else
  6152.       expected_delimiter = c;
  6153.     break;
  6154.  
  6155.       case '\\':
  6156.     /* Backslash quotes delimiters and itself, but not macro args.  */
  6157.     if (expected_delimiter != 0 && p < limit
  6158.         && (*p == expected_delimiter || *p == '\\')) {
  6159.       *exp_p++ = *p++;
  6160.       continue;
  6161.     }
  6162.     break;
  6163.  
  6164.       case '/':
  6165.     if (expected_delimiter != '\0') /* No comments inside strings.  */
  6166.       break;
  6167.     if (*p == '*') {
  6168.       /* If we find a comment that wasn't removed by handle_directive,
  6169.          this must be -traditional.  So replace the comment with
  6170.          nothing at all.  */
  6171.       exp_p--;
  6172.       p += 1;
  6173.       while (p < limit && !(p[-2] == '*' && p[-1] == '/'))
  6174.         p++;
  6175. #if 0
  6176.       /* Mark this as a concatenation-point, as if it had been ##.  */
  6177.       concat = p;
  6178. #endif
  6179.     }
  6180.     break;
  6181.       }
  6182.     }
  6183.  
  6184.     /* Handle the start of a symbol.  */
  6185.     if (is_idchar[c] && nargs > 0) {
  6186.       U_CHAR *id_beg = p - 1;
  6187.       int id_len;
  6188.  
  6189.       --exp_p;
  6190.       while (p != limit && is_idchar[*p]) p++;
  6191.       id_len = p - id_beg;
  6192.  
  6193.       if (is_idstart[c]) {
  6194.     register struct arglist *arg;
  6195.  
  6196.     for (arg = arglist; arg != NULL; arg = arg->next) {
  6197.       struct reflist *tpat;
  6198.  
  6199.       if (arg->name[0] == c
  6200.           && arg->length == id_len
  6201.           && bcmp (arg->name, id_beg, id_len) == 0) {
  6202.         enum sharp_token_type tpat_stringify;
  6203.         if (expected_delimiter) {
  6204.           if (warn_stringify) {
  6205.         if (traditional) {
  6206.           warning ("macro argument `%.*s' is stringified.",
  6207.                id_len, arg->name);
  6208.         } else {
  6209.           warning ("macro arg `%.*s' would be stringified with -traditional.",
  6210.                id_len, arg->name);
  6211.         }
  6212.           }
  6213.           /* If ANSI, don't actually substitute inside a string.  */
  6214.           if (!traditional)
  6215.         break;
  6216.           tpat_stringify = SHARP_TOKEN;
  6217.         } else {
  6218.           tpat_stringify
  6219.         = (stringify == id_beg
  6220.            ? stringify_sharp_token_type : NO_SHARP_TOKEN);
  6221.         }
  6222.         /* make a pat node for this arg and append it to the end of
  6223.            the pat list */
  6224.         tpat = (struct reflist *) xmalloc (sizeof (struct reflist));
  6225.         tpat->next = NULL;
  6226.         tpat->raw_before
  6227.           = concat == id_beg ? concat_sharp_token_type : NO_SHARP_TOKEN;
  6228.         tpat->raw_after = NO_SHARP_TOKEN;
  6229.         tpat->rest_args = arg->rest_args;
  6230.         tpat->stringify = tpat_stringify;
  6231.  
  6232.         if (endpat == NULL)
  6233.           defn->pattern = tpat;
  6234.         else
  6235.           endpat->next = tpat;
  6236.         endpat = tpat;
  6237.  
  6238.         tpat->argno = arg->argno;
  6239.         tpat->nchars = exp_p - lastp;
  6240.         {
  6241.           register U_CHAR *p1 = p;
  6242.           SKIP_WHITE_SPACE (p1);
  6243.           if (p1[0]=='#'
  6244.               ? p1[1]=='#'
  6245.           : p1[0]=='%' && p1[1]==':' && p1[2]=='%' && p1[3]==':')
  6246.         tpat->raw_after = p1[0] + (p != p1);
  6247.         }
  6248.         lastp = exp_p;    /* place to start copying from next time */
  6249.         skipped_arg = 1;
  6250.         break;
  6251.       }
  6252.     }
  6253.       }
  6254.  
  6255.       /* If this was not a macro arg, copy it into the expansion.  */
  6256.       if (! skipped_arg) {
  6257.     register U_CHAR *lim1 = p;
  6258.     p = id_beg;
  6259.     while (p != lim1)
  6260.       *exp_p++ = *p++;
  6261.     if (stringify == id_beg)
  6262.       error ("`#' operator should be followed by a macro argument name");
  6263.       }
  6264.     }
  6265.   }
  6266.  
  6267.   if (!traditional && expected_delimiter == 0) {
  6268.     /* If ANSI, put in a newline-space marker to prevent token pasting.
  6269.        But not if "inside a string" (which in ANSI mode happens only for
  6270.        -D option).  */
  6271.     *exp_p++ = '\n';
  6272.     *exp_p++ = ' ';
  6273.   }
  6274.  
  6275.   *exp_p = '\0';
  6276.  
  6277.   defn->length = exp_p - defn->expansion;
  6278.  
  6279.   /* Crash now if we overrun the allocated size.  */
  6280.   if (defn->length + 1 > maxsize)
  6281.     abort ();
  6282.  
  6283. #if 0
  6284. /* This isn't worth the time it takes.  */
  6285.   /* give back excess storage */
  6286.   defn->expansion = (U_CHAR *) xrealloc (defn->expansion, defn->length + 1);
  6287. #endif
  6288.  
  6289.   return defn;
  6290. }
  6291.  
  6292. static int
  6293. do_assert (buf, limit, op, keyword)
  6294.      U_CHAR *buf, *limit;
  6295.      FILE_BUF *op;
  6296.      struct directive *keyword;
  6297. {
  6298.   U_CHAR *bp;            /* temp ptr into input buffer */
  6299.   U_CHAR *symname;        /* remember where symbol name starts */
  6300.   int sym_length;        /* and how long it is */
  6301.   struct arglist *tokens = NULL;
  6302.  
  6303.   if (pedantic && done_initializing && !instack[indepth].system_header_p)
  6304.     pedwarn ("ANSI C does not allow `#assert'");
  6305.  
  6306.   bp = buf;
  6307.  
  6308.   while (is_hor_space[*bp])
  6309.     bp++;
  6310.  
  6311.   symname = bp;            /* remember where it starts */
  6312.   sym_length = check_macro_name (bp, "assertion");
  6313.   bp += sym_length;
  6314.   /* #define doesn't do this, but we should.  */
  6315.   SKIP_WHITE_SPACE (bp);
  6316.  
  6317.   /* Lossage will occur if identifiers or control tokens are broken
  6318.      across lines using backslash.  This is not the right place to take
  6319.      care of that. */
  6320.  
  6321.   if (*bp != '(') {
  6322.     error ("missing token-sequence in `#assert'");
  6323.     return 1;
  6324.   }
  6325.  
  6326.   {
  6327.     int error_flag = 0;
  6328.  
  6329.     bp++;            /* skip '(' */
  6330.     SKIP_WHITE_SPACE (bp);
  6331.  
  6332.     tokens = read_token_list (&bp, limit, &error_flag);
  6333.     if (error_flag)
  6334.       return 1;
  6335.     if (tokens == 0) {
  6336.       error ("empty token-sequence in `#assert'");
  6337.       return 1;
  6338.     }
  6339.  
  6340.     ++bp;            /* skip paren */
  6341.     SKIP_WHITE_SPACE (bp);
  6342.   }
  6343.  
  6344.   /* If this name isn't already an assertion name, make it one.
  6345.      Error if it was already in use in some other way.  */
  6346.  
  6347.   {
  6348.     ASSERTION_HASHNODE *hp;
  6349.     int hashcode = hashf (symname, sym_length, ASSERTION_HASHSIZE);
  6350.     struct tokenlist_list *value
  6351.       = (struct tokenlist_list *) xmalloc (sizeof (struct tokenlist_list));
  6352.  
  6353.     hp = assertion_lookup (symname, sym_length, hashcode);
  6354.     if (hp == NULL) {
  6355.       if (sym_length == 7 && ! bcmp (symname, "defined", 7))
  6356.     error ("`defined' redefined as assertion");
  6357.       hp = assertion_install (symname, sym_length, hashcode);
  6358.     }
  6359.  
  6360.     /* Add the spec'd token-sequence to the list of such.  */
  6361.     value->tokens = tokens;
  6362.     value->next = hp->value;
  6363.     hp->value = value;
  6364.   }
  6365.  
  6366.   return 0;
  6367. }
  6368.  
  6369. static int
  6370. do_unassert (buf, limit, op, keyword)
  6371.      U_CHAR *buf, *limit;
  6372.      FILE_BUF *op;
  6373.      struct directive *keyword;
  6374. {
  6375.   U_CHAR *bp;            /* temp ptr into input buffer */
  6376.   U_CHAR *symname;        /* remember where symbol name starts */
  6377.   int sym_length;        /* and how long it is */
  6378.  
  6379.   struct arglist *tokens = NULL;
  6380.   int tokens_specified = 0;
  6381.  
  6382.   if (pedantic && done_initializing && !instack[indepth].system_header_p)
  6383.     pedwarn ("ANSI C does not allow `#unassert'");
  6384.  
  6385.   bp = buf;
  6386.  
  6387.   while (is_hor_space[*bp])
  6388.     bp++;
  6389.  
  6390.   symname = bp;            /* remember where it starts */
  6391.   sym_length = check_macro_name (bp, "assertion");
  6392.   bp += sym_length;
  6393.   /* #define doesn't do this, but we should.  */
  6394.   SKIP_WHITE_SPACE (bp);
  6395.  
  6396.   /* Lossage will occur if identifiers or control tokens are broken
  6397.      across lines using backslash.  This is not the right place to take
  6398.      care of that. */
  6399.  
  6400.   if (*bp == '(') {
  6401.     int error_flag = 0;
  6402.  
  6403.     bp++;            /* skip '(' */
  6404.     SKIP_WHITE_SPACE (bp);
  6405.  
  6406.     tokens = read_token_list (&bp, limit, &error_flag);
  6407.     if (error_flag)
  6408.       return 1;
  6409.     if (tokens == 0) {
  6410.       error ("empty token list in `#unassert'");
  6411.       return 1;
  6412.     }
  6413.  
  6414.     tokens_specified = 1;
  6415.  
  6416.     ++bp;            /* skip paren */
  6417.     SKIP_WHITE_SPACE (bp);
  6418.   }
  6419.  
  6420.   {
  6421.     ASSERTION_HASHNODE *hp;
  6422.     int hashcode = hashf (symname, sym_length, ASSERTION_HASHSIZE);
  6423.     struct tokenlist_list *tail, *prev;
  6424.  
  6425.     hp = assertion_lookup (symname, sym_length, hashcode);
  6426.     if (hp == NULL)
  6427.       return 1;
  6428.  
  6429.     /* If no token list was specified, then eliminate this assertion
  6430.        entirely.  */
  6431.     if (! tokens_specified) {
  6432.       struct tokenlist_list *next;
  6433.       for (tail = hp->value; tail; tail = next) {
  6434.     next = tail->next;
  6435.     free_token_list (tail->tokens);
  6436.     free (tail);
  6437.       }
  6438.       delete_assertion (hp);
  6439.     } else {
  6440.       /* If a list of tokens was given, then delete any matching list.  */
  6441.  
  6442.       tail = hp->value;
  6443.       prev = 0;
  6444.       while (tail) {
  6445.     struct tokenlist_list *next = tail->next;
  6446.     if (compare_token_lists (tail->tokens, tokens)) {
  6447.       if (prev)
  6448.         prev->next = next;
  6449.       else
  6450.         hp->value = tail->next;
  6451.       free_token_list (tail->tokens);
  6452.       free (tail);
  6453.     } else {
  6454.       prev = tail;
  6455.     }
  6456.     tail = next;
  6457.       }
  6458.     }
  6459.   }
  6460.  
  6461.   return 0;
  6462. }
  6463.  
  6464. /* Test whether there is an assertion named NAME
  6465.    and optionally whether it has an asserted token list TOKENS.
  6466.    NAME is not null terminated; its length is SYM_LENGTH.
  6467.    If TOKENS_SPECIFIED is 0, then don't check for any token list.  */
  6468.  
  6469. int
  6470. check_assertion (name, sym_length, tokens_specified, tokens)
  6471.      U_CHAR *name;
  6472.      int sym_length;
  6473.      int tokens_specified;
  6474.      struct arglist *tokens;
  6475. {
  6476.   ASSERTION_HASHNODE *hp;
  6477.   int hashcode = hashf (name, sym_length, ASSERTION_HASHSIZE);
  6478.  
  6479.   if (pedantic && !instack[indepth].system_header_p)
  6480.     pedwarn ("ANSI C does not allow testing assertions");
  6481.  
  6482.   hp = assertion_lookup (name, sym_length, hashcode);
  6483.   if (hp == NULL)
  6484.     /* It is not an assertion; just return false.  */
  6485.     return 0;
  6486.  
  6487.   /* If no token list was specified, then value is 1.  */
  6488.   if (! tokens_specified)
  6489.     return 1;
  6490.  
  6491.   {
  6492.     struct tokenlist_list *tail;
  6493.  
  6494.     tail = hp->value;
  6495.  
  6496.     /* If a list of tokens was given,
  6497.        then succeed if the assertion records a matching list.  */
  6498.  
  6499.     while (tail) {
  6500.       if (compare_token_lists (tail->tokens, tokens))
  6501.     return 1;
  6502.       tail = tail->next;
  6503.     }
  6504.  
  6505.     /* Fail if the assertion has no matching list.  */
  6506.     return 0;
  6507.   }
  6508. }
  6509.  
  6510. /* Compare two lists of tokens for equality including order of tokens.  */
  6511.  
  6512. static int
  6513. compare_token_lists (l1, l2)
  6514.      struct arglist *l1, *l2;
  6515. {
  6516.   while (l1 && l2) {
  6517.     if (l1->length != l2->length)
  6518.       return 0;
  6519.     if (bcmp (l1->name, l2->name, l1->length))
  6520.       return 0;
  6521.     l1 = l1->next;
  6522.     l2 = l2->next;
  6523.   }
  6524.  
  6525.   /* Succeed if both lists end at the same time.  */
  6526.   return l1 == l2;
  6527. }
  6528.  
  6529. /* Read a space-separated list of tokens ending in a close parenthesis.
  6530.    Return a list of strings, in the order they were written.
  6531.    (In case of error, return 0 and store -1 in *ERROR_FLAG.)
  6532.    Parse the text starting at *BPP, and update *BPP.
  6533.    Don't parse beyond LIMIT.  */
  6534.  
  6535. static struct arglist *
  6536. read_token_list (bpp, limit, error_flag)
  6537.      U_CHAR **bpp;
  6538.      U_CHAR *limit;
  6539.      int *error_flag;
  6540. {
  6541.   struct arglist *token_ptrs = 0;
  6542.   U_CHAR *bp = *bpp;
  6543.   int depth = 1;
  6544.  
  6545.   *error_flag = 0;
  6546.  
  6547.   /* Loop over the assertion value tokens.  */
  6548.   while (depth > 0) {
  6549.     struct arglist *temp;
  6550.     int eofp = 0;
  6551.     U_CHAR *beg = bp;
  6552.  
  6553.     /* Find the end of the token.  */
  6554.     if (*bp == '(') {
  6555.       bp++;
  6556.       depth++;
  6557.     } else if (*bp == ')') {
  6558.       depth--;
  6559.       if (depth == 0)
  6560.     break;
  6561.       bp++;
  6562.     } else if (*bp == '"' || *bp == '\'')
  6563.       bp = skip_quoted_string (bp, limit, 0, NULL_PTR, NULL_PTR, &eofp);
  6564.     else
  6565.       while (! is_hor_space[*bp] && *bp != '(' && *bp != ')'
  6566.          && *bp != '"' && *bp != '\'' && bp != limit)
  6567.     bp++;
  6568.  
  6569.     temp = (struct arglist *) xmalloc (sizeof (struct arglist));
  6570.     temp->name = (U_CHAR *) xmalloc (bp - beg + 1);
  6571.     bcopy ((char *) beg, (char *) temp->name, bp - beg);
  6572.     temp->name[bp - beg] = 0;
  6573.     temp->next = token_ptrs;
  6574.     token_ptrs = temp;
  6575.     temp->length = bp - beg;
  6576.  
  6577.     SKIP_WHITE_SPACE (bp);
  6578.  
  6579.     if (bp >= limit) {
  6580.       error ("unterminated token sequence in `#assert' or `#unassert'");
  6581.       *error_flag = -1;
  6582.       return 0;
  6583.     }
  6584.   }
  6585.   *bpp = bp;
  6586.  
  6587.   /* We accumulated the names in reverse order.
  6588.      Now reverse them to get the proper order.  */
  6589.   {
  6590.     register struct arglist *prev = 0, *this, *next;
  6591.     for (this = token_ptrs; this; this = next) {
  6592.       next = this->next;
  6593.       this->next = prev;
  6594.       prev = this;
  6595.     }
  6596.     return prev;
  6597.   }
  6598. }
  6599.  
  6600. static void
  6601. free_token_list (tokens)
  6602.      struct arglist *tokens;
  6603. {
  6604.   while (tokens) {
  6605.     struct arglist *next = tokens->next;
  6606.     free (tokens->name);
  6607.     free (tokens);
  6608.     tokens = next;
  6609.   }
  6610. }
  6611.  
  6612. /*
  6613.  * Install a name in the assertion hash table.
  6614.  *
  6615.  * If LEN is >= 0, it is the length of the name.
  6616.  * Otherwise, compute the length by scanning the entire name.
  6617.  *
  6618.  * If HASH is >= 0, it is the precomputed hash code.
  6619.  * Otherwise, compute the hash code.
  6620.  */
  6621. static ASSERTION_HASHNODE *
  6622. assertion_install (name, len, hash)
  6623.      U_CHAR *name;
  6624.      int len;
  6625.      int hash;
  6626. {
  6627.   register ASSERTION_HASHNODE *hp;
  6628.   register int i, bucket;
  6629.   register U_CHAR *p, *q;
  6630.  
  6631.   i = sizeof (ASSERTION_HASHNODE) + len + 1;
  6632.   hp = (ASSERTION_HASHNODE *) xmalloc (i);
  6633.   bucket = hash;
  6634.   hp->bucket_hdr = &assertion_hashtab[bucket];
  6635.   hp->next = assertion_hashtab[bucket];
  6636.   assertion_hashtab[bucket] = hp;
  6637.   hp->prev = NULL;
  6638.   if (hp->next != NULL)
  6639.     hp->next->prev = hp;
  6640.   hp->length = len;
  6641.   hp->value = 0;
  6642.   hp->name = ((U_CHAR *) hp) + sizeof (ASSERTION_HASHNODE);
  6643.   p = hp->name;
  6644.   q = name;
  6645.   for (i = 0; i < len; i++)
  6646.     *p++ = *q++;
  6647.   hp->name[len] = 0;
  6648.   return hp;
  6649. }
  6650.  
  6651. /*
  6652.  * find the most recent hash node for name name (ending with first
  6653.  * non-identifier char) installed by install
  6654.  *
  6655.  * If LEN is >= 0, it is the length of the name.
  6656.  * Otherwise, compute the length by scanning the entire name.
  6657.  *
  6658.  * If HASH is >= 0, it is the precomputed hash code.
  6659.  * Otherwise, compute the hash code.
  6660.  */
  6661. static ASSERTION_HASHNODE *
  6662. assertion_lookup (name, len, hash)
  6663.      U_CHAR *name;
  6664.      int len;
  6665.      int hash;
  6666. {
  6667.   register ASSERTION_HASHNODE *bucket;
  6668.  
  6669.   bucket = assertion_hashtab[hash];
  6670.   while (bucket) {
  6671.     if (bucket->length == len && bcmp (bucket->name, name, len) == 0)
  6672.       return bucket;
  6673.     bucket = bucket->next;
  6674.   }
  6675.   return NULL;
  6676. }
  6677.  
  6678. static void
  6679. delete_assertion (hp)
  6680.      ASSERTION_HASHNODE *hp;
  6681. {
  6682.  
  6683.   if (hp->prev != NULL)
  6684.     hp->prev->next = hp->next;
  6685.   if (hp->next != NULL)
  6686.     hp->next->prev = hp->prev;
  6687.  
  6688.   /* make sure that the bucket chain header that
  6689.      the deleted guy was on points to the right thing afterwards. */
  6690.   if (hp == *hp->bucket_hdr)
  6691.     *hp->bucket_hdr = hp->next;
  6692.  
  6693.   free (hp);
  6694. }
  6695.  
  6696. /*
  6697.  * interpret #line directive.  Remembers previously seen fnames
  6698.  * in its very own hash table.
  6699.  */
  6700. #define FNAME_HASHSIZE 37
  6701.  
  6702. static int
  6703. do_line (buf, limit, op, keyword)
  6704.      U_CHAR *buf, *limit;
  6705.      FILE_BUF *op;
  6706.      struct directive *keyword;
  6707. {
  6708.   register U_CHAR *bp;
  6709.   FILE_BUF *ip = &instack[indepth];
  6710.   FILE_BUF tem;
  6711.   int new_lineno;
  6712.   enum file_change_code file_change = same_file;
  6713.  
  6714.   /* Expand any macros.  */
  6715.   tem = expand_to_temp_buffer (buf, limit, 0, 0);
  6716.  
  6717.   /* Point to macroexpanded line, which is null-terminated now.  */
  6718.   bp = tem.buf;
  6719.   SKIP_WHITE_SPACE (bp);
  6720.  
  6721.   if (!isdigit (*bp)) {
  6722.     error ("invalid format `#line' directive");
  6723.     return 0;
  6724.   }
  6725.  
  6726.   /* The Newline at the end of this line remains to be processed.
  6727.      To put the next line at the specified line number,
  6728.      we must store a line number now that is one less.  */
  6729.   new_lineno = atoi ((char *) bp) - 1;
  6730.  
  6731.   /* NEW_LINENO is one less than the actual line number here.  */
  6732.   if (pedantic && new_lineno < 0)
  6733.     pedwarn ("line number out of range in `#line' directive");
  6734.  
  6735.   /* skip over the line number.  */
  6736.   while (isdigit (*bp))
  6737.     bp++;
  6738.  
  6739. #if 0 /* #line 10"foo.c" is supposed to be allowed.  */
  6740.   if (*bp && !is_space[*bp]) {
  6741.     error ("invalid format `#line' directive");
  6742.     return;
  6743.   }
  6744. #endif
  6745.  
  6746.   SKIP_WHITE_SPACE (bp);
  6747.  
  6748.   if (*bp == '\"') {
  6749.     static HASHNODE *fname_table[FNAME_HASHSIZE];
  6750.     HASHNODE *hp, **hash_bucket;
  6751.     U_CHAR *fname, *p;
  6752.     int fname_length;
  6753.  
  6754.     fname = ++bp;
  6755.  
  6756.     /* Turn the file name, which is a character string literal,
  6757.        into a null-terminated string.  Do this in place.  */
  6758.     p = bp;
  6759.     for (;;)
  6760.       switch ((*p++ = *bp++)) {
  6761.       case '\0':
  6762.     error ("invalid format `#line' directive");
  6763.     return 0;
  6764.  
  6765.       case '\\':
  6766.     {
  6767.       char *bpc = (char *) bp;
  6768.       int c = parse_escape (&bpc);
  6769.       bp = (U_CHAR *) bpc;
  6770.       if (c < 0)
  6771.         p--;
  6772.       else
  6773.         p[-1] = c;
  6774.     }
  6775.     break;
  6776.  
  6777.       case '\"':
  6778.     p[-1] = 0;
  6779.     goto fname_done;
  6780.       }
  6781.   fname_done:
  6782.     fname_length = p - fname;
  6783.  
  6784.     SKIP_WHITE_SPACE (bp);
  6785.     if (*bp) {
  6786.       if (pedantic)
  6787.     pedwarn ("garbage at end of `#line' directive");
  6788.       if (*bp == '1')
  6789.     file_change = enter_file;
  6790.       else if (*bp == '2')
  6791.     file_change = leave_file;
  6792.       else if (*bp == '3')
  6793.     ip->system_header_p = 1;
  6794.       else if (*bp == '4')
  6795.     ip->system_header_p = 2;
  6796.       else {
  6797.     error ("invalid format `#line' directive");
  6798.     return 0;
  6799.       }
  6800.  
  6801.       bp++;
  6802.       SKIP_WHITE_SPACE (bp);
  6803.       if (*bp == '3') {
  6804.     ip->system_header_p = 1;
  6805.     bp++;
  6806.     SKIP_WHITE_SPACE (bp);
  6807.       }
  6808.       if (*bp == '4') {
  6809.     ip->system_header_p = 2;
  6810.     bp++;
  6811.     SKIP_WHITE_SPACE (bp);
  6812.       }
  6813.       if (*bp) {
  6814.     error ("invalid format `#line' directive");
  6815.     return 0;
  6816.       }
  6817.     }
  6818.  
  6819.     hash_bucket =
  6820.       &fname_table[hashf (fname, fname_length, FNAME_HASHSIZE)];
  6821.     for (hp = *hash_bucket; hp != NULL; hp = hp->next)
  6822.       if (hp->length == fname_length &&
  6823.       bcmp (hp->value.cpval, fname, fname_length) == 0) {
  6824.     ip->nominal_fname = hp->value.cpval;
  6825.     break;
  6826.       }
  6827.     if (hp == 0) {
  6828.       /* Didn't find it; cons up a new one.  */
  6829.       hp = (HASHNODE *) xcalloc (1, sizeof (HASHNODE) + fname_length + 1);
  6830.       hp->next = *hash_bucket;
  6831.       *hash_bucket = hp;
  6832.  
  6833.       hp->length = fname_length;
  6834.       ip->nominal_fname = hp->value.cpval = ((char *) hp) + sizeof (HASHNODE);
  6835.       bcopy (fname, hp->value.cpval, fname_length);
  6836.     }
  6837.   } else if (*bp) {
  6838.     error ("invalid format `#line' directive");
  6839.     return 0;
  6840.   }
  6841.  
  6842.   ip->lineno = new_lineno;
  6843.   output_line_directive (ip, op, 0, file_change);
  6844.   check_expand (op, ip->length - (ip->bufp - ip->buf));
  6845.   return 0;
  6846. }
  6847.  
  6848. /*
  6849.  * remove the definition of a symbol from the symbol table.
  6850.  * according to un*x /lib/cpp, it is not an error to undef
  6851.  * something that has no definitions, so it isn't one here either.
  6852.  */
  6853.  
  6854. static int
  6855. do_undef (buf, limit, op, keyword)
  6856.      U_CHAR *buf, *limit;
  6857.      FILE_BUF *op;
  6858.      struct directive *keyword;
  6859. {
  6860.   int sym_length;
  6861.   HASHNODE *hp;
  6862.   U_CHAR *orig_buf = buf;
  6863.  
  6864.   /* If this is a precompiler run (with -pcp) pass thru #undef directives.  */
  6865.   if (pcp_outfile && op)
  6866.     pass_thru_directive (buf, limit, op, keyword);
  6867.  
  6868.   SKIP_WHITE_SPACE (buf);
  6869.   sym_length = check_macro_name (buf, "macro");
  6870.  
  6871.   while ((hp = lookup (buf, sym_length, -1)) != NULL) {
  6872.     /* If we are generating additional info for debugging (with -g) we
  6873.        need to pass through all effective #undef directives.  */
  6874.     if (debug_output && op)
  6875.       pass_thru_directive (orig_buf, limit, op, keyword);
  6876.     if (hp->type != T_MACRO)
  6877.       warning ("undefining `%s'", hp->name);
  6878.     delete_macro (hp);
  6879.   }
  6880.  
  6881.   if (pedantic) {
  6882.     buf += sym_length;
  6883.     SKIP_WHITE_SPACE (buf);
  6884.     if (buf != limit)
  6885.       pedwarn ("garbage after `#undef' directive");
  6886.   }
  6887.   return 0;
  6888. }
  6889.  
  6890. /*
  6891.  * Report an error detected by the program we are processing.
  6892.  * Use the text of the line in the error message.
  6893.  * (We use error because it prints the filename & line#.)
  6894.  */
  6895.  
  6896. static int
  6897. do_error (buf, limit, op, keyword)
  6898.      U_CHAR *buf, *limit;
  6899.      FILE_BUF *op;
  6900.      struct directive *keyword;
  6901. {
  6902.   int length = limit - buf;
  6903.   U_CHAR *copy = (U_CHAR *) xmalloc (length + 1);
  6904.   bcopy ((char *) buf, (char *) copy, length);
  6905.   copy[length] = 0;
  6906.   SKIP_WHITE_SPACE (copy);
  6907.   error ("#error %s", copy);
  6908.   return 0;
  6909. }
  6910.  
  6911. /*
  6912.  * Report a warning detected by the program we are processing.
  6913.  * Use the text of the line in the warning message, then continue.
  6914.  * (We use error because it prints the filename & line#.)
  6915.  */
  6916.  
  6917. static int
  6918. do_warning (buf, limit, op, keyword)
  6919.      U_CHAR *buf, *limit;
  6920.      FILE_BUF *op;
  6921.      struct directive *keyword;
  6922. {
  6923.   int length = limit - buf;
  6924.   U_CHAR *copy = (U_CHAR *) xmalloc (length + 1);
  6925.   bcopy ((char *) buf, (char *) copy, length);
  6926.   copy[length] = 0;
  6927.   SKIP_WHITE_SPACE (copy);
  6928.   warning ("#warning %s", copy);
  6929.   return 0;
  6930. }
  6931.  
  6932. /* Remember the name of the current file being read from so that we can
  6933.    avoid ever including it again.  */
  6934.  
  6935. static void
  6936. do_once ()
  6937. {
  6938.   int i;
  6939.   FILE_BUF *ip = NULL;
  6940.  
  6941.   for (i = indepth; i >= 0; i--)
  6942.     if (instack[i].fname != NULL) {
  6943.       ip = &instack[i];
  6944.       break;
  6945.     }
  6946.  
  6947.   if (ip != NULL) {
  6948.     struct file_name_list *new;
  6949.     
  6950.     new = (struct file_name_list *) xmalloc (sizeof (struct file_name_list));
  6951.     new->next = dont_repeat_files;
  6952.     dont_repeat_files = new;
  6953.     new->fname = savestring (ip->fname);
  6954.     new->control_macro = 0;
  6955.     new->got_name_map = 0;
  6956.     new->c_system_include_path = 0;
  6957.   }
  6958. }
  6959.  
  6960. /* #ident has already been copied to the output file, so just ignore it.  */
  6961.  
  6962. static int
  6963. do_ident (buf, limit, op, keyword)
  6964.      U_CHAR *buf, *limit;
  6965.      FILE_BUF *op;
  6966.      struct directive *keyword;
  6967. {
  6968.   FILE_BUF trybuf;
  6969.   int len;
  6970.  
  6971.   /* Allow #ident in system headers, since that's not user's fault.  */
  6972.   if (pedantic && !instack[indepth].system_header_p)
  6973.     pedwarn ("ANSI C does not allow `#ident'");
  6974.  
  6975.   trybuf = expand_to_temp_buffer (buf, limit, 0, 0);
  6976.   buf = (U_CHAR *) alloca (trybuf.bufp - trybuf.buf + 1);
  6977.   bcopy ((char *) trybuf.buf, (char *) buf, trybuf.bufp - trybuf.buf);
  6978.   limit = buf + (trybuf.bufp - trybuf.buf);
  6979.   len = (limit - buf);
  6980.   free (trybuf.buf);
  6981.  
  6982.   /* Output directive name.  */
  6983.   check_expand (op, 7);
  6984.   bcopy ("#ident ", (char *) op->bufp, 7);
  6985.   op->bufp += 7;
  6986.  
  6987.   /* Output the expanded argument line.  */
  6988.   check_expand (op, len);
  6989.   bcopy ((char *) buf, (char *) op->bufp, len);
  6990.   op->bufp += len;
  6991.  
  6992.   return 0;
  6993. }
  6994.  
  6995. /* #pragma and its argument line have already been copied to the output file.
  6996.    Just check for some recognized pragmas that need validation here.  */
  6997.  
  6998. static int
  6999. do_pragma (buf, limit, op, keyword)
  7000.      U_CHAR *buf, *limit;
  7001.      FILE_BUF *op;
  7002.      struct directive *keyword;
  7003. {
  7004.   SKIP_WHITE_SPACE (buf);
  7005.   if (!strncmp ((char *) buf, "once", 4)) {
  7006.     /* Allow #pragma once in system headers, since that's not the user's
  7007.        fault.  */
  7008.     if (!instack[indepth].system_header_p)
  7009.       warning ("`#pragma once' is obsolete");
  7010.     do_once ();
  7011.   }
  7012.  
  7013.   if (!strncmp ((char *) buf, "implementation", 14)) {
  7014.     /* Be quiet about `#pragma implementation' for a file only if it hasn't
  7015.        been included yet.  */
  7016.     struct file_name_list *ptr;
  7017.     U_CHAR *p = buf + 14, *fname, *inc_fname;
  7018.     SKIP_WHITE_SPACE (p);
  7019.     if (*p == '\n' || *p != '\"')
  7020.       return 0;
  7021.  
  7022.     fname = p + 1;
  7023.     if ((p = (U_CHAR *) index ((char *) fname, '\"')))
  7024.       *p = '\0';
  7025.     
  7026.     for (ptr = all_include_files; ptr; ptr = ptr->next) {
  7027.       inc_fname = (U_CHAR *) rindex (ptr->fname, '/');
  7028.       inc_fname = inc_fname ? inc_fname + 1 : (U_CHAR *) ptr->fname;
  7029.       if (inc_fname && !strcmp ((char *) inc_fname, (char *) fname))
  7030.     warning ("`#pragma implementation' for `%s' appears after file is included",
  7031.          fname);
  7032.     }
  7033.   }
  7034.  
  7035.   return 0;
  7036. }
  7037.  
  7038. #if 0
  7039. /* This was a fun hack, but #pragma seems to start to be useful.
  7040.    By failing to recognize it, we pass it through unchanged to cc1.  */
  7041.  
  7042. /*
  7043.  * the behavior of the #pragma directive is implementation defined.
  7044.  * this implementation defines it as follows.
  7045.  */
  7046.  
  7047. static int
  7048. do_pragma ()
  7049. {
  7050.   close (0);
  7051.   if (open ("/dev/tty", O_RDONLY, 0666) != 0)
  7052.     goto nope;
  7053.   close (1);
  7054.   if (open ("/dev/tty", O_WRONLY, 0666) != 1)
  7055.     goto nope;
  7056.   execl ("/usr/games/hack", "#pragma", 0);
  7057.   execl ("/usr/games/rogue", "#pragma", 0);
  7058.   execl ("/usr/new/emacs", "-f", "hanoi", "9", "-kill", 0);
  7059.   execl ("/usr/local/emacs", "-f", "hanoi", "9", "-kill", 0);
  7060. nope:
  7061.   fatal ("You are in a maze of twisty compiler features, all different");
  7062. }
  7063. #endif
  7064.  
  7065. #ifdef SCCS_DIRECTIVE
  7066.  
  7067. /* Just ignore #sccs, on systems where we define it at all.  */
  7068.  
  7069. static int
  7070. do_sccs (buf, limit, op, keyword)
  7071.      U_CHAR *buf, *limit;
  7072.      FILE_BUF *op;
  7073.      struct directive *keyword;
  7074. {
  7075.   if (pedantic)
  7076.     pedwarn ("ANSI C does not allow `#sccs'");
  7077.   return 0;
  7078. }
  7079.  
  7080. #endif /* defined (SCCS_DIRECTIVE) */
  7081.  
  7082. /*
  7083.  * handle #if directive by
  7084.  *   1) inserting special `defined' keyword into the hash table
  7085.  *    that gets turned into 0 or 1 by special_symbol (thus,
  7086.  *    if the luser has a symbol called `defined' already, it won't
  7087.  *      work inside the #if directive)
  7088.  *   2) rescan the input into a temporary output buffer
  7089.  *   3) pass the output buffer to the yacc parser and collect a value
  7090.  *   4) clean up the mess left from steps 1 and 2.
  7091.  *   5) call conditional_skip to skip til the next #endif (etc.),
  7092.  *      or not, depending on the value from step 3.
  7093.  */
  7094.  
  7095. static int
  7096. do_if (buf, limit, op, keyword)
  7097.      U_CHAR *buf, *limit;
  7098.      FILE_BUF *op;
  7099.      struct directive *keyword;
  7100. {
  7101.   HOST_WIDE_INT value;
  7102.   FILE_BUF *ip = &instack[indepth];
  7103.  
  7104.   value = eval_if_expression (buf, limit - buf);
  7105.   conditional_skip (ip, value == 0, T_IF, NULL_PTR, op);
  7106.   return 0;
  7107. }
  7108.  
  7109. /*
  7110.  * handle a #elif directive by not changing  if_stack  either.
  7111.  * see the comment above do_else.
  7112.  */
  7113.  
  7114. static int
  7115. do_elif (buf, limit, op, keyword)
  7116.      U_CHAR *buf, *limit;
  7117.      FILE_BUF *op;
  7118.      struct directive *keyword;
  7119. {
  7120.   HOST_WIDE_INT value;
  7121.   FILE_BUF *ip = &instack[indepth];
  7122.  
  7123.   if (if_stack == instack[indepth].if_stack) {
  7124.     error ("`#elif' not within a conditional");
  7125.     return 0;
  7126.   } else {
  7127.     if (if_stack->type != T_IF && if_stack->type != T_ELIF) {
  7128.       error ("`#elif' after `#else'");
  7129.       fprintf (stderr, " (matches line %d", if_stack->lineno);
  7130.       if (if_stack->fname != NULL && ip->fname != NULL &&
  7131.       strcmp (if_stack->fname, ip->nominal_fname) != 0)
  7132.     fprintf (stderr, ", file %s", if_stack->fname);
  7133.       fprintf (stderr, ")\n");
  7134.     }
  7135.     if_stack->type = T_ELIF;
  7136.   }
  7137.  
  7138.   if (if_stack->if_succeeded)
  7139.     skip_if_group (ip, 0, op);
  7140.   else {
  7141.     value = eval_if_expression (buf, limit - buf);
  7142.     if (value == 0)
  7143.       skip_if_group (ip, 0, op);
  7144.     else {
  7145.       ++if_stack->if_succeeded;    /* continue processing input */
  7146.       output_line_directive (ip, op, 1, same_file);
  7147.     }
  7148.   }
  7149.   return 0;
  7150. }
  7151.  
  7152. /*
  7153.  * evaluate a #if expression in BUF, of length LENGTH,
  7154.  * then parse the result as a C expression and return the value as an int.
  7155.  */
  7156. static HOST_WIDE_INT
  7157. eval_if_expression (buf, length)
  7158.      U_CHAR *buf;
  7159.      int length;
  7160. {
  7161.   FILE_BUF temp_obuf;
  7162.   HASHNODE *save_defined;
  7163.   HOST_WIDE_INT value;
  7164.  
  7165.   save_defined = install ((U_CHAR *) "defined", -1, T_SPEC_DEFINED,
  7166.               NULL_PTR, -1);
  7167.   pcp_inside_if = 1;
  7168.   temp_obuf = expand_to_temp_buffer (buf, buf + length, 0, 1);
  7169.   pcp_inside_if = 0;
  7170.   delete_macro (save_defined);    /* clean up special symbol */
  7171.  
  7172.   value = parse_c_expression ((char *) temp_obuf.buf);
  7173.  
  7174.   free (temp_obuf.buf);
  7175.  
  7176.   return value;
  7177. }
  7178.  
  7179. /*
  7180.  * routine to handle ifdef/ifndef.  Try to look up the symbol,
  7181.  * then do or don't skip to the #endif/#else/#elif depending
  7182.  * on what directive is actually being processed.
  7183.  */
  7184.  
  7185. static int
  7186. do_xifdef (buf, limit, op, keyword)
  7187.      U_CHAR *buf, *limit;
  7188.      FILE_BUF *op;
  7189.      struct directive *keyword;
  7190. {
  7191.   int skip;
  7192.   FILE_BUF *ip = &instack[indepth];
  7193.   U_CHAR *end; 
  7194.   int start_of_file = 0;
  7195.   U_CHAR *control_macro = 0;
  7196.  
  7197.   /* Detect a #ifndef at start of file (not counting comments).  */
  7198.   if (ip->fname != 0 && keyword->type == T_IFNDEF) {
  7199.     U_CHAR *p = ip->buf;
  7200.     while (p != directive_start) {
  7201.       U_CHAR c = *p++;
  7202.       if (is_space[c])
  7203.     ;
  7204.       /* Make no special provision for backslash-newline here; this is
  7205.      slower if backslash-newlines are present, but it's correct,
  7206.      and it's not worth it to tune for the rare backslash-newline.  */
  7207.       else if (c == '/'
  7208.            && (*p == '*' || (cplusplus_comments && *p == '/'))) {
  7209.     /* Skip this comment.  */
  7210.     int junk = 0;
  7211.     U_CHAR *save_bufp = ip->bufp;
  7212.     ip->bufp = p + 1;
  7213.     p = skip_to_end_of_comment (ip, &junk, 1);
  7214.     ip->bufp = save_bufp;
  7215.       } else {
  7216.     goto fail;
  7217.       }
  7218.     }
  7219.     /* If we get here, this conditional is the beginning of the file.  */
  7220.     start_of_file = 1;
  7221.   fail: ;
  7222.   }
  7223.  
  7224.   /* Discard leading and trailing whitespace.  */
  7225.   SKIP_WHITE_SPACE (buf);
  7226.   while (limit != buf && is_hor_space[limit[-1]]) limit--;
  7227.  
  7228.   /* Find the end of the identifier at the beginning.  */
  7229.   for (end = buf; is_idchar[*end]; end++);
  7230.  
  7231. #ifdef CPP_SYMNAME_HOOK
  7232.   CPP_SYMNAME_HOOK (buf, end - buf);
  7233. #endif
  7234.  
  7235.   if (end == buf) {
  7236.     skip = (keyword->type == T_IFDEF);
  7237.     if (! traditional)
  7238.       pedwarn (end == limit ? "`#%s' with no argument"
  7239.            : "`#%s' argument starts with punctuation",
  7240.            keyword->name);
  7241.   } else {
  7242.     HASHNODE *hp;
  7243.  
  7244.     if (pedantic && buf[0] >= '0' && buf[0] <= '9')
  7245.       pedwarn ("`#%s' argument starts with a digit", keyword->name);
  7246.     else if (end != limit && !traditional)
  7247.       pedwarn ("garbage at end of `#%s' argument", keyword->name);
  7248.  
  7249.     hp = lookup (buf, end-buf, -1);
  7250.  
  7251.     if (pcp_outfile) {
  7252.       /* Output a precondition for this macro.  */
  7253.       if (hp &&
  7254.       (hp->type == T_CONST
  7255.        || (hp->type == T_MACRO && hp->value.defn->predefined)))
  7256.     fprintf (pcp_outfile, "#define %s\n", hp->name);
  7257.       else {
  7258.     U_CHAR *cp = buf;
  7259.     fprintf (pcp_outfile, "#undef ");
  7260.     while (is_idchar[*cp]) /* Ick! */
  7261.       fputc (*cp++, pcp_outfile);
  7262.     putc ('\n', pcp_outfile);
  7263.       }
  7264.     }
  7265.  
  7266.     skip = (hp == NULL) ^ (keyword->type == T_IFNDEF);
  7267.     if (start_of_file && !skip) {
  7268.       control_macro = (U_CHAR *) xmalloc (end - buf + 1);
  7269.       bcopy ((char *) buf, (char *) control_macro, end - buf);
  7270.       control_macro[end - buf] = 0;
  7271.     }
  7272.   }
  7273.   
  7274.   conditional_skip (ip, skip, T_IF, control_macro, op);
  7275.   return 0;
  7276. }
  7277.  
  7278. /* Push TYPE on stack; then, if SKIP is nonzero, skip ahead.
  7279.    If this is a #ifndef starting at the beginning of a file,
  7280.    CONTROL_MACRO is the macro name tested by the #ifndef.
  7281.    Otherwise, CONTROL_MACRO is 0.  */
  7282.  
  7283. static void
  7284. conditional_skip (ip, skip, type, control_macro, op)
  7285.      FILE_BUF *ip;
  7286.      int skip;
  7287.      enum node_type type;
  7288.      U_CHAR *control_macro;
  7289.      FILE_BUF *op;
  7290. {
  7291.   IF_STACK_FRAME *temp;
  7292.  
  7293.   temp = (IF_STACK_FRAME *) xcalloc (1, sizeof (IF_STACK_FRAME));
  7294.   temp->fname = ip->nominal_fname;
  7295.   temp->lineno = ip->lineno;
  7296.   temp->next = if_stack;
  7297.   temp->control_macro = control_macro;
  7298.   if_stack = temp;
  7299.  
  7300.   if_stack->type = type;
  7301.  
  7302.   if (skip != 0) {
  7303.     skip_if_group (ip, 0, op);
  7304.     return;
  7305.   } else {
  7306.     ++if_stack->if_succeeded;
  7307.     output_line_directive (ip, &outbuf, 1, same_file);
  7308.   }
  7309. }
  7310.  
  7311. /*
  7312.  * skip to #endif, #else, or #elif.  adjust line numbers, etc.
  7313.  * leaves input ptr at the sharp sign found.
  7314.  * If ANY is nonzero, return at next directive of any sort.
  7315.  */
  7316. static void
  7317. skip_if_group (ip, any, op)
  7318.      FILE_BUF *ip;
  7319.      int any;
  7320.      FILE_BUF *op;
  7321. {
  7322.   register U_CHAR *bp = ip->bufp, *cp;
  7323.   register U_CHAR *endb = ip->buf + ip->length;
  7324.   struct directive *kt;
  7325.   IF_STACK_FRAME *save_if_stack = if_stack; /* don't pop past here */
  7326.   U_CHAR *beg_of_line = bp;
  7327.   register int ident_length;
  7328.   U_CHAR *ident, *after_ident;
  7329.   /* Save info about where the group starts.  */
  7330.   U_CHAR *beg_of_group = bp;
  7331.   int beg_lineno = ip->lineno;
  7332.  
  7333.   if (output_conditionals && op != 0) {
  7334.     char *ptr = "#failed\n";
  7335.     int len = strlen (ptr);
  7336.  
  7337.     if (op->bufp > op->buf && op->bufp[-1] != '\n')
  7338.       {
  7339.     *op->bufp++ = '\n';
  7340.     op->lineno++;
  7341.       }
  7342.     check_expand (op, len);
  7343.     bcopy (ptr, (char *) op->bufp, len);
  7344.     op->bufp += len;
  7345.     op->lineno++;
  7346.     output_line_directive (ip, op, 1, 0);
  7347.   }
  7348.  
  7349.   while (bp < endb) {
  7350.     switch (*bp++) {
  7351.     case '/':            /* possible comment */
  7352.       if (*bp == '\\' && bp[1] == '\n')
  7353.     newline_fix (bp);
  7354.       if (*bp == '*'
  7355.       || (cplusplus_comments && *bp == '/')) {
  7356.     ip->bufp = ++bp;
  7357.     bp = skip_to_end_of_comment (ip, &ip->lineno, 0);
  7358.       }
  7359.       break;
  7360.     case '\"':
  7361.     case '\'':
  7362.       bp = skip_quoted_string (bp - 1, endb, ip->lineno, &ip->lineno,
  7363.                    NULL_PTR, NULL_PTR);
  7364.       break;
  7365.     case '\\':
  7366.       /* Char after backslash loses its special meaning.  */
  7367.       if (bp < endb) {
  7368.     if (*bp == '\n')
  7369.       ++ip->lineno;        /* But do update the line-count.  */
  7370.     bp++;
  7371.       }
  7372.       break;
  7373.     case '\n':
  7374.       ++ip->lineno;
  7375.       beg_of_line = bp;
  7376.       break;
  7377.     case '%':
  7378.       if (beg_of_line == 0 || traditional)
  7379.     break;
  7380.       ip->bufp = bp - 1;
  7381.       while (bp[0] == '\\' && bp[1] == '\n')
  7382.     bp += 2;
  7383.       if (*bp == ':')
  7384.     goto sharp_token;
  7385.       break;
  7386.     case '#':
  7387.       /* # keyword: a # must be first nonblank char on the line */
  7388.       if (beg_of_line == 0)
  7389.     break;
  7390.       ip->bufp = bp - 1;
  7391.     sharp_token:
  7392.       /* Scan from start of line, skipping whitespace, comments
  7393.      and backslash-newlines, and see if we reach this #.
  7394.      If not, this # is not special.  */
  7395.       bp = beg_of_line;
  7396.       /* If -traditional, require # to be at beginning of line.  */
  7397.       if (!traditional) {
  7398.     while (1) {
  7399.       if (is_hor_space[*bp])
  7400.         bp++;
  7401.       else if (*bp == '\\' && bp[1] == '\n')
  7402.         bp += 2;
  7403.       else if (*bp == '/' && bp[1] == '*') {
  7404.         bp += 2;
  7405.         while (!(*bp == '*' && bp[1] == '/'))
  7406.           bp++;
  7407.         bp += 2;
  7408.       }
  7409.       /* There is no point in trying to deal with C++ // comments here,
  7410.          because if there is one, then this # must be part of the
  7411.          comment and we would never reach here.  */
  7412.       else break;
  7413.     }
  7414.       }
  7415.       if (bp != ip->bufp) {
  7416.     bp = ip->bufp + 1;    /* Reset bp to after the #.  */
  7417.     break;
  7418.       }
  7419.  
  7420.       bp = ip->bufp + 1;    /* Point after the '#' */
  7421.       if (ip->bufp[0] == '%') {
  7422.     /* Skip past the ':' again.  */
  7423.     while (*bp == '\\') {
  7424.       ip->lineno++;
  7425.       bp += 2;
  7426.     }
  7427.     bp++;
  7428.       }
  7429.  
  7430.       /* Skip whitespace and \-newline.  */
  7431.       while (1) {
  7432.     if (is_hor_space[*bp])
  7433.       bp++;
  7434.     else if (*bp == '\\' && bp[1] == '\n')
  7435.       bp += 2;
  7436.     else if (*bp == '/' && bp[1] == '*') {
  7437.       bp += 2;
  7438.       while (!(*bp == '*' && bp[1] == '/')) {
  7439.         if (*bp == '\n')
  7440.           ip->lineno++;
  7441.         bp++;
  7442.       }
  7443.       bp += 2;
  7444.     } else if (cplusplus_comments && *bp == '/' && bp[1] == '/') {
  7445.       bp += 2;
  7446.       while (bp[-1] == '\\' || *bp != '\n') {
  7447.         if (*bp == '\n')
  7448.           ip->lineno++;
  7449.         bp++;
  7450.       }
  7451.         }
  7452.     else break;
  7453.       }
  7454.  
  7455.       cp = bp;
  7456.  
  7457.       /* Now find end of directive name.
  7458.      If we encounter a backslash-newline, exchange it with any following
  7459.      symbol-constituents so that we end up with a contiguous name.  */
  7460.  
  7461.       while (1) {
  7462.     if (is_idchar[*bp])
  7463.       bp++;
  7464.     else {
  7465.       if (*bp == '\\' && bp[1] == '\n')
  7466.         name_newline_fix (bp);
  7467.       if (is_idchar[*bp])
  7468.         bp++;
  7469.       else break;
  7470.     }
  7471.       }
  7472.       ident_length = bp - cp;
  7473.       ident = cp;
  7474.       after_ident = bp;
  7475.  
  7476.       /* A line of just `#' becomes blank.  */
  7477.  
  7478.       if (ident_length == 0 && *after_ident == '\n') {
  7479.     continue;
  7480.       }
  7481.  
  7482.       if (ident_length == 0 || !is_idstart[*ident]) {
  7483.     U_CHAR *p = ident;
  7484.     while (is_idchar[*p]) {
  7485.       if (*p < '0' || *p > '9')
  7486.         break;
  7487.       p++;
  7488.     }
  7489.     /* Handle # followed by a line number.  */
  7490.     if (p != ident && !is_idchar[*p]) {
  7491.       if (pedantic)
  7492.         pedwarn ("`#' followed by integer");
  7493.       continue;
  7494.     }
  7495.  
  7496.     /* Avoid error for `###' and similar cases unless -pedantic.  */
  7497.     if (p == ident) {
  7498.       while (*p == '#' || is_hor_space[*p]) p++;
  7499.       if (*p == '\n') {
  7500.         if (pedantic && !lang_asm)
  7501.           pedwarn ("invalid preprocessing directive");
  7502.         continue;
  7503.       }
  7504.     }
  7505.  
  7506.     if (!lang_asm && pedantic)
  7507.       pedwarn ("invalid preprocessing directive name");
  7508.     continue;
  7509.       }
  7510.  
  7511.       for (kt = directive_table; kt->length >= 0; kt++) {
  7512.     IF_STACK_FRAME *temp;
  7513.     if (ident_length == kt->length
  7514.         && bcmp (cp, kt->name, kt->length) == 0) {
  7515.       /* If we are asked to return on next directive, do so now.  */
  7516.       if (any)
  7517.         goto done;
  7518.  
  7519.       switch (kt->type) {
  7520.       case T_IF:
  7521.       case T_IFDEF:
  7522.       case T_IFNDEF:
  7523.         temp = (IF_STACK_FRAME *) xcalloc (1, sizeof (IF_STACK_FRAME));
  7524.         temp->next = if_stack;
  7525.         if_stack = temp;
  7526.         temp->lineno = ip->lineno;
  7527.         temp->fname = ip->nominal_fname;
  7528.         temp->type = kt->type;
  7529.         break;
  7530.       case T_ELSE:
  7531.       case T_ENDIF:
  7532.         if (pedantic && if_stack != save_if_stack)
  7533.           validate_else (bp);
  7534.       case T_ELIF:
  7535.         if (if_stack == instack[indepth].if_stack) {
  7536.           error ("`#%s' not within a conditional", kt->name);
  7537.           break;
  7538.         }
  7539.         else if (if_stack == save_if_stack)
  7540.           goto done;        /* found what we came for */
  7541.  
  7542.         if (kt->type != T_ENDIF) {
  7543.           if (if_stack->type == T_ELSE)
  7544.         error ("`#else' or `#elif' after `#else'");
  7545.           if_stack->type = kt->type;
  7546.           break;
  7547.         }
  7548.  
  7549.         temp = if_stack;
  7550.         if_stack = if_stack->next;
  7551.         free (temp);
  7552.         break;
  7553.  
  7554.        default:
  7555.         break;
  7556.       }
  7557.       break;
  7558.     }
  7559.       }
  7560.       /* Don't let erroneous code go by.  */
  7561.       if (kt->length < 0 && !lang_asm && pedantic)
  7562.     pedwarn ("invalid preprocessing directive name");
  7563.     }
  7564.   }
  7565.  
  7566.   ip->bufp = bp;
  7567.   /* after this returns, rescan will exit because ip->bufp
  7568.      now points to the end of the buffer.
  7569.      rescan is responsible for the error message also.  */
  7570.  
  7571.  done:
  7572.   if (output_conditionals && op != 0) {
  7573.     char *ptr = "#endfailed\n";
  7574.     int len = strlen (ptr);
  7575.  
  7576.     if (op->bufp > op->buf && op->bufp[-1] != '\n')
  7577.       {
  7578.     *op->bufp++ = '\n';
  7579.     op->lineno++;
  7580.       }
  7581.     check_expand (op, beg_of_line - beg_of_group);
  7582.     bcopy ((char *) beg_of_group, (char *) op->bufp,
  7583.        beg_of_line - beg_of_group);
  7584.     op->bufp += beg_of_line - beg_of_group;
  7585.     op->lineno += ip->lineno - beg_lineno;
  7586.     check_expand (op, len);
  7587.     bcopy (ptr, (char *) op->bufp, len);
  7588.     op->bufp += len;
  7589.     op->lineno++;
  7590.   }
  7591. }
  7592.  
  7593. /*
  7594.  * handle a #else directive.  Do this by just continuing processing
  7595.  * without changing  if_stack ;  this is so that the error message
  7596.  * for missing #endif's etc. will point to the original #if.  It
  7597.  * is possible that something different would be better.
  7598.  */
  7599.  
  7600. static int
  7601. do_else (buf, limit, op, keyword)
  7602.      U_CHAR *buf, *limit;
  7603.      FILE_BUF *op;
  7604.      struct directive *keyword;
  7605. {
  7606.   FILE_BUF *ip = &instack[indepth];
  7607.  
  7608.   if (pedantic) {
  7609.     SKIP_WHITE_SPACE (buf);
  7610.     if (buf != limit)
  7611.       pedwarn ("text following `#else' violates ANSI standard");
  7612.   }
  7613.  
  7614.   if (if_stack == instack[indepth].if_stack) {
  7615.     error ("`#else' not within a conditional");
  7616.     return 0;
  7617.   } else {
  7618.     /* #ifndef can't have its special treatment for containing the whole file
  7619.        if it has a #else clause.  */
  7620.     if_stack->control_macro = 0;
  7621.  
  7622.     if (if_stack->type != T_IF && if_stack->type != T_ELIF) {
  7623.       error ("`#else' after `#else'");
  7624.       fprintf (stderr, " (matches line %d", if_stack->lineno);
  7625.       if (strcmp (if_stack->fname, ip->nominal_fname) != 0)
  7626.     fprintf (stderr, ", file %s", if_stack->fname);
  7627.       fprintf (stderr, ")\n");
  7628.     }
  7629.     if_stack->type = T_ELSE;
  7630.   }
  7631.  
  7632.   if (if_stack->if_succeeded)
  7633.     skip_if_group (ip, 0, op);
  7634.   else {
  7635.     ++if_stack->if_succeeded;    /* continue processing input */
  7636.     output_line_directive (ip, op, 1, same_file);
  7637.   }
  7638.   return 0;
  7639. }
  7640.  
  7641. /*
  7642.  * unstack after #endif directive
  7643.  */
  7644.  
  7645. static int
  7646. do_endif (buf, limit, op, keyword)
  7647.      U_CHAR *buf, *limit;
  7648.      FILE_BUF *op;
  7649.      struct directive *keyword;
  7650. {
  7651.   if (pedantic) {
  7652.     SKIP_WHITE_SPACE (buf);
  7653.     if (buf != limit)
  7654.       pedwarn ("text following `#endif' violates ANSI standard");
  7655.   }
  7656.  
  7657.   if (if_stack == instack[indepth].if_stack)
  7658.     error ("unbalanced `#endif'");
  7659.   else {
  7660.     IF_STACK_FRAME *temp = if_stack;
  7661.     if_stack = if_stack->next;
  7662.     if (temp->control_macro != 0) {
  7663.       /* This #endif matched a #ifndef at the start of the file.
  7664.      See if it is at the end of the file.  */
  7665.       FILE_BUF *ip = &instack[indepth];
  7666.       U_CHAR *p = ip->bufp;
  7667.       U_CHAR *ep = ip->buf + ip->length;
  7668.  
  7669.       while (p != ep) {
  7670.     U_CHAR c = *p++;
  7671.     if (!is_space[c]) {
  7672.       if (c == '/'
  7673.           && (*p == '*' || (cplusplus_comments && *p == '/'))) {
  7674.         /* Skip this comment.  */
  7675.         int junk = 0;
  7676.         U_CHAR *save_bufp = ip->bufp;
  7677.         ip->bufp = p + 1;
  7678.         p = skip_to_end_of_comment (ip, &junk, 1);
  7679.         ip->bufp = save_bufp;
  7680.       } else
  7681.         goto fail;
  7682.     }
  7683.       }
  7684.       /* If we get here, this #endif ends a #ifndef
  7685.      that contains all of the file (aside from whitespace).
  7686.      Arrange not to include the file again
  7687.      if the macro that was tested is defined.
  7688.  
  7689.      Do not do this for the top-level file in a -include or any
  7690.      file in a -imacros.  */
  7691.       if (indepth != 0
  7692.       && ! (indepth == 1 && no_record_file)
  7693.       && ! (no_record_file && no_output))
  7694.     record_control_macro (ip->fname, temp->control_macro);
  7695.     fail: ;
  7696.     }
  7697.     free (temp);
  7698.     output_line_directive (&instack[indepth], op, 1, same_file);
  7699.   }
  7700.   return 0;
  7701. }
  7702.  
  7703. /* When an #else or #endif is found while skipping failed conditional,
  7704.    if -pedantic was specified, this is called to warn about text after
  7705.    the directive name.  P points to the first char after the directive name.  */
  7706.  
  7707. static void
  7708. validate_else (p)
  7709.      register U_CHAR *p;
  7710. {
  7711.   /* Advance P over whitespace and comments.  */
  7712.   while (1) {
  7713.     if (*p == '\\' && p[1] == '\n')
  7714.       p += 2;
  7715.     if (is_hor_space[*p])
  7716.       p++;
  7717.     else if (*p == '/') {
  7718.       if (p[1] == '\\' && p[2] == '\n')
  7719.     newline_fix (p + 1);
  7720.       if (p[1] == '*') {
  7721.     p += 2;
  7722.     /* Don't bother warning about unterminated comments
  7723.        since that will happen later.  Just be sure to exit.  */
  7724.     while (*p) {
  7725.       if (p[1] == '\\' && p[2] == '\n')
  7726.         newline_fix (p + 1);
  7727.       if (*p == '*' && p[1] == '/') {
  7728.         p += 2;
  7729.         break;
  7730.       }
  7731.       p++;
  7732.     }
  7733.       }
  7734.       else if (cplusplus_comments && p[1] == '/') {
  7735.     p += 2;
  7736.     while (*p && (*p != '\n' || p[-1] == '\\'))
  7737.       p++;
  7738.       }
  7739.     } else break;
  7740.   }
  7741.   if (*p && *p != '\n')
  7742.     pedwarn ("text following `#else' or `#endif' violates ANSI standard");
  7743. }
  7744.  
  7745. /* Skip a comment, assuming the input ptr immediately follows the
  7746.    initial slash-star.  Bump *LINE_COUNTER for each newline.
  7747.    (The canonical line counter is &ip->lineno.)
  7748.    Don't use this routine (or the next one) if bumping the line
  7749.    counter is not sufficient to deal with newlines in the string.
  7750.  
  7751.    If NOWARN is nonzero, don't warn about slash-star inside a comment.
  7752.    This feature is useful when processing a comment that is going to be
  7753.    processed or was processed at another point in the preprocessor,
  7754.    to avoid a duplicate warning.  Likewise for unterminated comment errors.  */
  7755.  
  7756. static U_CHAR *
  7757. skip_to_end_of_comment (ip, line_counter, nowarn)
  7758.      register FILE_BUF *ip;
  7759.      int *line_counter;        /* place to remember newlines, or NULL */
  7760.      int nowarn;
  7761. {
  7762.   register U_CHAR *limit = ip->buf + ip->length;
  7763.   register U_CHAR *bp = ip->bufp;
  7764.   FILE_BUF *op = &outbuf;    /* JF */
  7765.   int output = put_out_comments && !line_counter;
  7766.   int start_line = line_counter ? *line_counter : 0;
  7767.  
  7768.     /* JF this line_counter stuff is a crock to make sure the
  7769.        comment is only put out once, no matter how many times
  7770.        the comment is skipped.  It almost works */
  7771.   if (output) {
  7772.     *op->bufp++ = '/';
  7773.     *op->bufp++ = '*';
  7774.   }
  7775.   if (cplusplus_comments && bp[-1] == '/') {
  7776.     if (output) {
  7777.       while (bp < limit) {
  7778.     *op->bufp++ = *bp;
  7779.     if (*bp == '\n' && bp[-1] != '\\')
  7780.       break;
  7781.     if (*bp == '\n') {
  7782.       ++*line_counter;
  7783.       ++op->lineno;
  7784.     }
  7785.     bp++;
  7786.       }
  7787.       op->bufp[-1] = '*';
  7788.       *op->bufp++ = '/';
  7789.       *op->bufp++ = '\n';
  7790.     } else {
  7791.       while (bp < limit) {
  7792.     if (bp[-1] != '\\' && *bp == '\n') {
  7793.       break;
  7794.     } else {
  7795.       if (*bp == '\n' && line_counter)
  7796.         ++*line_counter;
  7797.       bp++;
  7798.     }
  7799.       }
  7800.     }
  7801.     ip->bufp = bp;
  7802.     return bp;
  7803.   }
  7804.   while (bp < limit) {
  7805.     if (output)
  7806.       *op->bufp++ = *bp;
  7807.     switch (*bp++) {
  7808.     case '/':
  7809.       if (warn_comments && !nowarn && bp < limit && *bp == '*')
  7810.     warning ("`/*' within comment");
  7811.       break;
  7812.     case '\n':
  7813.       /* If this is the end of the file, we have an unterminated comment.
  7814.      Don't swallow the newline.  We are guaranteed that there will be a
  7815.      trailing newline and various pieces assume it's there.  */
  7816.       if (bp == limit)
  7817.     {
  7818.       --bp;
  7819.       --limit;
  7820.       break;
  7821.     }
  7822.       if (line_counter != NULL)
  7823.     ++*line_counter;
  7824.       if (output)
  7825.     ++op->lineno;
  7826.       break;
  7827.     case '*':
  7828.       if (*bp == '\\' && bp[1] == '\n')
  7829.     newline_fix (bp);
  7830.       if (*bp == '/') {
  7831.         if (output)
  7832.       *op->bufp++ = '/';
  7833.     ip->bufp = ++bp;
  7834.     return bp;
  7835.       }
  7836.       break;
  7837.     }
  7838.   }
  7839.  
  7840.   if (!nowarn)
  7841.     error_with_line (line_for_error (start_line), "unterminated comment");
  7842.   ip->bufp = bp;
  7843.   return bp;
  7844. }
  7845.  
  7846. /*
  7847.  * Skip over a quoted string.  BP points to the opening quote.
  7848.  * Returns a pointer after the closing quote.  Don't go past LIMIT.
  7849.  * START_LINE is the line number of the starting point (but it need
  7850.  * not be valid if the starting point is inside a macro expansion).
  7851.  *
  7852.  * The input stack state is not changed.
  7853.  *
  7854.  * If COUNT_NEWLINES is nonzero, it points to an int to increment
  7855.  * for each newline passed.
  7856.  *
  7857.  * If BACKSLASH_NEWLINES_P is nonzero, store 1 thru it
  7858.  * if we pass a backslash-newline.
  7859.  *
  7860.  * If EOFP is nonzero, set *EOFP to 1 if the string is unterminated.
  7861.  */
  7862. static U_CHAR *
  7863. skip_quoted_string (bp, limit, start_line, count_newlines, backslash_newlines_p, eofp)
  7864.      register U_CHAR *bp;
  7865.      register U_CHAR *limit;
  7866.      int start_line;
  7867.      int *count_newlines;
  7868.      int *backslash_newlines_p;
  7869.      int *eofp;
  7870. {
  7871.   register U_CHAR c, match;
  7872.  
  7873.   match = *bp++;
  7874.   while (1) {
  7875.     if (bp >= limit) {
  7876.       error_with_line (line_for_error (start_line),
  7877.                "unterminated string or character constant");
  7878.       error_with_line (multiline_string_line,
  7879.                "possible real start of unterminated constant");
  7880.       multiline_string_line = 0;
  7881.       if (eofp)
  7882.     *eofp = 1;
  7883.       break;
  7884.     }
  7885.     c = *bp++;
  7886.     if (c == '\\') {
  7887.       while (*bp == '\\' && bp[1] == '\n') {
  7888.     if (backslash_newlines_p)
  7889.       *backslash_newlines_p = 1;
  7890.     if (count_newlines)
  7891.       ++*count_newlines;
  7892.     bp += 2;
  7893.       }
  7894.       if (*bp == '\n' && count_newlines) {
  7895.     if (backslash_newlines_p)
  7896.       *backslash_newlines_p = 1;
  7897.     ++*count_newlines;
  7898.       }
  7899.       bp++;
  7900.     } else if (c == '\n') {
  7901.       if (traditional) {
  7902.      /* Unterminated strings and character constants are 'valid'.  */
  7903.      bp--;    /* Don't consume the newline. */
  7904.      if (eofp)
  7905.        *eofp = 1;
  7906.      break;
  7907.       }
  7908.       if (pedantic || match == '\'') {
  7909.     error_with_line (line_for_error (start_line),
  7910.              "unterminated string or character constant");
  7911.     bp--;
  7912.     if (eofp)
  7913.       *eofp = 1;
  7914.     break;
  7915.       }
  7916.       /* If not traditional, then allow newlines inside strings.  */
  7917.       if (count_newlines)
  7918.     ++*count_newlines;
  7919.       if (multiline_string_line == 0)
  7920.     multiline_string_line = start_line;
  7921.     } else if (c == match)
  7922.       break;
  7923.   }
  7924.   return bp;
  7925. }
  7926.  
  7927. /* Place into DST a quoted string representing the string SRC.
  7928.    Return the address of DST's terminating null.  */
  7929. static char *
  7930. quote_string (dst, src)
  7931.      char *dst, *src;
  7932. {
  7933.   U_CHAR c;
  7934.  
  7935.   *dst++ = '\"';
  7936.   for (;;)
  7937.     switch ((c = *src++))
  7938.       {
  7939.       default:
  7940.         if (isprint (c))
  7941.       *dst++ = c;
  7942.     else
  7943.       {
  7944.         sprintf (dst, "\\%03o", c);
  7945.         dst += 4;
  7946.       }
  7947.     break;
  7948.  
  7949.       case '\"':
  7950.       case '\\':
  7951.     *dst++ = '\\';
  7952.     *dst++ = c;
  7953.     break;
  7954.       
  7955.       case '\0':
  7956.     *dst++ = '\"';
  7957.     *dst = '\0';
  7958.     return dst;
  7959.       }
  7960. }
  7961.  
  7962. /* Skip across a group of balanced parens, starting from IP->bufp.
  7963.    IP->bufp is updated.  Use this with IP->bufp pointing at an open-paren.
  7964.  
  7965.    This does not handle newlines, because it's used for the arg of #if,
  7966.    where there aren't any newlines.  Also, backslash-newline can't appear.  */
  7967.  
  7968. static U_CHAR *
  7969. skip_paren_group (ip)
  7970.      register FILE_BUF *ip;
  7971. {
  7972.   U_CHAR *limit = ip->buf + ip->length;
  7973.   U_CHAR *p = ip->bufp;
  7974.   int depth = 0;
  7975.   int lines_dummy = 0;
  7976.  
  7977.   while (p != limit) {
  7978.     int c = *p++;
  7979.     switch (c) {
  7980.     case '(':
  7981.       depth++;
  7982.       break;
  7983.  
  7984.     case ')':
  7985.       depth--;
  7986.       if (depth == 0)
  7987.     return ip->bufp = p;
  7988.       break;
  7989.  
  7990.     case '/':
  7991.       if (*p == '*') {
  7992.     ip->bufp = p;
  7993.     p = skip_to_end_of_comment (ip, &lines_dummy, 0);
  7994.     p = ip->bufp;
  7995.       }
  7996.  
  7997.     case '"':
  7998.     case '\'':
  7999.       {
  8000.     int eofp = 0;
  8001.     p = skip_quoted_string (p - 1, limit, 0, NULL_PTR, NULL_PTR, &eofp);
  8002.     if (eofp)
  8003.       return ip->bufp = p;
  8004.       }
  8005.       break;
  8006.     }
  8007.   }
  8008.  
  8009.   ip->bufp = p;
  8010.   return p;
  8011. }
  8012.  
  8013. /*
  8014.  * write out a #line directive, for instance, after an #include file.
  8015.  * If CONDITIONAL is nonzero, we can omit the #line if it would
  8016.  * appear to be a no-op, and we can output a few newlines instead
  8017.  * if we want to increase the line number by a small amount.
  8018.  * FILE_CHANGE says whether we are entering a file, leaving, or neither.
  8019.  */
  8020.  
  8021. static void
  8022. output_line_directive (ip, op, conditional, file_change)
  8023.      FILE_BUF *ip, *op;
  8024.      int conditional;
  8025.      enum file_change_code file_change;
  8026. {
  8027.   int len;
  8028.   char *line_directive_buf, *line_end;
  8029.  
  8030.   if (no_line_directives
  8031.       || ip->fname == NULL
  8032.       || no_output) {
  8033.     op->lineno = ip->lineno;
  8034.     return;
  8035.   }
  8036.  
  8037.   if (conditional) {
  8038.     if (ip->lineno == op->lineno)
  8039.       return;
  8040.  
  8041.     /* If the inherited line number is a little too small,
  8042.        output some newlines instead of a #line directive.  */
  8043.     if (ip->lineno > op->lineno && ip->lineno < op->lineno + 8) {
  8044.       check_expand (op, 10);
  8045.       while (ip->lineno > op->lineno) {
  8046.     *op->bufp++ = '\n';
  8047.     op->lineno++;
  8048.       }
  8049.       return;
  8050.     }
  8051.   }
  8052.  
  8053.   /* Don't output a line number of 0 if we can help it.  */
  8054.   if (ip->lineno == 0 && ip->bufp - ip->buf < ip->length
  8055.       && *ip->bufp == '\n') {
  8056.     ip->lineno++;
  8057.     ip->bufp++;
  8058.   }
  8059.  
  8060.   line_directive_buf = (char *) alloca (4 * strlen (ip->nominal_fname) + 100);
  8061.   sprintf (line_directive_buf, "# %d ", ip->lineno);
  8062.   line_end = quote_string (line_directive_buf + strlen (line_directive_buf),
  8063.                ip->nominal_fname);
  8064.   if (file_change != same_file) {
  8065.     *line_end++ = ' ';
  8066.     *line_end++ = file_change == enter_file ? '1' : '2';
  8067.   }
  8068.   /* Tell cc1 if following text comes from a system header file.  */
  8069.   if (ip->system_header_p) {
  8070.     *line_end++ = ' ';
  8071.     *line_end++ = '3';
  8072.   }
  8073. #ifndef NO_IMPLICIT_EXTERN_C
  8074.   /* Tell cc1plus if following text should be treated as C.  */
  8075.   if (ip->system_header_p == 2 && cplusplus) {
  8076.     *line_end++ = ' ';
  8077.     *line_end++ = '4';
  8078.   }
  8079. #endif
  8080.   *line_end++ = '\n';
  8081.   len = line_end - line_directive_buf;
  8082.   check_expand (op, len + 1);
  8083.   if (op->bufp > op->buf && op->bufp[-1] != '\n')
  8084.     *op->bufp++ = '\n';
  8085.   bcopy ((char *) line_directive_buf, (char *) op->bufp, len);
  8086.   op->bufp += len;
  8087.   op->lineno = ip->lineno;
  8088. }
  8089.  
  8090. /* This structure represents one parsed argument in a macro call.
  8091.    `raw' points to the argument text as written (`raw_length' is its length).
  8092.    `expanded' points to the argument's macro-expansion
  8093.    (its length is `expand_length').
  8094.    `stringified_length' is the length the argument would have
  8095.    if stringified.
  8096.    `use_count' is the number of times this macro arg is substituted
  8097.    into the macro.  If the actual use count exceeds 10, 
  8098.    the value stored is 10.
  8099.    `free1' and `free2', if nonzero, point to blocks to be freed
  8100.    when the macro argument data is no longer needed.  */
  8101.  
  8102. struct argdata {
  8103.   U_CHAR *raw, *expanded;
  8104.   int raw_length, expand_length;
  8105.   int stringified_length;
  8106.   U_CHAR *free1, *free2;
  8107.   char newlines;
  8108.   char use_count;
  8109. };
  8110.  
  8111. /* Expand a macro call.
  8112.    HP points to the symbol that is the macro being called.
  8113.    Put the result of expansion onto the input stack
  8114.    so that subsequent input by our caller will use it.
  8115.  
  8116.    If macro wants arguments, caller has already verified that
  8117.    an argument list follows; arguments come from the input stack.  */
  8118.  
  8119. static void
  8120. macroexpand (hp, op)
  8121.      HASHNODE *hp;
  8122.      FILE_BUF *op;
  8123. {
  8124.   int nargs;
  8125.   DEFINITION *defn = hp->value.defn;
  8126.   register U_CHAR *xbuf;
  8127.   int xbuf_len;
  8128.   int start_line = instack[indepth].lineno;
  8129.   int rest_args, rest_zero;
  8130.  
  8131.   CHECK_DEPTH (return;);
  8132.  
  8133.   /* it might not actually be a macro.  */
  8134.   if (hp->type != T_MACRO) {
  8135.     special_symbol (hp, op);
  8136.     return;
  8137.   }
  8138.  
  8139.   /* This macro is being used inside a #if, which means it must be */
  8140.   /* recorded as a precondition.  */
  8141.   if (pcp_inside_if && pcp_outfile && defn->predefined)
  8142.     dump_single_macro (hp, pcp_outfile);
  8143.   
  8144.   nargs = defn->nargs;
  8145.  
  8146.   if (nargs >= 0) {
  8147.     register int i;
  8148.     struct argdata *args;
  8149.     char *parse_error = 0;
  8150.  
  8151.     args = (struct argdata *) alloca ((nargs + 1) * sizeof (struct argdata));
  8152.  
  8153.     for (i = 0; i < nargs; i++) {
  8154.       args[i].raw = (U_CHAR *) "";
  8155.       args[i].expanded = 0;
  8156.       args[i].raw_length = args[i].expand_length
  8157.     = args[i].stringified_length = 0;
  8158.       args[i].free1 = args[i].free2 = 0;
  8159.       args[i].use_count = 0;
  8160.     }
  8161.  
  8162.     /* Parse all the macro args that are supplied.  I counts them.
  8163.        The first NARGS args are stored in ARGS.
  8164.        The rest are discarded.
  8165.        If rest_args is set then we assume macarg absorbed the rest of the args.
  8166.        */
  8167.     i = 0;
  8168.     rest_args = 0;
  8169.     do {
  8170.       /* Discard the open-parenthesis or comma before the next arg.  */
  8171.       ++instack[indepth].bufp;
  8172.       if (rest_args)
  8173.     continue;
  8174.       if (i < nargs || (nargs == 0 && i == 0)) {
  8175.     /* if we are working on last arg which absorbs rest of args... */
  8176.     if (i == nargs - 1 && defn->rest_args)
  8177.       rest_args = 1;
  8178.     parse_error = macarg (&args[i], rest_args);
  8179.       }
  8180.       else
  8181.     parse_error = macarg (NULL_PTR, 0);
  8182.       if (parse_error) {
  8183.     error_with_line (line_for_error (start_line), parse_error);
  8184.     break;
  8185.       }
  8186.       i++;
  8187.     } while (*instack[indepth].bufp != ')');
  8188.  
  8189.     /* If we got one arg but it was just whitespace, call that 0 args.  */
  8190.     if (i == 1) {
  8191.       register U_CHAR *bp = args[0].raw;
  8192.       register U_CHAR *lim = bp + args[0].raw_length;
  8193.       /* cpp.texi says for foo ( ) we provide one argument.
  8194.      However, if foo wants just 0 arguments, treat this as 0.  */
  8195.       if (nargs == 0)
  8196.     while (bp != lim && is_space[*bp]) bp++;
  8197.       if (bp == lim)
  8198.     i = 0;
  8199.     }
  8200.  
  8201.     /* Don't output an error message if we have already output one for
  8202.        a parse error above.  */
  8203.     rest_zero = 0;
  8204.     if (nargs == 0 && i > 0) {
  8205.       if (! parse_error)
  8206.     error ("arguments given to macro `%s'", hp->name);
  8207.     } else if (i < nargs) {
  8208.       /* traditional C allows foo() if foo wants one argument.  */
  8209.       if (nargs == 1 && i == 0 && traditional)
  8210.     ;
  8211.       /* the rest args token is allowed to absorb 0 tokens */
  8212.       else if (i == nargs - 1 && defn->rest_args)
  8213.     rest_zero = 1;
  8214.       else if (parse_error)
  8215.     ;
  8216.       else if (i == 0)
  8217.     error ("macro `%s' used without args", hp->name);
  8218.       else if (i == 1)
  8219.     error ("macro `%s' used with just one arg", hp->name);
  8220.       else
  8221.     error ("macro `%s' used with only %d args", hp->name, i);
  8222.     } else if (i > nargs) {
  8223.       if (! parse_error)
  8224.     error ("macro `%s' used with too many (%d) args", hp->name, i);
  8225.     }
  8226.  
  8227.     /* Swallow the closeparen.  */
  8228.     ++instack[indepth].bufp;
  8229.  
  8230.     /* If macro wants zero args, we parsed the arglist for checking only.
  8231.        Read directly from the macro definition.  */
  8232.     if (nargs == 0) {
  8233.       xbuf = defn->expansion;
  8234.       xbuf_len = defn->length;
  8235.     } else {
  8236.       register U_CHAR *exp = defn->expansion;
  8237.       register int offset;    /* offset in expansion,
  8238.                    copied a piece at a time */
  8239.       register int totlen;    /* total amount of exp buffer filled so far */
  8240.  
  8241.       register struct reflist *ap, *last_ap;
  8242.  
  8243.       /* Macro really takes args.  Compute the expansion of this call.  */
  8244.  
  8245.       /* Compute length in characters of the macro's expansion.
  8246.      Also count number of times each arg is used.  */
  8247.       xbuf_len = defn->length;
  8248.       for (ap = defn->pattern; ap != NULL; ap = ap->next) {
  8249.     if (ap->stringify)
  8250.       xbuf_len += args[ap->argno].stringified_length;
  8251.     else if (ap->raw_before != 0 || ap->raw_after != 0 || traditional)
  8252.       /* Add 4 for two newline-space markers to prevent
  8253.          token concatenation.  */
  8254.       xbuf_len += args[ap->argno].raw_length + 4;
  8255.     else {
  8256.       /* We have an ordinary (expanded) occurrence of the arg.
  8257.          So compute its expansion, if we have not already.  */
  8258.       if (args[ap->argno].expanded == 0) {
  8259.         FILE_BUF obuf;
  8260.         obuf = expand_to_temp_buffer (args[ap->argno].raw,
  8261.                       args[ap->argno].raw + args[ap->argno].raw_length,
  8262.                       1, 0);
  8263.  
  8264.         args[ap->argno].expanded = obuf.buf;
  8265.         args[ap->argno].expand_length = obuf.length;
  8266.         args[ap->argno].free2 = obuf.buf;
  8267.       }
  8268.  
  8269.       /* Add 4 for two newline-space markers to prevent
  8270.          token concatenation.  */
  8271.       xbuf_len += args[ap->argno].expand_length + 4;
  8272.     }
  8273.     if (args[ap->argno].use_count < 10)
  8274.       args[ap->argno].use_count++;
  8275.       }
  8276.  
  8277.       xbuf = (U_CHAR *) xmalloc (xbuf_len + 1);
  8278.  
  8279.       /* Generate in XBUF the complete expansion
  8280.      with arguments substituted in.
  8281.      TOTLEN is the total size generated so far.
  8282.      OFFSET is the index in the definition
  8283.      of where we are copying from.  */
  8284.       offset = totlen = 0;
  8285.       for (last_ap = NULL, ap = defn->pattern; ap != NULL;
  8286.        last_ap = ap, ap = ap->next) {
  8287.     register struct argdata *arg = &args[ap->argno];
  8288.     int count_before = totlen;
  8289.  
  8290.     /* Add chars to XBUF.  */
  8291.     for (i = 0; i < ap->nchars; i++, offset++)
  8292.       xbuf[totlen++] = exp[offset];
  8293.  
  8294.     /* If followed by an empty rest arg with concatenation,
  8295.        delete the last run of nonwhite chars.  */
  8296.     if (rest_zero && totlen > count_before
  8297.         && ((ap->rest_args && ap->raw_before != 0)
  8298.         || (last_ap != NULL && last_ap->rest_args
  8299.             && last_ap->raw_after != 0))) {
  8300.       /* Delete final whitespace.  */
  8301.       while (totlen > count_before && is_space[xbuf[totlen - 1]]) {
  8302.         totlen--;
  8303.       }
  8304.  
  8305.       /* Delete the nonwhites before them.  */
  8306.       while (totlen > count_before && ! is_space[xbuf[totlen - 1]]) {
  8307.         totlen--;
  8308.       }
  8309.     }
  8310.  
  8311.     if (ap->stringify != 0) {
  8312.       int arglen = arg->raw_length;
  8313.       int escaped = 0;
  8314.       int in_string = 0;
  8315.       int c;
  8316.       i = 0;
  8317.       while (i < arglen
  8318.          && (c = arg->raw[i], is_space[c]))
  8319.         i++;
  8320.       while (i < arglen
  8321.          && (c = arg->raw[arglen - 1], is_space[c]))
  8322.         arglen--;
  8323.       if (!traditional)
  8324.         xbuf[totlen++] = '\"'; /* insert beginning quote */
  8325.       for (; i < arglen; i++) {
  8326.         c = arg->raw[i];
  8327.  
  8328.         /* Special markers Newline Space
  8329.            generate nothing for a stringified argument.  */
  8330.         if (c == '\n' && arg->raw[i+1] != '\n') {
  8331.           i++;
  8332.           continue;
  8333.         }
  8334.  
  8335.         /* Internal sequences of whitespace are replaced by one space
  8336.            except within an string or char token.  */
  8337.         if (! in_string
  8338.         && (c == '\n' ? arg->raw[i+1] == '\n' : is_space[c])) {
  8339.           while (1) {
  8340.         /* Note that Newline Space does occur within whitespace
  8341.            sequences; consider it part of the sequence.  */
  8342.         if (c == '\n' && is_space[arg->raw[i+1]])
  8343.           i += 2;
  8344.         else if (c != '\n' && is_space[c])
  8345.           i++;
  8346.         else break;
  8347.         c = arg->raw[i];
  8348.           }
  8349.           i--;
  8350.           c = ' ';
  8351.         }
  8352.  
  8353.         if (escaped)
  8354.           escaped = 0;
  8355.         else {
  8356.           if (c == '\\')
  8357.         escaped = 1;
  8358.           if (in_string) {
  8359.         if (c == in_string)
  8360.           in_string = 0;
  8361.           } else if (c == '\"' || c == '\'')
  8362.         in_string = c;
  8363.         }
  8364.  
  8365.         /* Escape these chars */
  8366.         if (c == '\"' || (in_string && c == '\\'))
  8367.           xbuf[totlen++] = '\\';
  8368.         if (isprint (c))
  8369.           xbuf[totlen++] = c;
  8370.         else {
  8371.           sprintf ((char *) &xbuf[totlen], "\\%03o", (unsigned int) c);
  8372.           totlen += 4;
  8373.         }
  8374.       }
  8375.       if (!traditional)
  8376.         xbuf[totlen++] = '\"'; /* insert ending quote */
  8377.     } else if (ap->raw_before != 0 || ap->raw_after != 0 || traditional) {
  8378.       U_CHAR *p1 = arg->raw;
  8379.       U_CHAR *l1 = p1 + arg->raw_length;
  8380.       if (ap->raw_before != 0) {
  8381.         while (p1 != l1 && is_space[*p1]) p1++;
  8382.         while (p1 != l1 && is_idchar[*p1])
  8383.           xbuf[totlen++] = *p1++;
  8384.         /* Delete any no-reexpansion marker that follows
  8385.            an identifier at the beginning of the argument
  8386.            if the argument is concatenated with what precedes it.  */
  8387.         if (p1[0] == '\n' && p1[1] == '-')
  8388.           p1 += 2;
  8389.       } else if (!traditional) {
  8390.       /* Ordinary expanded use of the argument.
  8391.          Put in newline-space markers to prevent token pasting.  */
  8392.         xbuf[totlen++] = '\n';
  8393.         xbuf[totlen++] = ' ';
  8394.       }
  8395.       if (ap->raw_after != 0) {
  8396.         /* Arg is concatenated after: delete trailing whitespace,
  8397.            whitespace markers, and no-reexpansion markers.  */
  8398.         while (p1 != l1) {
  8399.           if (is_space[l1[-1]]) l1--;
  8400.           else if (l1[-1] == '-') {
  8401.         U_CHAR *p2 = l1 - 1;
  8402.         /* If a `-' is preceded by an odd number of newlines then it
  8403.            and the last newline are a no-reexpansion marker.  */
  8404.         while (p2 != p1 && p2[-1] == '\n') p2--;
  8405.         if ((l1 - 1 - p2) & 1) {
  8406.           l1 -= 2;
  8407.         }
  8408.         else break;
  8409.           }
  8410.           else break;
  8411.         }
  8412.       }
  8413.  
  8414.       bcopy ((char *) p1, (char *) (xbuf + totlen), l1 - p1);
  8415.       totlen += l1 - p1;
  8416.       if (!traditional && ap->raw_after == 0) {
  8417.         /* Ordinary expanded use of the argument.
  8418.            Put in newline-space markers to prevent token pasting.  */
  8419.         xbuf[totlen++] = '\n';
  8420.         xbuf[totlen++] = ' ';
  8421.       }
  8422.     } else {
  8423.       /* Ordinary expanded use of the argument.
  8424.          Put in newline-space markers to prevent token pasting.  */
  8425.       if (!traditional) {
  8426.         xbuf[totlen++] = '\n';
  8427.         xbuf[totlen++] = ' ';
  8428.       }
  8429.       bcopy ((char *) arg->expanded, (char *) (xbuf + totlen),
  8430.          arg->expand_length);
  8431.       totlen += arg->expand_length;
  8432.       if (!traditional) {
  8433.         xbuf[totlen++] = '\n';
  8434.         xbuf[totlen++] = ' ';
  8435.       }
  8436.       /* If a macro argument with newlines is used multiple times,
  8437.          then only expand the newlines once.  This avoids creating output
  8438.          lines which don't correspond to any input line, which confuses
  8439.          gdb and gcov.  */
  8440.       if (arg->use_count > 1 && arg->newlines > 0) {
  8441.         /* Don't bother doing change_newlines for subsequent
  8442.            uses of arg.  */
  8443.         arg->use_count = 1;
  8444.         arg->expand_length
  8445.           = change_newlines (arg->expanded, arg->expand_length);
  8446.       }
  8447.     }
  8448.  
  8449.     if (totlen > xbuf_len)
  8450.       abort ();
  8451.       }
  8452.  
  8453.       /* if there is anything left of the definition
  8454.      after handling the arg list, copy that in too. */
  8455.  
  8456.       for (i = offset; i < defn->length; i++) {
  8457.     /* if we've reached the end of the macro */
  8458.     if (exp[i] == ')')
  8459.       rest_zero = 0;
  8460.     if (! (rest_zero && last_ap != NULL && last_ap->rest_args
  8461.            && last_ap->raw_after != 0))
  8462.       xbuf[totlen++] = exp[i];
  8463.       }
  8464.  
  8465.       xbuf[totlen] = 0;
  8466.       xbuf_len = totlen;
  8467.  
  8468.       for (i = 0; i < nargs; i++) {
  8469.     if (args[i].free1 != 0)
  8470.       free (args[i].free1);
  8471.     if (args[i].free2 != 0)
  8472.       free (args[i].free2);
  8473.       }
  8474.     }
  8475.   } else {
  8476.     xbuf = defn->expansion;
  8477.     xbuf_len = defn->length;
  8478.   }
  8479.  
  8480.   /* Now put the expansion on the input stack
  8481.      so our caller will commence reading from it.  */
  8482.   {
  8483.     register FILE_BUF *ip2;
  8484.  
  8485.     ip2 = &instack[++indepth];
  8486.  
  8487.     ip2->fname = 0;
  8488.     ip2->nominal_fname = 0;
  8489.     /* This may not be exactly correct, but will give much better error
  8490.        messages for nested macro calls than using a line number of zero.  */
  8491.     ip2->lineno = start_line;
  8492.     ip2->buf = xbuf;
  8493.     ip2->length = xbuf_len;
  8494.     ip2->bufp = xbuf;
  8495.     ip2->free_ptr = (nargs > 0) ? xbuf : 0;
  8496.     ip2->macro = hp;
  8497.     ip2->if_stack = if_stack;
  8498.     ip2->system_header_p = 0;
  8499.  
  8500.     /* Recursive macro use sometimes works traditionally.
  8501.        #define foo(x,y) bar (x (y,0), y)
  8502.        foo (foo, baz)  */
  8503.  
  8504.     if (!traditional)
  8505.       hp->type = T_DISABLED;
  8506.   }
  8507. }
  8508.  
  8509. /*
  8510.  * Parse a macro argument and store the info on it into *ARGPTR.
  8511.  * REST_ARGS is passed to macarg1 to make it absorb the rest of the args.
  8512.  * Return nonzero to indicate a syntax error.
  8513.  */
  8514.  
  8515. static char *
  8516. macarg (argptr, rest_args)
  8517.      register struct argdata *argptr;
  8518.      int rest_args;
  8519. {
  8520.   FILE_BUF *ip = &instack[indepth];
  8521.   int paren = 0;
  8522.   int newlines = 0;
  8523.   int comments = 0;
  8524.   char *result = 0;
  8525.  
  8526.   /* Try to parse as much of the argument as exists at this
  8527.      input stack level.  */
  8528.   U_CHAR *bp = macarg1 (ip->bufp, ip->buf + ip->length,
  8529.             &paren, &newlines, &comments, rest_args);
  8530.  
  8531.   /* If we find the end of the argument at this level,
  8532.      set up *ARGPTR to point at it in the input stack.  */
  8533.   if (!(ip->fname != 0 && (newlines != 0 || comments != 0))
  8534.       && bp != ip->buf + ip->length) {
  8535.     if (argptr != 0) {
  8536.       argptr->raw = ip->bufp;
  8537.       argptr->raw_length = bp - ip->bufp;
  8538.       argptr->newlines = newlines;
  8539.     }
  8540.     ip->bufp = bp;
  8541.   } else {
  8542.     /* This input stack level ends before the macro argument does.
  8543.        We must pop levels and keep parsing.
  8544.        Therefore, we must allocate a temporary buffer and copy
  8545.        the macro argument into it.  */
  8546.     int bufsize = bp - ip->bufp;
  8547.     int extra = newlines;
  8548.     U_CHAR *buffer = (U_CHAR *) xmalloc (bufsize + extra + 1);
  8549.     int final_start = 0;
  8550.  
  8551.     bcopy ((char *) ip->bufp, (char *) buffer, bufsize);
  8552.     ip->bufp = bp;
  8553.     ip->lineno += newlines;
  8554.  
  8555.     while (bp == ip->buf + ip->length) {
  8556.       if (instack[indepth].macro == 0) {
  8557.     result = "unterminated macro call";
  8558.     break;
  8559.       }
  8560.       ip->macro->type = T_MACRO;
  8561.       if (ip->free_ptr)
  8562.     free (ip->free_ptr);
  8563.       ip = &instack[--indepth];
  8564.       newlines = 0;
  8565.       comments = 0;
  8566.       bp = macarg1 (ip->bufp, ip->buf + ip->length, &paren,
  8567.             &newlines, &comments, rest_args);
  8568.       final_start = bufsize;
  8569.       bufsize += bp - ip->bufp;
  8570.       extra += newlines;
  8571.       buffer = (U_CHAR *) xrealloc (buffer, bufsize + extra + 1);
  8572.       bcopy ((char *) ip->bufp, (char *) (buffer + bufsize - (bp - ip->bufp)),
  8573.          bp - ip->bufp);
  8574.       ip->bufp = bp;
  8575.       ip->lineno += newlines;
  8576.     }
  8577.  
  8578.     /* Now, if arg is actually wanted, record its raw form,
  8579.        discarding comments and duplicating newlines in whatever
  8580.        part of it did not come from a macro expansion.
  8581.        EXTRA space has been preallocated for duplicating the newlines.
  8582.        FINAL_START is the index of the start of that part.  */
  8583.     if (argptr != 0) {
  8584.       argptr->raw = buffer;
  8585.       argptr->raw_length = bufsize;
  8586.       argptr->free1 = buffer;
  8587.       argptr->newlines = newlines;
  8588.       if ((newlines || comments) && ip->fname != 0)
  8589.     argptr->raw_length
  8590.       = final_start +
  8591.         discard_comments (argptr->raw + final_start,
  8592.                   argptr->raw_length - final_start,
  8593.                   newlines);
  8594.       argptr->raw[argptr->raw_length] = 0;
  8595.       if (argptr->raw_length > bufsize + extra)
  8596.     abort ();
  8597.     }
  8598.   }
  8599.  
  8600.   /* If we are not discarding this argument,
  8601.      macroexpand it and compute its length as stringified.
  8602.      All this info goes into *ARGPTR.  */
  8603.  
  8604.   if (argptr != 0) {
  8605.     register U_CHAR *buf, *lim;
  8606.     register int totlen;
  8607.  
  8608.     buf = argptr->raw;
  8609.     lim = buf + argptr->raw_length;
  8610.  
  8611.     while (buf != lim && is_space[*buf])
  8612.       buf++;
  8613.     while (buf != lim && is_space[lim[-1]])
  8614.       lim--;
  8615.     totlen = traditional ? 0 : 2;    /* Count opening and closing quote.  */
  8616.     while (buf != lim) {
  8617.       register U_CHAR c = *buf++;
  8618.       totlen++;
  8619.       /* Internal sequences of whitespace are replaced by one space
  8620.      in most cases, but not always.  So count all the whitespace
  8621.      in case we need to keep it all.  */
  8622. #if 0
  8623.       if (is_space[c])
  8624.     SKIP_ALL_WHITE_SPACE (buf);
  8625.       else
  8626. #endif
  8627.       if (c == '\"' || c == '\\') /* escape these chars */
  8628.     totlen++;
  8629.       else if (!isprint (c))
  8630.     totlen += 3;
  8631.     }
  8632.     argptr->stringified_length = totlen;
  8633.   }
  8634.   return result;
  8635. }
  8636.  
  8637. /* Scan text from START (inclusive) up to LIMIT (exclusive),
  8638.    counting parens in *DEPTHPTR,
  8639.    and return if reach LIMIT
  8640.    or before a `)' that would make *DEPTHPTR negative
  8641.    or before a comma when *DEPTHPTR is zero.
  8642.    Single and double quotes are matched and termination
  8643.    is inhibited within them.  Comments also inhibit it.
  8644.    Value returned is pointer to stopping place.
  8645.  
  8646.    Increment *NEWLINES each time a newline is passed.
  8647.    REST_ARGS notifies macarg1 that it should absorb the rest of the args.
  8648.    Set *COMMENTS to 1 if a comment is seen.  */
  8649.  
  8650. static U_CHAR *
  8651. macarg1 (start, limit, depthptr, newlines, comments, rest_args)
  8652.      U_CHAR *start;
  8653.      register U_CHAR *limit;
  8654.      int *depthptr, *newlines, *comments;
  8655.      int rest_args;
  8656. {
  8657.   register U_CHAR *bp = start;
  8658.  
  8659.   while (bp < limit) {
  8660.     switch (*bp) {
  8661.     case '(':
  8662.       (*depthptr)++;
  8663.       break;
  8664.     case ')':
  8665.       if (--(*depthptr) < 0)
  8666.     return bp;
  8667.       break;
  8668.     case '\\':
  8669.       /* Traditionally, backslash makes following char not special.  */
  8670.       if (bp + 1 < limit && traditional)
  8671.     {
  8672.       bp++;
  8673.       /* But count source lines anyway.  */
  8674.       if (*bp == '\n')
  8675.         ++*newlines;
  8676.     }
  8677.       break;
  8678.     case '\n':
  8679.       ++*newlines;
  8680.       break;
  8681.     case '/':
  8682.       if (bp[1] == '\\' && bp[2] == '\n')
  8683.     newline_fix (bp + 1);
  8684.       if (cplusplus_comments && bp[1] == '/') {
  8685.     *comments = 1;
  8686.     bp += 2;
  8687.     while (bp < limit && (*bp != '\n' || bp[-1] == '\\')) {
  8688.       if (*bp == '\n') ++*newlines;
  8689.       bp++;
  8690.     }
  8691.     /* Now count the newline that we are about to skip.  */
  8692.     ++*newlines;
  8693.     break;
  8694.       }
  8695.       if (bp[1] != '*' || bp + 1 >= limit)
  8696.     break;
  8697.       *comments = 1;
  8698.       bp += 2;
  8699.       while (bp + 1 < limit) {
  8700.     if (bp[0] == '*'
  8701.         && bp[1] == '\\' && bp[2] == '\n')
  8702.       newline_fix (bp + 1);
  8703.     if (bp[0] == '*' && bp[1] == '/')
  8704.       break;
  8705.     if (*bp == '\n') ++*newlines;
  8706.     bp++;
  8707.       }
  8708.       break;
  8709.     case '\'':
  8710.     case '\"':
  8711.       {
  8712.     int quotec;
  8713.     for (quotec = *bp++; bp + 1 < limit && *bp != quotec; bp++) {
  8714.       if (*bp == '\\') {
  8715.         bp++;
  8716.         if (*bp == '\n')
  8717.           ++*newlines;
  8718.         while (*bp == '\\' && bp[1] == '\n') {
  8719.           bp += 2;
  8720.         }
  8721.       } else if (*bp == '\n') {
  8722.         ++*newlines;
  8723.         if (quotec == '\'')
  8724.           break;
  8725.       }
  8726.     }
  8727.       }
  8728.       break;
  8729.     case ',':
  8730.       /* if we've returned to lowest level and we aren't absorbing all args */
  8731.       if ((*depthptr) == 0 && rest_args == 0)
  8732.     return bp;
  8733.       break;
  8734.     }
  8735.     bp++;
  8736.   }
  8737.  
  8738.   return bp;
  8739. }
  8740.  
  8741. /* Discard comments and duplicate newlines
  8742.    in the string of length LENGTH at START,
  8743.    except inside of string constants.
  8744.    The string is copied into itself with its beginning staying fixed.  
  8745.  
  8746.    NEWLINES is the number of newlines that must be duplicated.
  8747.    We assume that that much extra space is available past the end
  8748.    of the string.  */
  8749.  
  8750. static int
  8751. discard_comments (start, length, newlines)
  8752.      U_CHAR *start;
  8753.      int length;
  8754.      int newlines;
  8755. {
  8756.   register U_CHAR *ibp;
  8757.   register U_CHAR *obp;
  8758.   register U_CHAR *limit;
  8759.   register int c;
  8760.  
  8761.   /* If we have newlines to duplicate, copy everything
  8762.      that many characters up.  Then, in the second part,
  8763.      we will have room to insert the newlines
  8764.      while copying down.
  8765.      NEWLINES may actually be too large, because it counts
  8766.      newlines in string constants, and we don't duplicate those.
  8767.      But that does no harm.  */
  8768.   if (newlines > 0) {
  8769.     ibp = start + length;
  8770.     obp = ibp + newlines;
  8771.     limit = start;
  8772.     while (limit != ibp)
  8773.       *--obp = *--ibp;
  8774.   }
  8775.  
  8776.   ibp = start + newlines;
  8777.   limit = start + length + newlines;
  8778.   obp = start;
  8779.  
  8780.   while (ibp < limit) {
  8781.     *obp++ = c = *ibp++;
  8782.     switch (c) {
  8783.     case '\n':
  8784.       /* Duplicate the newline.  */
  8785.       *obp++ = '\n';
  8786.       break;
  8787.  
  8788.     case '\\':
  8789.       if (*ibp == '\n') {
  8790.     obp--;
  8791.     ibp++;
  8792.       }
  8793.       break;
  8794.  
  8795.     case '/':
  8796.       if (*ibp == '\\' && ibp[1] == '\n')
  8797.     newline_fix (ibp);
  8798.       /* Delete any comment.  */
  8799.       if (cplusplus_comments && ibp[0] == '/') {
  8800.     /* Comments are equivalent to spaces.  */
  8801.     obp[-1] = ' ';
  8802.     ibp++;
  8803.     while (ibp < limit && (*ibp != '\n' || ibp[-1] == '\\'))
  8804.       ibp++;
  8805.     break;
  8806.       }
  8807.       if (ibp[0] != '*' || ibp + 1 >= limit)
  8808.     break;
  8809.       /* Comments are equivalent to spaces.
  8810.      For -traditional, a comment is equivalent to nothing.  */
  8811.       if (traditional)
  8812.     obp--;
  8813.       else
  8814.     obp[-1] = ' ';
  8815.       ibp++;
  8816.       while (ibp + 1 < limit) {
  8817.     if (ibp[0] == '*'
  8818.         && ibp[1] == '\\' && ibp[2] == '\n')
  8819.       newline_fix (ibp + 1);
  8820.     if (ibp[0] == '*' && ibp[1] == '/')
  8821.       break;
  8822.     ibp++;
  8823.       }
  8824.       ibp += 2;
  8825.       break;
  8826.  
  8827.     case '\'':
  8828.     case '\"':
  8829.       /* Notice and skip strings, so that we don't
  8830.      think that comments start inside them,
  8831.      and so we don't duplicate newlines in them.  */
  8832.       {
  8833.     int quotec = c;
  8834.     while (ibp < limit) {
  8835.       *obp++ = c = *ibp++;
  8836.       if (c == quotec)
  8837.         break;
  8838.       if (c == '\n' && quotec == '\'')
  8839.         break;
  8840.       if (c == '\\' && ibp < limit) {
  8841.         while (*ibp == '\\' && ibp[1] == '\n')
  8842.           ibp += 2;
  8843.         *obp++ = *ibp++;
  8844.       }
  8845.     }
  8846.       }
  8847.       break;
  8848.     }
  8849.   }
  8850.  
  8851.   return obp - start;
  8852. }
  8853.  
  8854. /* Turn newlines to spaces in the string of length LENGTH at START,
  8855.    except inside of string constants.
  8856.    The string is copied into itself with its beginning staying fixed.  */
  8857.  
  8858. static int
  8859. change_newlines (start, length)
  8860.      U_CHAR *start;
  8861.      int length;
  8862. {
  8863.   register U_CHAR *ibp;
  8864.   register U_CHAR *obp;
  8865.   register U_CHAR *limit;
  8866.   register int c;
  8867.  
  8868.   ibp = start;
  8869.   limit = start + length;
  8870.   obp = start;
  8871.  
  8872.   while (ibp < limit) {
  8873.     *obp++ = c = *ibp++;
  8874.     switch (c) {
  8875.     case '\n':
  8876.       /* If this is a NEWLINE NEWLINE, then this is a real newline in the
  8877.      string.  Skip past the newline and its duplicate.
  8878.      Put a space in the output.  */
  8879.       if (*ibp == '\n')
  8880.     {
  8881.       ibp++;
  8882.       obp--;
  8883.       *obp++ = ' ';
  8884.     }
  8885.       break;
  8886.  
  8887.     case '\'':
  8888.     case '\"':
  8889.       /* Notice and skip strings, so that we don't delete newlines in them.  */
  8890.       {
  8891.     int quotec = c;
  8892.     while (ibp < limit) {
  8893.       *obp++ = c = *ibp++;
  8894.       if (c == quotec)
  8895.         break;
  8896.       if (c == '\n' && quotec == '\'')
  8897.         break;
  8898.     }
  8899.       }
  8900.       break;
  8901.     }
  8902.   }
  8903.  
  8904.   return obp - start;
  8905. }
  8906.  
  8907. /*
  8908.  * my_strerror - return the descriptive text associated with an `errno' code.
  8909.  */
  8910.  
  8911. char *
  8912. my_strerror (errnum)
  8913.      int errnum;
  8914. {
  8915.   char *result;
  8916.  
  8917. #ifndef VMS
  8918. #ifndef HAVE_STRERROR
  8919.   result = (char *) ((errnum < sys_nerr) ? sys_errlist[errnum] : 0);
  8920. #else
  8921.   result = strerror (errnum);
  8922. #endif
  8923. #else    /* VMS */
  8924.   /* VAXCRTL's strerror() takes an optional second argument, which only
  8925.      matters when the first argument is EVMSERR.  However, it's simplest
  8926.      just to pass it unconditionally.  `vaxc$errno' is declared in
  8927.      <errno.h>, and maintained by the library in parallel with `errno'.
  8928.      We assume that caller's `errnum' either matches the last setting of
  8929.      `errno' by the library or else does not have the value `EVMSERR'.  */
  8930.  
  8931.   result = strerror (errnum, vaxc$errno);
  8932. #endif
  8933.  
  8934.   if (!result)
  8935.     result = "undocumented I/O error";
  8936.  
  8937.   return result;
  8938. }
  8939.  
  8940. /*
  8941.  * error - print error message and increment count of errors.
  8942.  */
  8943.  
  8944. void
  8945. error (PRINTF_ALIST (msg))
  8946.      PRINTF_DCL (msg)
  8947. {
  8948.   va_list args;
  8949.  
  8950.   VA_START (args, msg);
  8951.   verror (msg, args);
  8952.   va_end (args);
  8953. }
  8954.  
  8955. static void
  8956. verror (msg, args)
  8957.      char *msg;
  8958.      va_list args;
  8959. {
  8960.   int i;
  8961.   FILE_BUF *ip = NULL;
  8962.  
  8963.   print_containing_files ();
  8964.  
  8965.   for (i = indepth; i >= 0; i--)
  8966.     if (instack[i].fname != NULL) {
  8967.       ip = &instack[i];
  8968.       break;
  8969.     }
  8970.  
  8971.   if (ip != NULL)
  8972.     fprintf (stderr, "%s:%d: ", ip->nominal_fname, ip->lineno);
  8973.   vfprintf (stderr, msg, args);
  8974.   fprintf (stderr, "\n");
  8975.   errors++;
  8976. }
  8977.  
  8978. /* Error including a message from `errno'.  */
  8979.  
  8980. static void
  8981. error_from_errno (name)
  8982.      char *name;
  8983. {
  8984.   int i;
  8985.   FILE_BUF *ip = NULL;
  8986.  
  8987.   print_containing_files ();
  8988.  
  8989.   for (i = indepth; i >= 0; i--)
  8990.     if (instack[i].fname != NULL) {
  8991.       ip = &instack[i];
  8992.       break;
  8993.     }
  8994.  
  8995.   if (ip != NULL)
  8996.     fprintf (stderr, "%s:%d: ", ip->nominal_fname, ip->lineno);
  8997.  
  8998.   fprintf (stderr, "%s: %s\n", name, my_strerror (errno));
  8999.  
  9000.   errors++;
  9001. }
  9002.  
  9003. /* Print error message but don't count it.  */
  9004.  
  9005. void
  9006. warning (PRINTF_ALIST (msg))
  9007.      PRINTF_DCL (msg)
  9008. {
  9009.   va_list args;
  9010.  
  9011.   VA_START (args, msg);
  9012.   vwarning (msg, args);
  9013.   va_end (args);
  9014. }
  9015.  
  9016. static void
  9017. vwarning (msg, args)
  9018.      char *msg;
  9019.      va_list args;
  9020. {
  9021.   int i;
  9022.   FILE_BUF *ip = NULL;
  9023.  
  9024.   if (inhibit_warnings)
  9025.     return;
  9026.  
  9027.   if (warnings_are_errors)
  9028.     errors++;
  9029.  
  9030.   print_containing_files ();
  9031.  
  9032.   for (i = indepth; i >= 0; i--)
  9033.     if (instack[i].fname != NULL) {
  9034.       ip = &instack[i];
  9035.       break;
  9036.     }
  9037.  
  9038.   if (ip != NULL)
  9039.     fprintf (stderr, "%s:%d: ", ip->nominal_fname, ip->lineno);
  9040.   fprintf (stderr, "warning: ");
  9041.   vfprintf (stderr, msg, args);
  9042.   fprintf (stderr, "\n");
  9043. }
  9044.  
  9045. static void
  9046. #if defined (__STDC__) && defined (HAVE_VPRINTF)
  9047. error_with_line (int line, PRINTF_ALIST (msg))
  9048. #else
  9049. error_with_line (line, PRINTF_ALIST (msg))
  9050.      int line;
  9051.      PRINTF_DCL (msg)
  9052. #endif
  9053. {
  9054.   va_list args;
  9055.  
  9056.   VA_START (args, msg);
  9057.   verror_with_line (line, msg, args);
  9058.   va_end (args);
  9059. }
  9060.  
  9061. static void
  9062. verror_with_line (line, msg, args)
  9063.      int line;
  9064.      char *msg;
  9065.      va_list args;
  9066. {
  9067.   int i;
  9068.   FILE_BUF *ip = NULL;
  9069.  
  9070.   print_containing_files ();
  9071.  
  9072.   for (i = indepth; i >= 0; i--)
  9073.     if (instack[i].fname != NULL) {
  9074.       ip = &instack[i];
  9075.       break;
  9076.     }
  9077.  
  9078.   if (ip != NULL)
  9079.     fprintf (stderr, "%s:%d: ", ip->nominal_fname, line);
  9080.   vfprintf (stderr, msg, args);
  9081.   fprintf (stderr, "\n");
  9082.   errors++;
  9083. }
  9084.  
  9085. static void
  9086. #if defined (__STDC__) && defined (HAVE_VPRINTF)
  9087. warning_with_line (int line, PRINTF_ALIST (msg))
  9088. #else
  9089. warning_with_line (line, PRINTF_ALIST (msg))
  9090.      int line;
  9091.      PRINTF_DCL (msg)
  9092. #endif
  9093. {
  9094.   va_list args;
  9095.  
  9096.   VA_START (args, msg);
  9097.   vwarning_with_line (line, msg, args);
  9098.   va_end (args);
  9099. }
  9100.  
  9101. static void
  9102. vwarning_with_line (line, msg, args)
  9103.      int line;
  9104.      char *msg;
  9105.      va_list args;
  9106. {
  9107.   int i;
  9108.   FILE_BUF *ip = NULL;
  9109.  
  9110.   if (inhibit_warnings)
  9111.     return;
  9112.  
  9113.   if (warnings_are_errors)
  9114.     errors++;
  9115.  
  9116.   print_containing_files ();
  9117.  
  9118.   for (i = indepth; i >= 0; i--)
  9119.     if (instack[i].fname != NULL) {
  9120.       ip = &instack[i];
  9121.       break;
  9122.     }
  9123.  
  9124.   if (ip != NULL)
  9125.     fprintf (stderr, line ? "%s:%d: " : "%s: ", ip->nominal_fname, line);
  9126.   fprintf (stderr, "warning: ");
  9127.   vfprintf (stderr, msg, args);
  9128.   fprintf (stderr, "\n");
  9129. }
  9130.  
  9131. /* print an error message and maybe count it.  */
  9132.  
  9133. void
  9134. pedwarn (PRINTF_ALIST (msg))
  9135.      PRINTF_DCL (msg)
  9136. {
  9137.   va_list args;
  9138.  
  9139.   VA_START (args, msg);
  9140.   if (pedantic_errors)
  9141.     verror (msg, args);
  9142.   else
  9143.     vwarning (msg, args);
  9144.   va_end (args);
  9145. }
  9146.  
  9147. void
  9148. #if defined (__STDC__) && defined (HAVE_VPRINTF)
  9149. pedwarn_with_line (int line, PRINTF_ALIST (msg))
  9150. #else
  9151. pedwarn_with_line (line, PRINTF_ALIST (msg))
  9152.      int line;
  9153.      PRINTF_DCL (msg)
  9154. #endif
  9155. {
  9156.   va_list args;
  9157.  
  9158.   VA_START (args, msg);
  9159.   if (pedantic_errors)
  9160.     verror_with_line (line, msg, args);
  9161.   else
  9162.     vwarning_with_line (line, msg, args);
  9163.   va_end (args);
  9164. }
  9165.  
  9166. /* Report a warning (or an error if pedantic_errors)
  9167.    giving specified file name and line number, not current.  */
  9168.  
  9169. static void
  9170. #if defined (__STDC__) && defined (HAVE_VPRINTF)
  9171. pedwarn_with_file_and_line (char *file, int line, PRINTF_ALIST (msg))
  9172. #else
  9173. pedwarn_with_file_and_line (file, line, PRINTF_ALIST (msg))
  9174.      char *file;
  9175.      int line;
  9176.      PRINTF_DCL (msg)
  9177. #endif
  9178. {
  9179.   va_list args;
  9180.  
  9181.   if (!pedantic_errors && inhibit_warnings)
  9182.     return;
  9183.   if (file != NULL)
  9184.     fprintf (stderr, "%s:%d: ", file, line);
  9185.   if (pedantic_errors)
  9186.     errors++;
  9187.   if (!pedantic_errors)
  9188.     fprintf (stderr, "warning: ");
  9189.   VA_START (args, msg);
  9190.   vfprintf (stderr, msg, args);
  9191.   va_end (args);
  9192.   fprintf (stderr, "\n");
  9193. }
  9194.  
  9195. /* Print the file names and line numbers of the #include
  9196.    directives which led to the current file.  */
  9197.  
  9198. static void
  9199. print_containing_files ()
  9200. {
  9201.   FILE_BUF *ip = NULL;
  9202.   int i;
  9203.   int first = 1;
  9204.  
  9205.   /* If stack of files hasn't changed since we last printed
  9206.      this info, don't repeat it.  */
  9207.   if (last_error_tick == input_file_stack_tick)
  9208.     return;
  9209.  
  9210.   for (i = indepth; i >= 0; i--)
  9211.     if (instack[i].fname != NULL) {
  9212.       ip = &instack[i];
  9213.       break;
  9214.     }
  9215.  
  9216.   /* Give up if we don't find a source file.  */
  9217.   if (ip == NULL)
  9218.     return;
  9219.  
  9220.   /* Find the other, outer source files.  */
  9221.   for (i--; i >= 0; i--)
  9222.     if (instack[i].fname != NULL) {
  9223.       ip = &instack[i];
  9224.       if (first) {
  9225.     first = 0;
  9226.     fprintf (stderr, "In file included");
  9227.       } else {
  9228.     fprintf (stderr, ",\n                ");
  9229.       }
  9230.  
  9231.       fprintf (stderr, " from %s:%d", ip->nominal_fname, ip->lineno);
  9232.     }
  9233.   if (! first)
  9234.     fprintf (stderr, ":\n");
  9235.  
  9236.   /* Record we have printed the status as of this time.  */
  9237.   last_error_tick = input_file_stack_tick;
  9238. }
  9239.  
  9240. /* Return the line at which an error occurred.
  9241.    The error is not necessarily associated with the current spot
  9242.    in the input stack, so LINE says where.  LINE will have been
  9243.    copied from ip->lineno for the current input level.
  9244.    If the current level is for a file, we return LINE.
  9245.    But if the current level is not for a file, LINE is meaningless.
  9246.    In that case, we return the lineno of the innermost file.  */
  9247.  
  9248. static int
  9249. line_for_error (line)
  9250.      int line;
  9251. {
  9252.   int i;
  9253.   int line1 = line;
  9254.  
  9255.   for (i = indepth; i >= 0; ) {
  9256.     if (instack[i].fname != 0)
  9257.       return line1;
  9258.     i--;
  9259.     if (i < 0)
  9260.       return 0;
  9261.     line1 = instack[i].lineno;
  9262.   }
  9263.   abort ();
  9264.   /*NOTREACHED*/
  9265.   return 0;
  9266. }
  9267.  
  9268. /*
  9269.  * If OBUF doesn't have NEEDED bytes after OPTR, make it bigger.
  9270.  *
  9271.  * As things stand, nothing is ever placed in the output buffer to be
  9272.  * removed again except when it's KNOWN to be part of an identifier,
  9273.  * so flushing and moving down everything left, instead of expanding,
  9274.  * should work ok.
  9275.  */
  9276.  
  9277. /* You might think void was cleaner for the return type,
  9278.    but that would get type mismatch in check_expand in strict ANSI.  */
  9279. static int
  9280. grow_outbuf (obuf, needed)
  9281.      register FILE_BUF *obuf;
  9282.      register int needed;
  9283. {
  9284.   register U_CHAR *p;
  9285.   int minsize;
  9286.  
  9287.   if (obuf->length - (obuf->bufp - obuf->buf) > needed)
  9288.     return 0;
  9289.  
  9290.   /* Make it at least twice as big as it is now.  */
  9291.   obuf->length *= 2;
  9292.   /* Make it have at least 150% of the free space we will need.  */
  9293.   minsize = (3 * needed) / 2 + (obuf->bufp - obuf->buf);
  9294.   if (minsize > obuf->length)
  9295.     obuf->length = minsize;
  9296.  
  9297.   if ((p = (U_CHAR *) xrealloc (obuf->buf, obuf->length)) == NULL)
  9298.     memory_full ();
  9299.  
  9300.   obuf->bufp = p + (obuf->bufp - obuf->buf);
  9301.   obuf->buf = p;
  9302.  
  9303.   return 0;
  9304. }
  9305.  
  9306. /* Symbol table for macro names and special symbols */
  9307.  
  9308. /*
  9309.  * install a name in the main hash table, even if it is already there.
  9310.  *   name stops with first non alphanumeric, except leading '#'.
  9311.  * caller must check against redefinition if that is desired.
  9312.  * delete_macro () removes things installed by install () in fifo order.
  9313.  * this is important because of the `defined' special symbol used
  9314.  * in #if, and also if pushdef/popdef directives are ever implemented.
  9315.  *
  9316.  * If LEN is >= 0, it is the length of the name.
  9317.  * Otherwise, compute the length by scanning the entire name.
  9318.  *
  9319.  * If HASH is >= 0, it is the precomputed hash code.
  9320.  * Otherwise, compute the hash code.
  9321.  */
  9322. static HASHNODE *
  9323. install (name, len, type, value, hash)
  9324.      U_CHAR *name;
  9325.      int len;
  9326.      enum node_type type;
  9327.      char *value;
  9328.      int hash;
  9329. {
  9330.   register HASHNODE *hp;
  9331.   register int i, bucket;
  9332.   register U_CHAR *p, *q;
  9333.  
  9334.   if (len < 0) {
  9335.     p = name;
  9336.     while (is_idchar[*p])
  9337.       p++;
  9338.     len = p - name;
  9339.   }
  9340.  
  9341.   if (hash < 0)
  9342.     hash = hashf (name, len, HASHSIZE);
  9343.  
  9344.   i = sizeof (HASHNODE) + len + 1;
  9345.   hp = (HASHNODE *) xmalloc (i);
  9346.   bucket = hash;
  9347.   hp->bucket_hdr = &hashtab[bucket];
  9348.   hp->next = hashtab[bucket];
  9349.   hashtab[bucket] = hp;
  9350.   hp->prev = NULL;
  9351.   if (hp->next != NULL)
  9352.     hp->next->prev = hp;
  9353.   hp->type = type;
  9354.   hp->length = len;
  9355.   hp->value.cpval = value;
  9356.   hp->name = ((U_CHAR *) hp) + sizeof (HASHNODE);
  9357.   p = hp->name;
  9358.   q = name;
  9359.   for (i = 0; i < len; i++)
  9360.     *p++ = *q++;
  9361.   hp->name[len] = 0;
  9362.   return hp;
  9363. }
  9364.  
  9365. /*
  9366.  * find the most recent hash node for name name (ending with first
  9367.  * non-identifier char) installed by install
  9368.  *
  9369.  * If LEN is >= 0, it is the length of the name.
  9370.  * Otherwise, compute the length by scanning the entire name.
  9371.  *
  9372.  * If HASH is >= 0, it is the precomputed hash code.
  9373.  * Otherwise, compute the hash code.
  9374.  */
  9375. HASHNODE *
  9376. lookup (name, len, hash)
  9377.      U_CHAR *name;
  9378.      int len;
  9379.      int hash;
  9380. {
  9381.   register U_CHAR *bp;
  9382.   register HASHNODE *bucket;
  9383.  
  9384.   if (len < 0) {
  9385.     for (bp = name; is_idchar[*bp]; bp++) ;
  9386.     len = bp - name;
  9387.   }
  9388.  
  9389.   if (hash < 0)
  9390.     hash = hashf (name, len, HASHSIZE);
  9391.  
  9392.   bucket = hashtab[hash];
  9393.   while (bucket) {
  9394.     if (bucket->length == len && bcmp (bucket->name, name, len) == 0)
  9395.       return bucket;
  9396.     bucket = bucket->next;
  9397.   }
  9398.   return NULL;
  9399. }
  9400.  
  9401. /*
  9402.  * Delete a hash node.  Some weirdness to free junk from macros.
  9403.  * More such weirdness will have to be added if you define more hash
  9404.  * types that need it.
  9405.  */
  9406.  
  9407. /* Note that the DEFINITION of a macro is removed from the hash table
  9408.    but its storage is not freed.  This would be a storage leak
  9409.    except that it is not reasonable to keep undefining and redefining
  9410.    large numbers of macros many times.
  9411.    In any case, this is necessary, because a macro can be #undef'd
  9412.    in the middle of reading the arguments to a call to it.
  9413.    If #undef freed the DEFINITION, that would crash.  */
  9414.  
  9415. static void
  9416. delete_macro (hp)
  9417.      HASHNODE *hp;
  9418. {
  9419.  
  9420.   if (hp->prev != NULL)
  9421.     hp->prev->next = hp->next;
  9422.   if (hp->next != NULL)
  9423.     hp->next->prev = hp->prev;
  9424.  
  9425.   /* make sure that the bucket chain header that
  9426.      the deleted guy was on points to the right thing afterwards. */
  9427.   if (hp == *hp->bucket_hdr)
  9428.     *hp->bucket_hdr = hp->next;
  9429.  
  9430. #if 0
  9431.   if (hp->type == T_MACRO) {
  9432.     DEFINITION *d = hp->value.defn;
  9433.     struct reflist *ap, *nextap;
  9434.  
  9435.     for (ap = d->pattern; ap != NULL; ap = nextap) {
  9436.       nextap = ap->next;
  9437.       free (ap);
  9438.     }
  9439.     free (d);
  9440.   }
  9441. #endif
  9442.   free (hp);
  9443. }
  9444.  
  9445. /*
  9446.  * return hash function on name.  must be compatible with the one
  9447.  * computed a step at a time, elsewhere
  9448.  */
  9449. static int
  9450. hashf (name, len, hashsize)
  9451.      register U_CHAR *name;
  9452.      register int len;
  9453.      int hashsize;
  9454. {
  9455.   register int r = 0;
  9456.  
  9457.   while (len--)
  9458.     r = HASHSTEP (r, *name++);
  9459.  
  9460.   return MAKE_POS (r) % hashsize;
  9461. }
  9462.  
  9463.  
  9464. /* Dump the definition of a single macro HP to OF.  */
  9465. static void
  9466. dump_single_macro (hp, of)
  9467.      register HASHNODE *hp;
  9468.      FILE *of;
  9469. {
  9470.   register DEFINITION *defn = hp->value.defn;
  9471.   struct reflist *ap;
  9472.   int offset;
  9473.   int concat;
  9474.  
  9475.  
  9476.   /* Print the definition of the macro HP.  */
  9477.  
  9478.   fprintf (of, "#define %s", hp->name);
  9479.  
  9480.   if (defn->nargs >= 0) {
  9481.     int i;
  9482.  
  9483.     fprintf (of, "(");
  9484.     for (i = 0; i < defn->nargs; i++) {
  9485.       dump_arg_n (defn, i, of);
  9486.       if (i + 1 < defn->nargs)
  9487.     fprintf (of, ", ");
  9488.     }
  9489.     fprintf (of, ")");
  9490.   }
  9491.  
  9492.   fprintf (of, " ");
  9493.  
  9494.   offset = 0;
  9495.   concat = 0;
  9496.   for (ap = defn->pattern; ap != NULL; ap = ap->next) {
  9497.     dump_defn_1 (defn->expansion, offset, ap->nchars, of);
  9498.     offset += ap->nchars;
  9499.     if (!traditional) {
  9500.       if (ap->nchars != 0)
  9501.     concat = 0;
  9502.       if (ap->stringify) {
  9503.     switch (ap->stringify) {
  9504.      case SHARP_TOKEN: fprintf (of, "#"); break;
  9505.      case WHITE_SHARP_TOKEN: fprintf (of, "# "); break;
  9506.      case PERCENT_COLON_TOKEN: fprintf (of, "%%:"); break;
  9507.      case WHITE_PERCENT_COLON_TOKEN: fprintf (of, "%%: "); break;
  9508.      default: abort ();
  9509.     }
  9510.       }
  9511.       if (ap->raw_before != 0) {
  9512.     if (concat) {
  9513.       switch (ap->raw_before) {
  9514.        case WHITE_SHARP_TOKEN:
  9515.        case WHITE_PERCENT_COLON_TOKEN:
  9516.         fprintf (of, " ");
  9517.         break;
  9518.        default:
  9519.         break;
  9520.       }
  9521.     } else {
  9522.       switch (ap->raw_before) {
  9523.        case SHARP_TOKEN: fprintf (of, "##"); break;
  9524.        case WHITE_SHARP_TOKEN: fprintf (of, "## "); break;
  9525.        case PERCENT_COLON_TOKEN: fprintf (of, "%%:%%:"); break;
  9526.        case WHITE_PERCENT_COLON_TOKEN: fprintf (of, "%%:%%: "); break;
  9527.        default: abort ();
  9528.       }
  9529.     }
  9530.       }
  9531.       concat = 0;
  9532.     }
  9533.     dump_arg_n (defn, ap->argno, of);
  9534.     if (!traditional && ap->raw_after != 0) {
  9535.       switch (ap->raw_after) {
  9536.        case SHARP_TOKEN: fprintf (of, "##"); break;
  9537.        case WHITE_SHARP_TOKEN: fprintf (of, " ##"); break;
  9538.        case PERCENT_COLON_TOKEN: fprintf (of, "%%:%%:"); break;
  9539.        case WHITE_PERCENT_COLON_TOKEN: fprintf (of, " %%:%%:"); break;
  9540.        default: abort ();
  9541.       }
  9542.       concat = 1;
  9543.     }
  9544.   }
  9545.   dump_defn_1 (defn->expansion, offset, defn->length - offset, of);
  9546.   fprintf (of, "\n");
  9547. }
  9548.  
  9549. /* Dump all macro definitions as #defines to stdout.  */
  9550.  
  9551. static void
  9552. dump_all_macros ()
  9553. {
  9554.   int bucket;
  9555.  
  9556.   for (bucket = 0; bucket < HASHSIZE; bucket++) {
  9557.     register HASHNODE *hp;
  9558.  
  9559.     for (hp = hashtab[bucket]; hp; hp= hp->next) {
  9560.       if (hp->type == T_MACRO)
  9561.     dump_single_macro (hp, stdout);
  9562.     }
  9563.   }
  9564. }
  9565.  
  9566. /* Output to OF a substring of a macro definition.
  9567.    BASE is the beginning of the definition.
  9568.    Output characters START thru LENGTH.
  9569.    Unless traditional, discard newlines outside of strings, thus
  9570.    converting funny-space markers to ordinary spaces.  */
  9571.  
  9572. static void
  9573. dump_defn_1 (base, start, length, of)
  9574.      U_CHAR *base;
  9575.      int start;
  9576.      int length;
  9577.      FILE *of;
  9578. {
  9579.   U_CHAR *p = base + start;
  9580.   U_CHAR *limit = base + start + length;
  9581.  
  9582.   if (traditional)
  9583.     fwrite (p, sizeof (*p), length, of);
  9584.   else {
  9585.     while (p < limit) {
  9586.       if (*p == '\"' || *p =='\'') {
  9587.     U_CHAR *p1 = skip_quoted_string (p, limit, 0, NULL_PTR,
  9588.                      NULL_PTR, NULL_PTR);
  9589.     fwrite (p, sizeof (*p), p1 - p, of);
  9590.     p = p1;
  9591.       } else {
  9592.     if (*p != '\n')
  9593.       putc (*p, of);
  9594.     p++;
  9595.       }
  9596.     }
  9597.   }
  9598. }
  9599.  
  9600. /* Print the name of argument number ARGNUM of macro definition DEFN
  9601.    to OF.
  9602.    Recall that DEFN->args.argnames contains all the arg names
  9603.    concatenated in reverse order with comma-space in between.  */
  9604.  
  9605. static void
  9606. dump_arg_n (defn, argnum, of)
  9607.      DEFINITION *defn;
  9608.      int argnum;
  9609.      FILE *of;
  9610. {
  9611.   register U_CHAR *p = defn->args.argnames;
  9612.   while (argnum + 1 < defn->nargs) {
  9613.     p = (U_CHAR *) index ((char *) p, ' ') + 1;
  9614.     argnum++;
  9615.   }
  9616.  
  9617.   while (*p && *p != ',') {
  9618.     putc (*p, of);
  9619.     p++;
  9620.   }
  9621. }
  9622.  
  9623. /* Initialize syntactic classifications of characters.  */
  9624.  
  9625. static void
  9626. initialize_char_syntax ()
  9627. {
  9628.   register int i;
  9629.  
  9630.   /*
  9631.    * Set up is_idchar and is_idstart tables.  These should be
  9632.    * faster than saying (is_alpha (c) || c == '_'), etc.
  9633.    * Set up these things before calling any routines tthat
  9634.    * refer to them.
  9635.    */
  9636.   for (i = 'a'; i <= 'z'; i++) {
  9637.     is_idchar[i - 'a' + 'A'] = 1;
  9638.     is_idchar[i] = 1;
  9639.     is_idstart[i - 'a' + 'A'] = 1;
  9640.     is_idstart[i] = 1;
  9641.   }
  9642.   for (i = '0'; i <= '9'; i++)
  9643.     is_idchar[i] = 1;
  9644.   is_idchar['_'] = 1;
  9645.   is_idstart['_'] = 1;
  9646.   is_idchar['$'] = dollars_in_ident;
  9647.   is_idstart['$'] = dollars_in_ident;
  9648.  
  9649.   /* horizontal space table */
  9650.   is_hor_space[' '] = 1;
  9651.   is_hor_space['\t'] = 1;
  9652.   is_hor_space['\v'] = 1;
  9653.   is_hor_space['\f'] = 1;
  9654.   is_hor_space['\r'] = 1;
  9655.  
  9656.   is_space[' '] = 1;
  9657.   is_space['\t'] = 1;
  9658.   is_space['\v'] = 1;
  9659.   is_space['\f'] = 1;
  9660.   is_space['\n'] = 1;
  9661.   is_space['\r'] = 1;
  9662.  
  9663.   char_name['\v'] = "vertical tab";
  9664.   char_name['\f'] = "formfeed";
  9665.   char_name['\r'] = "carriage return";
  9666. }
  9667.  
  9668. /* Initialize the built-in macros.  */
  9669.  
  9670. static void
  9671. initialize_builtins (inp, outp)
  9672.      FILE_BUF *inp;
  9673.      FILE_BUF *outp;
  9674. {
  9675.   install ((U_CHAR *) "__LINE__", -1, T_SPECLINE, NULL_PTR, -1);
  9676.   install ((U_CHAR *) "__DATE__", -1, T_DATE, NULL_PTR, -1);
  9677.   install ((U_CHAR *) "__FILE__", -1, T_FILE, NULL_PTR, -1);
  9678.   install ((U_CHAR *) "__BASE_FILE__", -1, T_BASE_FILE, NULL_PTR, -1);
  9679.   install ((U_CHAR *) "__INCLUDE_LEVEL__", -1, T_INCLUDE_LEVEL, NULL_PTR, -1);
  9680.   install ((U_CHAR *) "__VERSION__", -1, T_VERSION, NULL_PTR, -1);
  9681. #ifndef NO_BUILTIN_SIZE_TYPE
  9682.   install ((U_CHAR *) "__SIZE_TYPE__", -1, T_SIZE_TYPE, NULL_PTR, -1);
  9683. #endif
  9684. #ifndef NO_BUILTIN_PTRDIFF_TYPE
  9685.   install ((U_CHAR *) "__PTRDIFF_TYPE__ ", -1, T_PTRDIFF_TYPE, NULL_PTR, -1);
  9686. #endif
  9687.   install ((U_CHAR *) "__WCHAR_TYPE__", -1, T_WCHAR_TYPE, NULL_PTR, -1);
  9688.   install ((U_CHAR *) "__USER_LABEL_PREFIX__", -1, T_USER_LABEL_PREFIX_TYPE,
  9689.        NULL_PTR, -1);
  9690.   install ((U_CHAR *) "__REGISTER_PREFIX__", -1, T_REGISTER_PREFIX_TYPE,
  9691.        NULL_PTR, -1);
  9692.   install ((U_CHAR *) "__IMMEDIATE_PREFIX__", -1, T_IMMEDIATE_PREFIX_TYPE,
  9693.        NULL_PTR, -1);
  9694.   install ((U_CHAR *) "__TIME__", -1, T_TIME, NULL_PTR, -1);
  9695.   if (!traditional) {
  9696.     install ((U_CHAR *) "__STDC__", -1, T_CONST, "1", -1);
  9697.     install ((U_CHAR *) "__STDC_VERSION__", -1, T_CONST, "199409L", -1);
  9698.   }
  9699.   if (objc)
  9700.     install ((U_CHAR *) "__OBJC__", -1, T_CONST, "1", -1);
  9701. /*  This is supplied using a -D by the compiler driver
  9702.     so that it is present only when truly compiling with GNU C.  */
  9703. /*  install ((U_CHAR *) "__GNUC__", -1, T_CONST, "2", -1);  */
  9704.  
  9705.   if (debug_output)
  9706.     {
  9707.       char directive[2048];
  9708.       U_CHAR *udirective = (U_CHAR *) directive;
  9709.       register struct directive *dp = &directive_table[0];
  9710.       struct tm *timebuf = timestamp ();
  9711.  
  9712.       sprintf (directive, " __BASE_FILE__ \"%s\"\n",
  9713.            instack[0].nominal_fname);
  9714.       output_line_directive (inp, outp, 0, same_file);
  9715.       pass_thru_directive (udirective, &udirective[strlen (directive)],
  9716.                outp, dp);
  9717.  
  9718.       sprintf (directive, " __VERSION__ \"%s\"\n", version_string);
  9719.       output_line_directive (inp, outp, 0, same_file);
  9720.       pass_thru_directive (udirective, &udirective[strlen (directive)],
  9721.                outp, dp);
  9722.  
  9723. #ifndef NO_BUILTIN_SIZE_TYPE
  9724.       sprintf (directive, " __SIZE_TYPE__ %s\n", SIZE_TYPE);
  9725.       output_line_directive (inp, outp, 0, same_file);
  9726.       pass_thru_directive (udirective, &udirective[strlen (directive)],
  9727.                outp, dp);
  9728. #endif
  9729.  
  9730. #ifndef NO_BUILTIN_PTRDIFF_TYPE
  9731.       sprintf (directive, " __PTRDIFF_TYPE__ %s\n", PTRDIFF_TYPE);
  9732.       output_line_directive (inp, outp, 0, same_file);
  9733.       pass_thru_directive (udirective, &udirective[strlen (directive)],
  9734.                outp, dp);
  9735. #endif
  9736.  
  9737.       sprintf (directive, " __WCHAR_TYPE__ %s\n", wchar_type);
  9738.       output_line_directive (inp, outp, 0, same_file);
  9739.       pass_thru_directive (udirective, &udirective[strlen (directive)],
  9740.                outp, dp);
  9741.  
  9742.       sprintf (directive, " __DATE__ \"%s %2d %4d\"\n",
  9743.            monthnames[timebuf->tm_mon],
  9744.            timebuf->tm_mday, timebuf->tm_year + 1900);
  9745.       output_line_directive (inp, outp, 0, same_file);
  9746.       pass_thru_directive (udirective, &udirective[strlen (directive)],
  9747.                outp, dp);
  9748.  
  9749.       sprintf (directive, " __TIME__ \"%02d:%02d:%02d\"\n",
  9750.            timebuf->tm_hour, timebuf->tm_min, timebuf->tm_sec);
  9751.       output_line_directive (inp, outp, 0, same_file);
  9752.       pass_thru_directive (udirective, &udirective[strlen (directive)],
  9753.                outp, dp);
  9754.  
  9755.       if (!traditional)
  9756.     {
  9757.           sprintf (directive, " __STDC__ 1");
  9758.           output_line_directive (inp, outp, 0, same_file);
  9759.           pass_thru_directive (udirective, &udirective[strlen (directive)],
  9760.                    outp, dp);
  9761.     }
  9762.       if (objc)
  9763.     {
  9764.           sprintf (directive, " __OBJC__ 1");
  9765.           output_line_directive (inp, outp, 0, same_file);
  9766.           pass_thru_directive (udirective, &udirective[strlen (directive)],
  9767.                    outp, dp);
  9768.     }
  9769.     }
  9770. }
  9771.  
  9772. /*
  9773.  * process a given definition string, for initialization
  9774.  * If STR is just an identifier, define it with value 1.
  9775.  * If STR has anything after the identifier, then it should
  9776.  * be identifier=definition.
  9777.  */
  9778.  
  9779. static void
  9780. make_definition (str, op)
  9781.      char *str;
  9782.      FILE_BUF *op;
  9783. {
  9784.   FILE_BUF *ip;
  9785.   struct directive *kt;
  9786.   U_CHAR *buf, *p;
  9787.  
  9788.   p = buf = (U_CHAR *) str;
  9789.   if (!is_idstart[*p]) {
  9790.     error ("malformed option `-D %s'", str);
  9791.     return;
  9792.   }
  9793.   while (is_idchar[*++p])
  9794.     ;
  9795.   if (*p == '(') {
  9796.     while (is_idchar[*++p] || *p == ',' || is_hor_space[*p])
  9797.       ;
  9798.     if (*p++ != ')')
  9799.       p = (U_CHAR *) str;            /* Error */
  9800.   }
  9801.   if (*p == 0) {
  9802.     buf = (U_CHAR *) alloca (p - buf + 4);
  9803.     strcpy ((char *)buf, str);
  9804.     strcat ((char *)buf, " 1");
  9805.   } else if (*p != '=') {
  9806.     error ("malformed option `-D %s'", str);
  9807.     return;
  9808.   } else {
  9809.     U_CHAR *q;
  9810.     /* Copy the entire option so we can modify it.  */
  9811.     buf = (U_CHAR *) alloca (2 * strlen (str) + 1);
  9812.     strncpy ((char *) buf, str, p - (U_CHAR *) str);
  9813.     /* Change the = to a space.  */
  9814.     buf[p - (U_CHAR *) str] = ' ';
  9815.     /* Scan for any backslash-newline and remove it.  */
  9816.     p++;
  9817.     q = &buf[p - (U_CHAR *) str];
  9818.     while (*p) {
  9819.       if (*p == '\"' || *p == '\'') {
  9820.     int unterminated = 0;
  9821.     U_CHAR *p1 = skip_quoted_string (p, p + strlen ((char *) p), 0,
  9822.                      NULL_PTR, NULL_PTR, &unterminated);
  9823.     if (unterminated)
  9824.       return;
  9825.     while (p != p1)
  9826.       if (*p == '\\' && p[1] == '\n')
  9827.         p += 2;
  9828.       else
  9829.         *q++ = *p++;
  9830.       } else if (*p == '\\' && p[1] == '\n')
  9831.     p += 2;
  9832.       /* Change newline chars into newline-markers.  */
  9833.       else if (*p == '\n')
  9834.     {
  9835.       *q++ = '\n';
  9836.       *q++ = '\n';
  9837.       p++;
  9838.     }
  9839.       else
  9840.     *q++ = *p++;
  9841.     }
  9842.     *q = 0;
  9843.   }
  9844.   
  9845.   ip = &instack[++indepth];
  9846.   ip->nominal_fname = ip->fname = "*Initialization*";
  9847.  
  9848.   ip->buf = ip->bufp = buf;
  9849.   ip->length = strlen ((char *) buf);
  9850.   ip->lineno = 1;
  9851.   ip->macro = 0;
  9852.   ip->free_ptr = 0;
  9853.   ip->if_stack = if_stack;
  9854.   ip->system_header_p = 0;
  9855.  
  9856.   for (kt = directive_table; kt->type != T_DEFINE; kt++)
  9857.     ;
  9858.  
  9859.   /* Pass NULL instead of OP, since this is a "predefined" macro.  */
  9860.   do_define (buf, buf + strlen ((char *) buf), NULL_PTR, kt);
  9861.   --indepth;
  9862. }
  9863.  
  9864. /* JF, this does the work for the -U option */
  9865.  
  9866. static void
  9867. make_undef (str, op)
  9868.      char *str;
  9869.      FILE_BUF *op;
  9870. {
  9871.   FILE_BUF *ip;
  9872.   struct directive *kt;
  9873.  
  9874.   ip = &instack[++indepth];
  9875.   ip->nominal_fname = ip->fname = "*undef*";
  9876.  
  9877.   ip->buf = ip->bufp = (U_CHAR *) str;
  9878.   ip->length = strlen (str);
  9879.   ip->lineno = 1;
  9880.   ip->macro = 0;
  9881.   ip->free_ptr = 0;
  9882.   ip->if_stack = if_stack;
  9883.   ip->system_header_p = 0;
  9884.  
  9885.   for (kt = directive_table; kt->type != T_UNDEF; kt++)
  9886.     ;
  9887.  
  9888.   do_undef ((U_CHAR *) str, (U_CHAR *) str + strlen (str), op, kt);
  9889.   --indepth;
  9890. }
  9891.  
  9892. /* Process the string STR as if it appeared as the body of a #assert.
  9893.    OPTION is the option name for which STR was the argument.  */
  9894.  
  9895. static void
  9896. make_assertion (option, str)
  9897.      char *option;
  9898.      char *str;
  9899. {
  9900.   FILE_BUF *ip;
  9901.   struct directive *kt;
  9902.   U_CHAR *buf, *p, *q;
  9903.  
  9904.   /* Copy the entire option so we can modify it.  */
  9905.   buf = (U_CHAR *) alloca (strlen (str) + 1);
  9906.   strcpy ((char *) buf, str);
  9907.   /* Scan for any backslash-newline and remove it.  */
  9908.   p = q = buf;
  9909.   while (*p) {
  9910.     if (*p == '\\' && p[1] == '\n')
  9911.       p += 2;
  9912.     else
  9913.       *q++ = *p++;
  9914.   }
  9915.   *q = 0;
  9916.  
  9917.   p = buf;
  9918.   if (!is_idstart[*p]) {
  9919.     error ("malformed option `%s %s'", option, str);
  9920.     return;
  9921.   }
  9922.   while (is_idchar[*++p])
  9923.     ;
  9924.   SKIP_WHITE_SPACE (p);
  9925.   if (! (*p == 0 || *p == '(')) {
  9926.     error ("malformed option `%s %s'", option, str);
  9927.     return;
  9928.   }
  9929.   
  9930.   ip = &instack[++indepth];
  9931.   ip->nominal_fname = ip->fname = "*Initialization*";
  9932.  
  9933.   ip->buf = ip->bufp = buf;
  9934.   ip->length = strlen ((char *) buf);
  9935.   ip->lineno = 1;
  9936.   ip->macro = 0;
  9937.   ip->free_ptr = 0;
  9938.   ip->if_stack = if_stack;
  9939.   ip->system_header_p = 0;
  9940.  
  9941.   for (kt = directive_table; kt->type != T_ASSERT; kt++)
  9942.     ;
  9943.  
  9944.   /* pass NULL as output ptr to do_define since we KNOW it never
  9945.      does any output.... */
  9946.   do_assert (buf, buf + strlen ((char *) buf) , NULL_PTR, kt);
  9947.   --indepth;
  9948. }
  9949.  
  9950. /* Append a chain of `struct file_name_list's
  9951.    to the end of the main include chain.
  9952.    FIRST is the beginning of the chain to append, and LAST is the end.  */
  9953.  
  9954. static void
  9955. append_include_chain (first, last)
  9956.      struct file_name_list *first, *last;
  9957. {
  9958.   struct file_name_list *dir;
  9959.  
  9960.   if (!first || !last)
  9961.     return;
  9962.  
  9963.   if (include == 0)
  9964.     include = first;
  9965.   else
  9966.     last_include->next = first;
  9967.  
  9968.   if (first_bracket_include == 0)
  9969.     first_bracket_include = first;
  9970.  
  9971.   for (dir = first; ; dir = dir->next) {
  9972.     int len = strlen (dir->fname) + INCLUDE_LEN_FUDGE;
  9973.     if (len > max_include_len)
  9974.       max_include_len = len;
  9975.     if (dir == last)
  9976.       break;
  9977.   }
  9978.  
  9979.   last->next = NULL;
  9980.   last_include = last;
  9981. }
  9982.  
  9983. /* Add output to `deps_buffer' for the -M switch.
  9984.    STRING points to the text to be output.
  9985.    SPACER is ':' for targets, ' ' for dependencies.  */
  9986.  
  9987. static void
  9988. deps_output (string, spacer)
  9989.      char *string;
  9990.      int spacer;
  9991. {
  9992.   int size = strlen (string);
  9993.  
  9994.   if (size == 0)
  9995.     return;
  9996.  
  9997. #ifndef MAX_OUTPUT_COLUMNS
  9998. #define MAX_OUTPUT_COLUMNS 72
  9999. #endif
  10000.   if (MAX_OUTPUT_COLUMNS - 1 /*spacer*/ - 2 /*` \'*/ < deps_column + size
  10001.       && 1 < deps_column) {
  10002.     bcopy (" \\\n ", &deps_buffer[deps_size], 4);
  10003.     deps_size += 4;
  10004.     deps_column = 1;
  10005.     if (spacer == ' ')
  10006.       spacer = 0;
  10007.   }
  10008.  
  10009.   if (deps_size + size + 8 > deps_allocated_size) {
  10010.     deps_allocated_size = (deps_size + size + 50) * 2;
  10011.     deps_buffer = xrealloc (deps_buffer, deps_allocated_size);
  10012.   }
  10013.   if (spacer == ' ') {
  10014.     deps_buffer[deps_size++] = ' ';
  10015.     deps_column++;
  10016.   }
  10017.   bcopy (string, &deps_buffer[deps_size], size);
  10018.   deps_size += size;
  10019.   deps_column += size;
  10020.   if (spacer == ':') {
  10021.     deps_buffer[deps_size++] = ':';
  10022.     deps_column++;
  10023.   }
  10024.   deps_buffer[deps_size] = 0;
  10025. }
  10026.  
  10027. void
  10028. fatal (PRINTF_ALIST (msg))
  10029.      PRINTF_DCL (msg)
  10030. {
  10031.   va_list args;
  10032.  
  10033.   fprintf (stderr, "%s: ", progname);
  10034.   VA_START (args, msg);
  10035.   vfprintf (stderr, msg, args);
  10036.   va_end (args);
  10037.   fprintf (stderr, "\n");
  10038.   exit (FATAL_EXIT_CODE);
  10039. }
  10040.  
  10041. /* More 'friendly' abort that prints the line and file.
  10042.    config.h can #define abort fancy_abort if you like that sort of thing.  */
  10043.  
  10044. void
  10045. fancy_abort ()
  10046. {
  10047.   fatal ("Internal gcc abort.");
  10048. }
  10049.  
  10050. static void
  10051. perror_with_name (name)
  10052.      char *name;
  10053. {
  10054.   fprintf (stderr, "%s: ", progname);
  10055.   fprintf (stderr, "%s: %s\n", name, my_strerror (errno));
  10056.   errors++;
  10057. }
  10058.  
  10059. static void
  10060. pfatal_with_name (name)
  10061.      char *name;
  10062. {
  10063.   perror_with_name (name);
  10064. #ifdef VMS
  10065.   exit (vaxc$errno);
  10066. #else
  10067.   exit (FATAL_EXIT_CODE);
  10068. #endif
  10069. }
  10070.  
  10071. /* Handler for SIGPIPE.  */
  10072.  
  10073. static void
  10074. pipe_closed (signo)
  10075.      /* If this is missing, some compilers complain.  */
  10076.      int signo;
  10077. {
  10078.   fatal ("output pipe has been closed");
  10079. }
  10080.  
  10081. static void
  10082. memory_full ()
  10083. {
  10084.   fatal ("Memory exhausted.");
  10085. }
  10086.  
  10087.  
  10088. GENERIC_PTR
  10089. xmalloc (size)
  10090.      size_t size;
  10091. {
  10092.   register GENERIC_PTR ptr = (GENERIC_PTR) malloc (size);
  10093.   if (!ptr)
  10094.     memory_full ();
  10095.   return ptr;
  10096. }
  10097.  
  10098. static GENERIC_PTR
  10099. xrealloc (old, size)
  10100.      GENERIC_PTR old;
  10101.      size_t size;
  10102. {
  10103.   register GENERIC_PTR ptr = (GENERIC_PTR) realloc (old, size);
  10104.   if (!ptr)
  10105.     memory_full ();
  10106.   return ptr;
  10107. }
  10108.  
  10109. static GENERIC_PTR
  10110. xcalloc (number, size)
  10111.      size_t number, size;
  10112. {
  10113.   register size_t total = number * size;
  10114.   register GENERIC_PTR ptr = (GENERIC_PTR) malloc (total);
  10115.   if (!ptr)
  10116.     memory_full ();
  10117.   bzero (ptr, total);
  10118.   return ptr;
  10119. }
  10120.  
  10121. static char *
  10122. savestring (input)
  10123.      char *input;
  10124. {
  10125.   size_t size = strlen (input);
  10126.   char *output = xmalloc (size + 1);
  10127.   strcpy (output, input);
  10128.   return output;
  10129. }
  10130.  
  10131. /* Get the file-mode and data size of the file open on FD
  10132.    and store them in *MODE_POINTER and *SIZE_POINTER.  */
  10133.  
  10134. static int
  10135. file_size_and_mode (fd, mode_pointer, size_pointer)
  10136.      int fd;
  10137.      int *mode_pointer;
  10138.      long int *size_pointer;
  10139. {
  10140.   struct stat sbuf;
  10141.  
  10142.   if (fstat (fd, &sbuf) < 0) return (-1);
  10143.   if (mode_pointer) *mode_pointer = sbuf.st_mode;
  10144.   if (size_pointer) *size_pointer = sbuf.st_size;
  10145.   return 0;
  10146. }
  10147.  
  10148. #ifdef VMS
  10149.  
  10150. /* Under VMS we need to fix up the "include" specification
  10151.    filename so that everything following the 1st slash is
  10152.    changed into its correct VMS file specification. */
  10153.  
  10154. static void
  10155. hack_vms_include_specification (fname)
  10156.      char *fname;
  10157. {
  10158.   register char *cp, *cp1, *cp2;
  10159.   int f, check_filename_before_returning, no_prefix_seen;
  10160.   char Local[512];
  10161.  
  10162.   check_filename_before_returning = 0;
  10163.   no_prefix_seen = 0;
  10164.  
  10165.   /* Ignore leading "./"s */
  10166.   while (fname[0] == '.' && fname[1] == '/') {
  10167.     strcpy (fname, fname+2);
  10168.     no_prefix_seen = 1;        /* mark this for later */
  10169.   }
  10170.   /* Look for the boundary between the VMS and UNIX filespecs */
  10171.   cp = rindex (fname, ']');    /* Look for end of dirspec. */
  10172.   if (cp == 0) cp = rindex (fname, '>'); /* ... Ditto            */
  10173.   if (cp == 0) cp = rindex (fname, ':'); /* Look for end of devspec. */
  10174.   if (cp) {
  10175.     cp++;
  10176.   } else {
  10177.     cp = index (fname, '/');    /* Look for the "/" */
  10178.   }
  10179.  
  10180.   /*
  10181.    * Check if we have a vax-c style '#include filename'
  10182.    * and add the missing .h
  10183.    */
  10184.   if (cp == 0) {
  10185.     if (index(fname,'.') == 0)
  10186.       strcat(fname, ".h");
  10187.   } else {
  10188.     if (index(cp,'.') == 0)
  10189.       strcat(cp, ".h");
  10190.   }
  10191.  
  10192.   cp2 = Local;            /* initialize */
  10193.  
  10194.   /* We are trying to do a number of things here.  First of all, we are
  10195.      trying to hammer the filenames into a standard format, such that later
  10196.      processing can handle them.
  10197.      
  10198.      If the file name contains something like [dir.], then it recognizes this
  10199.      as a root, and strips the ".]".  Later processing will add whatever is
  10200.      needed to get things working properly.
  10201.      
  10202.      If no device is specified, then the first directory name is taken to be
  10203.      a device name (or a rooted logical). */
  10204.  
  10205.   /* See if we found that 1st slash */
  10206.   if (cp == 0) return;        /* Nothing to do!!! */
  10207.   if (*cp != '/') return;    /* Nothing to do!!! */
  10208.   /* Point to the UNIX filename part (which needs to be fixed!) */
  10209.   cp1 = cp+1;
  10210.   /* If the directory spec is not rooted, we can just copy
  10211.      the UNIX filename part and we are done */
  10212.   if (((cp - fname) > 1) && ((cp[-1] == ']') || (cp[-1] == '>'))) {
  10213.     if (cp[-2] != '.') {
  10214.       /*
  10215.        * The VMS part ends in a `]', and the preceding character is not a `.'.
  10216.        * We strip the `]', and then splice the two parts of the name in the
  10217.        * usual way.  Given the default locations for include files in cccp.c,
  10218.        * we will only use this code if the user specifies alternate locations
  10219.        * with the /include (-I) switch on the command line.  */
  10220.       cp -= 1;            /* Strip "]" */
  10221.       cp1--;            /* backspace */
  10222.     } else {
  10223.       /*
  10224.        * The VMS part has a ".]" at the end, and this will not do.  Later
  10225.        * processing will add a second directory spec, and this would be a syntax
  10226.        * error.  Thus we strip the ".]", and thus merge the directory specs.
  10227.        * We also backspace cp1, so that it points to a '/'.  This inhibits the
  10228.        * generation of the 000000 root directory spec (which does not belong here
  10229.        * in this case).
  10230.        */
  10231.       cp -= 2;            /* Strip ".]" */
  10232.       cp1--; };            /* backspace */
  10233.   } else {
  10234.  
  10235.     /* We drop in here if there is no VMS style directory specification yet.
  10236.      * If there is no device specification either, we make the first dir a
  10237.      * device and try that.  If we do not do this, then we will be essentially
  10238.      * searching the users default directory (as if they did a #include "asdf.h").
  10239.      *
  10240.      * Then all we need to do is to push a '[' into the output string. Later
  10241.      * processing will fill this in, and close the bracket.
  10242.      */
  10243.     if (cp[-1] != ':') *cp2++ = ':'; /* dev not in spec.  take first dir */
  10244.     *cp2++ = '[';        /* Open the directory specification */
  10245.   }
  10246.  
  10247.   /* at this point we assume that we have the device spec, and (at least
  10248.      the opening "[" for a directory specification.  We may have directories
  10249.      specified already */
  10250.  
  10251.   /* If there are no other slashes then the filename will be
  10252.      in the "root" directory.  Otherwise, we need to add
  10253.      directory specifications. */
  10254.   if (index (cp1, '/') == 0) {
  10255.     /* Just add "000000]" as the directory string */
  10256.     strcpy (cp2, "000000]");
  10257.     cp2 += strlen (cp2);
  10258.     check_filename_before_returning = 1; /* we might need to fool with this later */
  10259.   } else {
  10260.     /* As long as there are still subdirectories to add, do them. */
  10261.     while (index (cp1, '/') != 0) {
  10262.       /* If this token is "." we can ignore it */
  10263.       if ((cp1[0] == '.') && (cp1[1] == '/')) {
  10264.     cp1 += 2;
  10265.     continue;
  10266.       }
  10267.       /* Add a subdirectory spec. Do not duplicate "." */
  10268.       if (cp2[-1] != '.' && cp2[-1] != '[' && cp2[-1] != '<')
  10269.     *cp2++ = '.';
  10270.       /* If this is ".." then the spec becomes "-" */
  10271.       if ((cp1[0] == '.') && (cp1[1] == '.') && (cp[2] == '/')) {
  10272.     /* Add "-" and skip the ".." */
  10273.     *cp2++ = '-';
  10274.     cp1 += 3;
  10275.     continue;
  10276.       }
  10277.       /* Copy the subdirectory */
  10278.       while (*cp1 != '/') *cp2++= *cp1++;
  10279.       cp1++;            /* Skip the "/" */
  10280.     }
  10281.     /* Close the directory specification */
  10282.     if (cp2[-1] == '.')        /* no trailing periods */
  10283.       cp2--;
  10284.     *cp2++ = ']';
  10285.   }
  10286.   /* Now add the filename */
  10287.   while (*cp1) *cp2++ = *cp1++;
  10288.   *cp2 = 0;
  10289.   /* Now append it to the original VMS spec. */
  10290.   strcpy (cp, Local);
  10291.  
  10292.   /* If we put a [000000] in the filename, try to open it first. If this fails,
  10293.      remove the [000000], and return that name.  This provides flexibility
  10294.      to the user in that they can use both rooted and non-rooted logical names
  10295.      to point to the location of the file.  */
  10296.  
  10297.   if (check_filename_before_returning && no_prefix_seen) {
  10298.     f = open (fname, O_RDONLY, 0666);
  10299.     if (f >= 0) {
  10300.       /* The file name is OK as it is, so return it as is.  */
  10301.       close (f);
  10302.       return;
  10303.     }
  10304.     /* The filename did not work.  Try to remove the [000000] from the name,
  10305.        and return it.  */
  10306.     cp = index (fname, '[');
  10307.     cp2 = index (fname, ']') + 1;
  10308.     strcpy (cp, cp2);        /* this gets rid of it */
  10309.   }
  10310.   return;
  10311. }
  10312. #endif    /* VMS */
  10313.  
  10314. #ifdef    VMS
  10315.  
  10316. /* These are the read/write replacement routines for
  10317.    VAX-11 "C".  They make read/write behave enough
  10318.    like their UNIX counterparts that CCCP will work */
  10319.  
  10320. static int
  10321. read (fd, buf, size)
  10322.      int fd;
  10323.      char *buf;
  10324.      int size;
  10325. {
  10326. #undef    read    /* Get back the REAL read routine */
  10327.   register int i;
  10328.   register int total = 0;
  10329.  
  10330.   /* Read until the buffer is exhausted */
  10331.   while (size > 0) {
  10332.     /* Limit each read to 32KB */
  10333.     i = (size > (32*1024)) ? (32*1024) : size;
  10334.     i = read (fd, buf, i);
  10335.     if (i <= 0) {
  10336.       if (i == 0) return (total);
  10337.       return (i);
  10338.     }
  10339.     /* Account for this read */
  10340.     total += i;
  10341.     buf += i;
  10342.     size -= i;
  10343.   }
  10344.   return (total);
  10345. }
  10346.  
  10347. static int
  10348. write (fd, buf, size)
  10349.      int fd;
  10350.      char *buf;
  10351.      int size;
  10352. {
  10353. #undef    write    /* Get back the REAL write routine */
  10354.   int i;
  10355.   int j;
  10356.  
  10357.   /* Limit individual writes to 32Kb */
  10358.   i = size;
  10359.   while (i > 0) {
  10360.     j = (i > (32*1024)) ? (32*1024) : i;
  10361.     if (write (fd, buf, j) < 0) return (-1);
  10362.     /* Account for the data written */
  10363.     buf += j;
  10364.     i -= j;
  10365.   }
  10366.   return (size);
  10367. }
  10368.  
  10369. /* The following wrapper functions supply additional arguments to the VMS
  10370.    I/O routines to optimize performance with file handling.  The arguments
  10371.    are:
  10372.      "mbc=16" - Set multi-block count to 16 (use a 8192 byte buffer).
  10373.      "deq=64" - When extending the file, extend it in chunks of 32Kbytes.
  10374.      "fop=tef"- Truncate unused portions of file when closing file.
  10375.      "shr=nil"- Disallow file sharing while file is open.
  10376.  */
  10377.  
  10378. static FILE *
  10379. freopen (fname, type, oldfile)
  10380.      char *fname;
  10381.      char *type;
  10382.      FILE *oldfile;
  10383. {
  10384. #undef    freopen    /* Get back the REAL fopen routine */
  10385.   if (strcmp (type, "w") == 0)
  10386.     return freopen (fname, type, oldfile, "mbc=16", "deq=64", "fop=tef", "shr=nil");
  10387.   return freopen (fname, type, oldfile, "mbc=16");
  10388. }
  10389.  
  10390. static FILE *
  10391. fopen (fname, type)
  10392.      char *fname;
  10393.      char *type;
  10394. {
  10395. #undef fopen    /* Get back the REAL fopen routine */
  10396.   /* The gcc-vms-1.42 distribution's header files prototype fopen with two
  10397.      fixed arguments, which matches ANSI's specification but not VAXCRTL's
  10398.      pre-ANSI implementation.  This hack circumvents the mismatch problem.  */
  10399.   FILE *(*vmslib_fopen)() = (FILE *(*)()) fopen;
  10400.  
  10401.   if (*type == 'w')
  10402.     return (*vmslib_fopen) (fname, type, "mbc=32",
  10403.                 "deq=64", "fop=tef", "shr=nil");
  10404.   else
  10405.     return (*vmslib_fopen) (fname, type, "mbc=32");
  10406. }
  10407.  
  10408. static int 
  10409. open (fname, flags, prot)
  10410.      char *fname;
  10411.      int flags;
  10412.      int prot;
  10413. {
  10414. #undef open    /* Get back the REAL open routine */
  10415.   return open (fname, flags, prot, "mbc=16", "deq=64", "fop=tef");
  10416. }
  10417.  
  10418. /* Avoid run-time library bug, where copying M out of N+M characters with
  10419.    N >= 65535 results in VAXCRTL's strncat falling into an infinite loop.
  10420.    gcc-cpp exercises this particular bug.  [Fixed in V5.5-2's VAXCRTL.]  */
  10421.  
  10422. static char *
  10423. strncat (dst, src, cnt)
  10424.      char *dst;
  10425.      const char *src;
  10426.      unsigned cnt;
  10427. {
  10428.   register char *d = dst, *s = (char *) src;
  10429.   register int n = cnt;    /* convert to _signed_ type */
  10430.  
  10431.   while (*d) d++;    /* advance to end */
  10432.   while (--n >= 0)
  10433.     if (!(*d++ = *s++)) break;
  10434.   if (n < 0) *d = '\0';
  10435.   return dst;
  10436. }
  10437.  
  10438. /* more VMS hackery */
  10439. #include <fab.h>
  10440. #include <nam.h>
  10441.  
  10442. extern unsigned long sys$parse(), sys$search();
  10443.  
  10444. /* Work around another library bug.  If a file is located via a searchlist,
  10445.    and if the device it's on is not the same device as the one specified
  10446.    in the first element of that searchlist, then both stat() and fstat()
  10447.    will fail to return info about it.  `errno' will be set to EVMSERR, and
  10448.    `vaxc$errno' will be set to SS$_NORMAL due yet another bug in stat()!
  10449.    We can get around this by fully parsing the filename and then passing
  10450.    that absolute name to stat().
  10451.  
  10452.    Without this fix, we can end up failing to find header files, which is
  10453.    bad enough, but then compounding the problem by reporting the reason for
  10454.    failure as "normal successful completion."  */
  10455.  
  10456. #undef fstat    /* get back to library version */
  10457.  
  10458. static int
  10459. VMS_fstat (fd, statbuf)
  10460.      int fd;
  10461.      struct stat *statbuf;
  10462. {
  10463.   int result = fstat (fd, statbuf);
  10464.  
  10465.   if (result < 0)
  10466.     {
  10467.       FILE *fp;
  10468.       char nambuf[NAM$C_MAXRSS+1];
  10469.  
  10470.       if ((fp = fdopen (fd, "r")) != 0 && fgetname (fp, nambuf) != 0)
  10471.     result = VMS_stat (nambuf, statbuf);
  10472.       /* No fclose(fp) here; that would close(fd) as well.  */
  10473.     }
  10474.  
  10475.   return result;
  10476. }
  10477.  
  10478. static int
  10479. VMS_stat (name, statbuf)
  10480.      const char *name;
  10481.      struct stat *statbuf;
  10482. {
  10483.   int result = stat (name, statbuf);
  10484.  
  10485.   if (result < 0)
  10486.     {
  10487.       struct FAB fab;
  10488.       struct NAM nam;
  10489.       char exp_nam[NAM$C_MAXRSS+1],  /* expanded name buffer for sys$parse */
  10490.        res_nam[NAM$C_MAXRSS+1];  /* resultant name buffer for sys$search */
  10491.  
  10492.       fab = cc$rms_fab;
  10493.       fab.fab$l_fna = (char *) name;
  10494.       fab.fab$b_fns = (unsigned char) strlen (name);
  10495.       fab.fab$l_nam = (void *) &nam;
  10496.       nam = cc$rms_nam;
  10497.       nam.nam$l_esa = exp_nam,  nam.nam$b_ess = sizeof exp_nam - 1;
  10498.       nam.nam$l_rsa = res_nam,  nam.nam$b_rss = sizeof res_nam - 1;
  10499.       nam.nam$b_nop = NAM$M_PWD | NAM$M_NOCONCEAL;
  10500.       if (sys$parse (&fab) & 1)
  10501.     {
  10502.       if (sys$search (&fab) & 1)
  10503.         {
  10504.           res_nam[nam.nam$b_rsl] = '\0';
  10505.           result = stat (res_nam, statbuf);
  10506.         }
  10507.       /* Clean up searchlist context cached by the system.  */
  10508.       nam.nam$b_nop = NAM$M_SYNCHK;
  10509.       fab.fab$l_fna = 0,  fab.fab$b_fns = 0;
  10510.       (void) sys$parse (&fab);
  10511.     }
  10512.     }
  10513.  
  10514.   return result;
  10515. }
  10516. #endif /* VMS */
  10517.