OSDN Git Service

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