1 /* C Compatible Compiler Preprocessor (CCCP)
2 Copyright (C) 1986, 87, 89, 92-95, 1996 Free Software Foundation, Inc.
3 Written by Paul Rubin, June 1986
4 Adapted to ANSI C, Richard Stallman, Jan 1987
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
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.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.
21 In other words, you are welcome to use, share and improve this program.
22 You are forbidden to forbid anyone else to use, share and improve
23 what you give them. Help stamp out software-hoarding! */
25 typedef unsigned char U_CHAR
;
29 #include "../src/config.h"
37 /* The macro EMACS is defined when cpp is distributed as part of Emacs,
38 for the sake of machines with limited C compilers. */
41 #endif /* not EMACS */
43 #ifndef STANDARD_INCLUDE_DIR
44 #define STANDARD_INCLUDE_DIR "/usr/include"
47 #ifndef LOCAL_INCLUDE_DIR
48 #define LOCAL_INCLUDE_DIR "/usr/local/include"
53 /* By default, colon separates directories in a path. */
54 #ifndef PATH_SEPARATOR
55 #define PATH_SEPARATOR ':'
58 #include <sys/types.h>
64 /* The following symbols should be autoconfigured:
71 In the mean time, we'll get by with approximations based
72 on existing GCC configuration symbols. */
75 # ifndef HAVE_STDLIB_H
76 # define HAVE_STDLIB_H 1
78 # ifndef HAVE_UNISTD_H
79 # define HAVE_UNISTD_H 1
82 # define STDC_HEADERS 1
84 #endif /* defined (POSIX) */
86 #if defined (POSIX) || (defined (USG) && !defined (VMS))
88 # define HAVE_FCNTL_H 1
95 # if TIME_WITH_SYS_TIME
96 # include <sys/time.h>
100 # include <sys/time.h>
105 # include <sys/resource.h>
123 # define bcmp(a, b, n) memcmp (a, b, n)
126 # define bcopy(s, d, n) memcpy (d, s, n)
129 # define bzero(d, n) memset (d, 0, n)
131 #else /* !STDC_HEADERS */
135 # if !defined (BSTRING) && (defined (USG) || defined (VMS))
138 # define bcmp my_bcmp
151 # endif /* !defined (bcmp) */
154 # define bcopy my_bcopy
164 # endif /* !defined (bcopy) */
167 # define bzero my_bzero
171 register unsigned length
;
176 # endif /* !defined (bzero) */
178 # endif /* !defined (BSTRING) && (defined (USG) || defined (VMS)) */
179 #endif /* ! STDC_HEADERS */
181 #if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 6)
182 # define __attribute__(x)
186 # if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
187 # define PROTO(ARGS) ARGS
189 # define PROTO(ARGS) ()
193 #if defined (__STDC__) && defined (HAVE_VPRINTF)
195 # define VA_START(va_list, var) va_start (va_list, var)
196 # define PRINTF_ALIST(msg) char *msg, ...
197 # define PRINTF_DCL(msg)
198 # define PRINTF_PROTO(ARGS, m, n) PROTO (ARGS) __attribute__ ((format (printf, m, n)))
200 # include <varargs.h>
201 # define VA_START(va_list, var) va_start (va_list)
202 # define PRINTF_ALIST(msg) msg, va_alist
203 # define PRINTF_DCL(msg) char *msg; va_dcl
204 # define PRINTF_PROTO(ARGS, m, n) () __attribute__ ((format (printf, m, n)))
205 # define vfprintf(file, msg, args) \
207 char *a0 = va_arg(args, char *); \
208 char *a1 = va_arg(args, char *); \
209 char *a2 = va_arg(args, char *); \
210 char *a3 = va_arg(args, char *); \
211 fprintf (file, msg, a0, a1, a2, a3); \
215 #define PRINTF_PROTO_1(ARGS) PRINTF_PROTO(ARGS, 1, 2)
216 #define PRINTF_PROTO_2(ARGS) PRINTF_PROTO(ARGS, 2, 3)
217 #define PRINTF_PROTO_3(ARGS) PRINTF_PROTO(ARGS, 3, 4)
223 /* VMS-specific definitions */
226 #define O_RDONLY 0 /* Open arg for Read/Only */
227 #define O_WRONLY 1 /* Open arg for Write/Only */
228 #define read(fd,buf,size) VMS_read (fd,buf,size)
229 #define write(fd,buf,size) VMS_write (fd,buf,size)
230 #define open(fname,mode,prot) VMS_open (fname,mode,prot)
231 #define fopen(fname,mode) VMS_fopen (fname,mode)
232 #define freopen(fname,mode,ofile) VMS_freopen (fname,mode,ofile)
233 #define fstat(fd,stbuf) VMS_fstat (fd,stbuf)
234 static int VMS_fstat (), VMS_stat ();
235 static int VMS_read ();
236 static int VMS_write ();
237 static int VMS_open ();
238 static FILE * VMS_fopen ();
239 static FILE * VMS_freopen ();
240 static void hack_vms_include_specification ();
241 #define INO_T_EQ(a, b) (!bcmp((char *) &(a), (char *) &(b), sizeof (a)))
242 #define INO_T_HASH(a) 0
243 #define INCLUDE_LEN_FUDGE 12 /* leave room for VMS syntax conversion */
245 #define BSTRING /* VMS/GCC supplies the bstring routines */
246 #endif /* __GNUC__ */
255 #define MIN(X,Y) ((X) < (Y) ? (X) : (Y))
256 #define MAX(X,Y) ((X) > (Y) ? (X) : (Y))
258 /* Find the largest host integer type and set its size and type.
259 Don't blindly use `long'; on some crazy hosts it is shorter than `int'. */
261 #ifndef HOST_BITS_PER_WIDE_INT
263 #if HOST_BITS_PER_LONG > HOST_BITS_PER_INT
264 #define HOST_BITS_PER_WIDE_INT HOST_BITS_PER_LONG
265 #define HOST_WIDE_INT long
267 #define HOST_BITS_PER_WIDE_INT HOST_BITS_PER_INT
268 #define HOST_WIDE_INT int
274 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
278 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
282 #define INO_T_EQ(a, b) ((a) == (b))
286 #define INO_T_HASH(a) (a)
289 /* Define a generic NULL if one hasn't already been defined. */
296 #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
297 #define GENERIC_PTR void *
299 #define GENERIC_PTR char *
304 #define NULL_PTR ((GENERIC_PTR) 0)
307 #ifndef INCLUDE_LEN_FUDGE
308 #define INCLUDE_LEN_FUDGE 0
311 /* External declarations. */
313 extern char *version_string
;
315 #ifndef HAVE_STRERROR
318 extern const char *const sys_errlist
[];
320 extern char *sys_errlist
[];
322 #else /* HAVE_STRERROR */
326 char *strerror (int,...);
328 HOST_WIDE_INT parse_escape
PROTO((char **, HOST_WIDE_INT
));
329 HOST_WIDE_INT parse_c_expression
PROTO((char *));
335 /* Name under which this program was invoked. */
337 static char *progname
;
339 /* Nonzero means use extra default include directories for C++. */
341 static int cplusplus
;
343 /* Nonzero means handle cplusplus style comments */
345 static int cplusplus_comments
;
347 /* Nonzero means handle #import, for objective C. */
351 /* Nonzero means this is an assembly file, and allow
352 unknown directives, which could be comments. */
356 /* Current maximum length of directory names in the search path
357 for include files. (Altered as we get more of them.) */
359 static int max_include_len
;
361 /* Nonzero means turn NOTREACHED into #pragma NOTREACHED etc */
363 static int for_lint
= 0;
365 /* Nonzero means copy comments into the output file. */
367 static int put_out_comments
= 0;
369 /* Nonzero means don't process the ANSI trigraph sequences. */
371 static int no_trigraphs
= 0;
373 /* Nonzero means print the names of included files rather than
374 the preprocessed output. 1 means just the #include "...",
375 2 means #include <...> as well. */
377 static int print_deps
= 0;
379 /* Nonzero if missing .h files in -M output are assumed to be generated
380 files and not errors. */
382 static int print_deps_missing_files
= 0;
384 /* Nonzero means print names of header files (-H). */
386 static int print_include_names
= 0;
388 /* Nonzero means don't output line number information. */
390 static int no_line_directives
;
392 /* Nonzero means output the text in failing conditionals,
393 inside #failed ... #endfailed. */
395 static int output_conditionals
;
397 /* dump_only means inhibit output of the preprocessed text
398 and instead output the definitions of all user-defined
399 macros in a form suitable for use as input to cccp.
400 dump_names means pass #define and the macro name through to output.
401 dump_definitions means pass the whole definition (plus #define) through
404 static enum {dump_none
, dump_only
, dump_names
, dump_definitions
}
405 dump_macros
= dump_none
;
407 /* Nonzero means pass all #define and #undef directives which we actually
408 process through to the output stream. This feature is used primarily
409 to allow cc1 to record the #defines and #undefs for the sake of
410 debuggers which understand about preprocessor macros, but it may
411 also be useful with -E to figure out how symbols are defined, and
412 where they are defined. */
413 static int debug_output
= 0;
415 /* Nonzero indicates special processing used by the pcp program. The
416 special effects of this mode are:
418 Inhibit all macro expansion, except those inside #if directives.
420 Process #define directives normally, and output their contents
423 Output preconditions to pcp_outfile indicating all the relevant
424 preconditions for use of this file in a later cpp run.
426 static FILE *pcp_outfile
;
428 /* Nonzero means we are inside an IF during a -pcp run. In this mode
429 macro expansion is done, and preconditions are output for all macro
430 uses requiring them. */
431 static int pcp_inside_if
;
433 /* Nonzero means never to include precompiled files.
434 This is 1 since there's no way now to make precompiled files,
435 so it's not worth testing for them. */
436 static int no_precomp
= 1;
438 /* Nonzero means give all the error messages the ANSI standard requires. */
442 /* Nonzero means try to make failure to fit ANSI C an error. */
444 static int pedantic_errors
;
446 /* Nonzero means don't print warning messages. -w. */
448 static int inhibit_warnings
= 0;
450 /* Nonzero means warn if slash-star appears in a slash-star comment,
451 or if newline-backslash appears in a slash-slash comment. */
453 static int warn_comments
;
455 /* Nonzero means warn if a macro argument is (or would be)
456 stringified with -traditional. */
458 static int warn_stringify
;
460 /* Nonzero means warn if there are any trigraphs. */
462 static int warn_trigraphs
;
464 /* Nonzero means warn if #import is used. */
466 static int warn_import
= 1;
468 /* Nonzero means turn warnings into errors. */
470 static int warnings_are_errors
;
472 /* Nonzero means try to imitate old fashioned non-ANSI preprocessor. */
476 /* Nonzero causes output not to be done,
477 but directives such as #define that have side effects
480 static int no_output
;
482 /* Nonzero means this file was included with a -imacros or -include
483 command line and should not be recorded as an include file. */
485 static int no_record_file
;
487 /* Nonzero means that we have finished processing the command line options.
488 This flag is used to decide whether or not to issue certain errors
491 static int done_initializing
= 0;
493 /* Line where a newline was first seen in a string constant. */
495 static int multiline_string_line
= 0;
497 /* I/O buffer structure.
498 The `fname' field is nonzero for source files and #include files
499 and for the dummy text used for -D and -U.
500 It is zero for rescanning results of macro expansion
501 and for expanding macro arguments. */
502 #define INPUT_STACK_MAX 400
503 static struct file_buf
{
505 /* Filename specified with #line directive. */
507 /* Include file description. */
508 struct include_file
*inc
;
509 /* Record where in the search path this file was found.
510 For #include_next. */
511 struct file_name_list
*dir
;
516 /* Macro that this level is the expansion of.
517 Included so that we can reenable the macro
518 at the end of this level. */
519 struct hashnode
*macro
;
520 /* Value of if_stack at start of this file.
521 Used to prohibit unmatched #endif (etc) in an include file. */
522 struct if_stack
*if_stack
;
523 /* Object to be freed at end of input at this level. */
525 /* True if this is a header file included using <FILENAME>. */
526 char system_header_p
;
527 } instack
[INPUT_STACK_MAX
];
529 static int last_error_tick
; /* Incremented each time we print it. */
530 static int input_file_stack_tick
; /* Incremented when the status changes. */
532 /* Current nesting level of input sources.
533 `instack[indepth]' is the level currently being read. */
534 static int indepth
= -1;
535 #define CHECK_DEPTH(code) \
536 if (indepth >= (INPUT_STACK_MAX - 1)) \
538 error_with_line (line_for_error (instack[indepth].lineno), \
539 "macro or `#include' recursion too deep"); \
543 /* Current depth in #include directives that use <...>. */
544 static int system_include_depth
= 0;
546 typedef struct file_buf FILE_BUF
;
548 /* The output buffer. Its LENGTH field is the amount of room allocated
549 for the buffer, not the number of chars actually present. To get
550 that, subtract outbuf.buf from outbuf.bufp. */
552 #define OUTBUF_SIZE 10 /* initial size of output buffer */
553 static FILE_BUF outbuf
;
555 /* Grow output buffer OBUF points at
556 so it can hold at least NEEDED more chars. */
558 #define check_expand(OBUF, NEEDED) \
559 (((OBUF)->length - ((OBUF)->bufp - (OBUF)->buf) <= (NEEDED)) \
560 ? grow_outbuf ((OBUF), (NEEDED)) : 0)
562 struct file_name_list
564 struct file_name_list
*next
;
565 /* If the following is 1, it is a C-language system include
567 int c_system_include_path
;
568 /* Mapping of file names for this directory. */
569 struct file_name_map
*name_map
;
570 /* Non-zero if name_map is valid. */
572 /* The include directory status. */
574 /* The include prefix: "" denotes the working directory,
575 otherwise fname must end in '/'.
576 The actual size is dynamically allocated. */
580 /* #include "file" looks in source file dir, then stack. */
581 /* #include <file> just looks in the stack. */
582 /* -I directories are added to the end, then the defaults are added. */
584 static struct default_include
{
585 char *fname
; /* The name of the directory. */
586 int cplusplus
; /* Only look here if we're compiling C++. */
587 int cxx_aware
; /* Includes in this directory don't need to
588 be wrapped in extern "C" when compiling
590 } include_defaults_array
[]
591 #ifdef INCLUDE_DEFAULTS
595 /* Pick up GNU C++ specific include files. */
596 { GPLUSPLUS_INCLUDE_DIR
, 1, 1 },
597 { OLD_GPLUSPLUS_INCLUDE_DIR
, 1, 1 },
599 /* This is the dir for fixincludes. Put it just before
600 the files that we fix. */
601 { GCC_INCLUDE_DIR
, 0, 0 },
602 /* For cross-compilation, this dir name is generated
603 automatically in Makefile.in. */
604 { CROSS_INCLUDE_DIR
, 0, 0 },
605 /* This is another place that the target system's headers might be. */
606 { TOOL_INCLUDE_DIR
, 0, 0 },
607 #else /* not CROSS_COMPILE */
608 /* This should be /usr/local/include and should come before
609 the fixincludes-fixed header files. */
610 { LOCAL_INCLUDE_DIR
, 0, 1 },
611 /* This is here ahead of GCC_INCLUDE_DIR because assert.h goes here.
612 Likewise, behind LOCAL_INCLUDE_DIR, where glibc puts its assert.h. */
613 { TOOL_INCLUDE_DIR
, 0, 0 },
614 /* This is the dir for fixincludes. Put it just before
615 the files that we fix. */
616 { GCC_INCLUDE_DIR
, 0, 0 },
617 /* Some systems have an extra dir of include files. */
618 #ifdef SYSTEM_INCLUDE_DIR
619 { SYSTEM_INCLUDE_DIR
, 0, 0 },
621 { STANDARD_INCLUDE_DIR
, 0, 0 },
622 #endif /* not CROSS_COMPILE */
625 #endif /* no INCLUDE_DEFAULTS */
627 /* The code looks at the defaults through this pointer, rather than through
628 the constant structure above. This pointer gets changed if an environment
629 variable specifies other defaults. */
630 static struct default_include
*include_defaults
= include_defaults_array
;
632 static struct file_name_list
*include
= 0; /* First dir to search */
633 /* First dir to search for <file> */
634 /* This is the first element to use for #include <...>.
635 If it is 0, use the entire chain for such includes. */
636 static struct file_name_list
*first_bracket_include
= 0;
637 /* This is the first element in the chain that corresponds to
638 a directory of system header files. */
639 static struct file_name_list
*first_system_include
= 0;
640 static struct file_name_list
*last_include
= 0; /* Last in chain */
642 /* Chain of include directories to put at the end of the other chain. */
643 static struct file_name_list
*after_include
= 0;
644 static struct file_name_list
*last_after_include
= 0; /* Last in chain */
646 /* Chain to put at the start of the system include files. */
647 static struct file_name_list
*before_system
= 0;
648 static struct file_name_list
*last_before_system
= 0; /* Last in chain */
650 /* Directory prefix that should replace `/usr' in the standard
651 include file directories. */
652 static char *include_prefix
;
654 /* Maintain and search list of included files. */
656 struct include_file
{
657 struct include_file
*next
; /* for include_hashtab */
658 struct include_file
*next_ino
; /* for include_ino_hashtab */
660 /* If the following is the empty string, it means #pragma once
661 was seen in this include file, or #import was applied to the file.
662 Otherwise, if it is nonzero, it is a macro name.
663 Don't include the file again if that macro is defined. */
664 U_CHAR
*control_macro
;
665 /* Nonzero if the dependency on this include file has been output. */
670 /* Hash tables of files already included with #include or #import.
671 include_hashtab is by full name; include_ino_hashtab is by inode number. */
673 #define INCLUDE_HASHSIZE 61
674 static struct include_file
*include_hashtab
[INCLUDE_HASHSIZE
];
675 static struct include_file
*include_ino_hashtab
[INCLUDE_HASHSIZE
];
677 /* Global list of strings read in from precompiled files. This list
678 is kept in the order the strings are read in, with new strings being
679 added at the end through stringlist_tailp. We use this list to output
680 the strings at the end of the run.
682 static STRINGDEF
*stringlist
;
683 static STRINGDEF
**stringlist_tailp
= &stringlist
;
686 /* Structure returned by create_definition */
687 typedef struct macrodef MACRODEF
;
690 struct definition
*defn
;
695 enum sharp_token_type
{
696 NO_SHARP_TOKEN
= 0, /* token not present */
698 SHARP_TOKEN
= '#', /* token spelled with # only */
699 WHITE_SHARP_TOKEN
, /* token spelled with # and white space */
701 PERCENT_COLON_TOKEN
= '%', /* token spelled with %: only */
702 WHITE_PERCENT_COLON_TOKEN
/* token spelled with %: and white space */
705 /* Structure allocated for every #define. For a simple replacement
708 nargs = -1, the `pattern' list is null, and the expansion is just
709 the replacement text. Nargs = 0 means a functionlike macro with no args,
711 #define getchar() getc (stdin) .
712 When there are args, the expansion is the replacement text with the
713 args squashed out, and the reflist is a list describing how to
714 build the output from the input: e.g., "3 chars, then the 1st arg,
715 then 9 chars, then the 3rd arg, then 0 chars, then the 2nd arg".
716 The chars here come from the expansion. Whatever is left of the
717 expansion after the last arg-occurrence is copied after that arg.
718 Note that the reflist can be arbitrarily long---
719 its length depends on the number of times the arguments appear in
720 the replacement text, not how many args there are. Example:
721 #define f(x) x+x+x+x+x+x+x would have replacement text "++++++" and
723 { (0, 1), (1, 1), (1, 1), ..., (1, 1), NULL }
724 where (x, y) means (nchars, argno). */
726 typedef struct definition DEFINITION
;
729 int length
; /* length of expansion string */
730 int predefined
; /* True if the macro was builtin or */
731 /* came from the command line */
733 int line
; /* Line number of definition */
734 char *file
; /* File of definition */
735 char rest_args
; /* Nonzero if last arg. absorbs the rest */
737 struct reflist
*next
;
739 enum sharp_token_type stringify
; /* set if a # operator before arg */
740 enum sharp_token_type raw_before
; /* set if a ## operator before arg */
741 enum sharp_token_type raw_after
; /* set if a ## operator after arg */
743 char rest_args
; /* Nonzero if this arg. absorbs the rest */
744 int nchars
; /* Number of literal chars to copy before
745 this arg occurrence. */
746 int argno
; /* Number of arg to substitute (origin-0) */
749 /* Names of macro args, concatenated in reverse order
750 with comma-space between them.
751 The only use of this is that we warn on redefinition
752 if this differs between the old and new definitions. */
757 /* different kinds of things that can appear in the value field
758 of a hash node. Actually, this may be useless now. */
766 * special extension string that can be added to the last macro argument to
767 * allow it to absorb the "rest" of the arguments when expanded. Ex:
768 * #define wow(a, b...) process (b, a, b)
769 * { wow (1, 2, 3); } -> { process (2, 3, 1, 2, 3); }
770 * { wow (one, two); } -> { process (two, one, two); }
771 * if this "rest_arg" is used with the concat token '##' and if it is not
772 * supplied then the token attached to with ## will not be outputted. Ex:
773 * #define wow (a, b...) process (b ## , a, ## b)
774 * { wow (1, 2); } -> { process (2, 1, 2); }
775 * { wow (one); } -> { process (one); {
777 static char rest_extension
[] = "...";
778 #define REST_EXTENSION_LENGTH (sizeof (rest_extension) - 1)
780 /* The structure of a node in the hash table. The hash table
781 has entries for all tokens defined by #define directives (type T_MACRO),
782 plus some special tokens like __LINE__ (these each have their own
783 type, and the appropriate code is run when that type of node is seen.
784 It does not contain control words like "#define", which are recognized
785 by a separate piece of code. */
787 /* different flavors of hash nodes --- also used in keyword table */
789 T_DEFINE
= 1, /* the `#define' keyword */
790 T_INCLUDE
, /* the `#include' keyword */
791 T_INCLUDE_NEXT
, /* the `#include_next' keyword */
792 T_IMPORT
, /* the `#import' keyword */
793 T_IFDEF
, /* the `#ifdef' keyword */
794 T_IFNDEF
, /* the `#ifndef' keyword */
795 T_IF
, /* the `#if' keyword */
796 T_ELSE
, /* `#else' */
797 T_PRAGMA
, /* `#pragma' */
798 T_ELIF
, /* `#elif' */
799 T_UNDEF
, /* `#undef' */
800 T_LINE
, /* `#line' */
801 T_ERROR
, /* `#error' */
802 T_WARNING
, /* `#warning' */
803 T_ENDIF
, /* `#endif' */
804 T_SCCS
, /* `#sccs', used on system V. */
805 T_IDENT
, /* `#ident', used on system V. */
806 T_ASSERT
, /* `#assert', taken from system V. */
807 T_UNASSERT
, /* `#unassert', taken from system V. */
808 T_SPECLINE
, /* special symbol `__LINE__' */
809 T_DATE
, /* `__DATE__' */
810 T_FILE
, /* `__FILE__' */
811 T_BASE_FILE
, /* `__BASE_FILE__' */
812 T_INCLUDE_LEVEL
, /* `__INCLUDE_LEVEL__' */
813 T_VERSION
, /* `__VERSION__' */
814 T_SIZE_TYPE
, /* `__SIZE_TYPE__' */
815 T_PTRDIFF_TYPE
, /* `__PTRDIFF_TYPE__' */
816 T_WCHAR_TYPE
, /* `__WCHAR_TYPE__' */
817 T_USER_LABEL_PREFIX_TYPE
, /* `__USER_LABEL_PREFIX__' */
818 T_REGISTER_PREFIX_TYPE
, /* `__REGISTER_PREFIX__' */
819 T_IMMEDIATE_PREFIX_TYPE
, /* `__IMMEDIATE_PREFIX__' */
820 T_TIME
, /* `__TIME__' */
821 T_CONST
, /* Constant value, used by `__STDC__' */
822 T_MACRO
, /* macro defined by `#define' */
823 T_DISABLED
, /* macro temporarily turned off for rescan */
824 T_SPEC_DEFINED
, /* special `defined' macro for use in #if statements */
825 T_PCSTRING
, /* precompiled string (hashval is KEYDEF *) */
826 T_UNUSED
/* Used for something not defined. */
830 struct hashnode
*next
; /* double links for easy deletion */
831 struct hashnode
*prev
;
832 struct hashnode
**bucket_hdr
; /* also, a back pointer to this node's hash
833 chain is kept, in case the node is the head
834 of the chain and gets deleted. */
835 enum node_type type
; /* type of special token */
836 int length
; /* length of token, for quick comparison */
837 U_CHAR
*name
; /* the actual name */
838 union hashval value
; /* pointer to expansion, or whatever */
841 typedef struct hashnode HASHNODE
;
843 /* Some definitions for the hash table. The hash function MUST be
844 computed as shown in hashf () below. That is because the rescan
845 loop computes the hash value `on the fly' for most tokens,
846 in order to avoid the overhead of a lot of procedure calls to
847 the hashf () function. Hashf () only exists for the sake of
848 politeness, for use when speed isn't so important. */
850 #define HASHSIZE 1403
851 static HASHNODE
*hashtab
[HASHSIZE
];
852 #define HASHSTEP(old, c) ((old << 2) + c)
853 #define MAKE_POS(v) (v & 0x7fffffff) /* make number positive */
855 /* Symbols to predefine. */
857 #ifdef CPP_PREDEFINES
858 static char *predefs
= CPP_PREDEFINES
;
860 static char *predefs
= "";
863 /* We let tm.h override the types used here, to handle trivial differences
864 such as the choice of unsigned int or long unsigned int for size_t.
865 When machines start needing nontrivial differences in the size type,
866 it would be best to do something here to figure out automatically
867 from other information what type to use. */
869 /* The string value for __SIZE_TYPE__. */
872 #define SIZE_TYPE "long unsigned int"
875 /* The string value for __PTRDIFF_TYPE__. */
878 #define PTRDIFF_TYPE "long int"
881 /* The string value for __WCHAR_TYPE__. */
884 #define WCHAR_TYPE "int"
886 char * wchar_type
= WCHAR_TYPE
;
889 /* The string value for __USER_LABEL_PREFIX__ */
891 #ifndef USER_LABEL_PREFIX
892 #define USER_LABEL_PREFIX ""
895 /* The string value for __REGISTER_PREFIX__ */
897 #ifndef REGISTER_PREFIX
898 #define REGISTER_PREFIX ""
901 /* The string value for __IMMEDIATE_PREFIX__ */
903 #ifndef IMMEDIATE_PREFIX
904 #define IMMEDIATE_PREFIX ""
907 /* In the definition of a #assert name, this structure forms
908 a list of the individual values asserted.
909 Each value is itself a list of "tokens".
910 These are strings that are compared by name. */
912 struct tokenlist_list
{
913 struct tokenlist_list
*next
;
914 struct arglist
*tokens
;
917 struct assertion_hashnode
{
918 struct assertion_hashnode
*next
; /* double links for easy deletion */
919 struct assertion_hashnode
*prev
;
920 /* also, a back pointer to this node's hash
921 chain is kept, in case the node is the head
922 of the chain and gets deleted. */
923 struct assertion_hashnode
**bucket_hdr
;
924 int length
; /* length of token, for quick comparison */
925 U_CHAR
*name
; /* the actual name */
926 /* List of token-sequences. */
927 struct tokenlist_list
*value
;
930 typedef struct assertion_hashnode ASSERTION_HASHNODE
;
932 /* Some definitions for the hash table. The hash function MUST be
933 computed as shown in hashf below. That is because the rescan
934 loop computes the hash value `on the fly' for most tokens,
935 in order to avoid the overhead of a lot of procedure calls to
936 the hashf function. hashf only exists for the sake of
937 politeness, for use when speed isn't so important. */
939 #define ASSERTION_HASHSIZE 37
940 static ASSERTION_HASHNODE
*assertion_hashtab
[ASSERTION_HASHSIZE
];
942 /* Nonzero means inhibit macroexpansion of what seem to be
943 assertion tests, in rescan. For #if. */
944 static int assertions_flag
;
946 /* `struct directive' defines one #-directive, including how to handle it. */
948 #define DO_PROTO PROTO((U_CHAR *, U_CHAR *, FILE_BUF *, struct directive *))
951 int length
; /* Length of name */
952 int (*func
) DO_PROTO
; /* Function to handle directive */
953 char *name
; /* Name of directive */
954 enum node_type type
; /* Code which describes which directive. */
955 char angle_brackets
; /* Nonzero => <...> is special. */
956 char traditional_comments
; /* Nonzero: keep comments if -traditional. */
957 char pass_thru
; /* Copy preprocessed directive to output file. */
960 /* These functions are declared to return int instead of void since they
961 are going to be placed in the table and some old compilers have trouble with
962 pointers to functions returning void. */
964 static int do_assert DO_PROTO
;
965 static int do_define DO_PROTO
;
966 static int do_elif DO_PROTO
;
967 static int do_else DO_PROTO
;
968 static int do_endif DO_PROTO
;
969 static int do_error DO_PROTO
;
970 static int do_ident DO_PROTO
;
971 static int do_if DO_PROTO
;
972 static int do_include DO_PROTO
;
973 static int do_line DO_PROTO
;
974 static int do_pragma DO_PROTO
;
975 #ifdef SCCS_DIRECTIVE
976 static int do_sccs DO_PROTO
;
978 static int do_unassert DO_PROTO
;
979 static int do_undef DO_PROTO
;
980 static int do_warning DO_PROTO
;
981 static int do_xifdef DO_PROTO
;
983 /* Here is the actual list of #-directives, most-often-used first. */
985 static struct directive directive_table
[] = {
986 { 6, do_define
, "define", T_DEFINE
, 0, 1},
987 { 2, do_if
, "if", T_IF
},
988 { 5, do_xifdef
, "ifdef", T_IFDEF
},
989 { 6, do_xifdef
, "ifndef", T_IFNDEF
},
990 { 5, do_endif
, "endif", T_ENDIF
},
991 { 4, do_else
, "else", T_ELSE
},
992 { 4, do_elif
, "elif", T_ELIF
},
993 { 4, do_line
, "line", T_LINE
},
994 { 7, do_include
, "include", T_INCLUDE
, 1},
995 { 12, do_include
, "include_next", T_INCLUDE_NEXT
, 1},
996 { 6, do_include
, "import", T_IMPORT
, 1},
997 { 5, do_undef
, "undef", T_UNDEF
},
998 { 5, do_error
, "error", T_ERROR
},
999 { 7, do_warning
, "warning", T_WARNING
},
1000 #ifdef SCCS_DIRECTIVE
1001 { 4, do_sccs
, "sccs", T_SCCS
},
1003 { 6, do_pragma
, "pragma", T_PRAGMA
, 0, 0, 1},
1004 { 5, do_ident
, "ident", T_IDENT
},
1005 { 6, do_assert
, "assert", T_ASSERT
},
1006 { 8, do_unassert
, "unassert", T_UNASSERT
},
1007 { -1, 0, "", T_UNUSED
},
1010 /* When a directive handler is called,
1011 this points to the # (or the : of the %:) that started the directive. */
1012 U_CHAR
*directive_start
;
1014 /* table to tell if char can be part of a C identifier. */
1015 U_CHAR is_idchar
[256];
1016 /* table to tell if char can be first char of a c identifier. */
1017 U_CHAR is_idstart
[256];
1018 /* table to tell if c is horizontal space. */
1019 U_CHAR is_hor_space
[256];
1020 /* table to tell if c is horizontal or vertical space. */
1021 static U_CHAR is_space
[256];
1022 /* names of some characters */
1023 static char *char_name
[256];
1025 #define SKIP_WHITE_SPACE(p) do { while (is_hor_space[*p]) p++; } while (0)
1026 #define SKIP_ALL_WHITE_SPACE(p) do { while (is_space[*p]) p++; } while (0)
1028 static int errors
= 0; /* Error counter for exit code */
1030 /* Name of output file, for error messages. */
1031 static char *out_fname
;
1033 /* Zero means dollar signs are punctuation.
1034 -$ stores 0; -traditional may store 1. Default is 1 for VMS, 0 otherwise.
1035 This must be 0 for correct processing of this ANSI C program:
1037 #define lose(b) foo (b)
1040 static int dollars_in_ident
;
1041 #ifndef DOLLARS_IN_IDENTIFIERS
1042 #define DOLLARS_IN_IDENTIFIERS 1
1046 /* Stack of conditionals currently in progress
1047 (including both successful and failing conditionals). */
1050 struct if_stack
*next
; /* for chaining to the next stack frame */
1051 char *fname
; /* copied from input when frame is made */
1052 int lineno
; /* similarly */
1053 int if_succeeded
; /* true if a leg of this if-group
1054 has been passed through rescan */
1055 U_CHAR
*control_macro
; /* For #ifndef at start of file,
1056 this is the macro name tested. */
1057 enum node_type type
; /* type of last directive seen in this group */
1059 typedef struct if_stack IF_STACK_FRAME
;
1060 static IF_STACK_FRAME
*if_stack
= NULL
;
1062 /* Buffer of -M output. */
1063 static char *deps_buffer
;
1065 /* Number of bytes allocated in above. */
1066 static int deps_allocated_size
;
1068 /* Number of bytes used. */
1069 static int deps_size
;
1071 /* Number of bytes since the last newline. */
1072 static int deps_column
;
1074 /* Nonzero means -I- has been seen,
1075 so don't look for #include "foo" the source-file directory. */
1076 static int ignore_srcdir
;
1078 static int safe_read
PROTO((int, char *, int));
1079 static void safe_write
PROTO((int, char *, int));
1081 int main
PROTO((int, char **));
1083 static void path_include
PROTO((char *));
1085 static U_CHAR
*index0
PROTO((U_CHAR
*, int, size_t));
1087 static void trigraph_pcp
PROTO((FILE_BUF
*));
1089 static void newline_fix
PROTO((U_CHAR
*));
1090 static void name_newline_fix
PROTO((U_CHAR
*));
1092 static char *get_lintcmd
PROTO((U_CHAR
*, U_CHAR
*, U_CHAR
**, int *, int *));
1094 static void rescan
PROTO((FILE_BUF
*, int));
1096 static FILE_BUF expand_to_temp_buffer
PROTO((U_CHAR
*, U_CHAR
*, int, int));
1098 static int handle_directive
PROTO((FILE_BUF
*, FILE_BUF
*));
1100 static struct tm
*timestamp
PROTO((void));
1101 static void special_symbol
PROTO((HASHNODE
*, FILE_BUF
*));
1103 static int is_system_include
PROTO((char *));
1104 static char *base_name
PROTO((char *));
1105 static int absolute_filename
PROTO((char *));
1106 static size_t simplify_filename
PROTO((char *));
1108 static char *read_filename_string
PROTO((int, FILE *));
1109 static struct file_name_map
*read_name_map
PROTO((char *));
1110 static int open_include_file
PROTO((char *, struct file_name_list
*, U_CHAR
*, struct include_file
**));
1111 static char *remap_include_file
PROTO((char *, struct file_name_list
*));
1112 static int lookup_ino_include
PROTO((struct include_file
*));
1114 static void finclude
PROTO((int, struct include_file
*, FILE_BUF
*, int, struct file_name_list
*));
1115 static void record_control_macro
PROTO((struct include_file
*, U_CHAR
*));
1117 static char *check_precompiled
PROTO((int, struct stat
*, char *, char **));
1118 static int check_preconditions
PROTO((char *));
1119 static void pcfinclude
PROTO((U_CHAR
*, U_CHAR
*, U_CHAR
*, FILE_BUF
*));
1120 static void pcstring_used
PROTO((HASHNODE
*));
1121 static void write_output
PROTO((void));
1122 static void pass_thru_directive
PROTO((U_CHAR
*, U_CHAR
*, FILE_BUF
*, struct directive
*));
1124 static MACRODEF create_definition
PROTO((U_CHAR
*, U_CHAR
*, FILE_BUF
*));
1126 static int check_macro_name
PROTO((U_CHAR
*, char *));
1127 static int compare_defs
PROTO((DEFINITION
*, DEFINITION
*));
1128 static int comp_def_part
PROTO((int, U_CHAR
*, int, U_CHAR
*, int, int));
1130 static DEFINITION
*collect_expansion
PROTO((U_CHAR
*, U_CHAR
*, int, struct arglist
*));
1132 int check_assertion
PROTO((U_CHAR
*, int, int, struct arglist
*));
1133 static int compare_token_lists
PROTO((struct arglist
*, struct arglist
*));
1135 static struct arglist
*read_token_list
PROTO((U_CHAR
**, U_CHAR
*, int *));
1136 static void free_token_list
PROTO((struct arglist
*));
1138 static ASSERTION_HASHNODE
*assertion_install
PROTO((U_CHAR
*, int, int));
1139 static ASSERTION_HASHNODE
*assertion_lookup
PROTO((U_CHAR
*, int, int));
1140 static void delete_assertion
PROTO((ASSERTION_HASHNODE
*));
1142 static void do_once
PROTO((void));
1144 static HOST_WIDE_INT eval_if_expression
PROTO((U_CHAR
*, int));
1145 static void conditional_skip
PROTO((FILE_BUF
*, int, enum node_type
, U_CHAR
*, FILE_BUF
*));
1146 static void skip_if_group
PROTO((FILE_BUF
*, int, FILE_BUF
*));
1147 static void validate_else
PROTO((U_CHAR
*, U_CHAR
*));
1149 static U_CHAR
*skip_to_end_of_comment
PROTO((FILE_BUF
*, int *, int));
1150 static U_CHAR
*skip_quoted_string
PROTO((U_CHAR
*, U_CHAR
*, int, int *, int *, int *));
1151 static char *quote_string
PROTO((char *, char *));
1152 static U_CHAR
*skip_paren_group
PROTO((FILE_BUF
*));
1154 /* Last arg to output_line_directive. */
1155 enum file_change_code
{same_file
, enter_file
, leave_file
};
1156 static void output_line_directive
PROTO((FILE_BUF
*, FILE_BUF
*, int, enum file_change_code
));
1158 static void macroexpand
PROTO((HASHNODE
*, FILE_BUF
*));
1161 static char *macarg
PROTO((struct argdata
*, int));
1163 static U_CHAR
*macarg1
PROTO((U_CHAR
*, U_CHAR
*, int *, int *, int *, int));
1165 static int discard_comments
PROTO((U_CHAR
*, int, int));
1167 static int change_newlines
PROTO((U_CHAR
*, int));
1169 char *my_strerror
PROTO((int));
1170 void error
PRINTF_PROTO_1((char *, ...));
1171 static void verror
PROTO((char *, va_list));
1172 static void error_from_errno
PROTO((char *));
1173 void warning
PRINTF_PROTO_1((char *, ...));
1174 static void vwarning
PROTO((char *, va_list));
1175 static void error_with_line
PRINTF_PROTO_2((int, char *, ...));
1176 static void verror_with_line
PROTO((int, char *, va_list));
1177 static void vwarning_with_line
PROTO((int, char *, va_list));
1178 static void warning_with_line
PRINTF_PROTO_2((int, char *, ...));
1179 void pedwarn
PRINTF_PROTO_1((char *, ...));
1180 void pedwarn_with_line
PRINTF_PROTO_2((int, char *, ...));
1181 static void pedwarn_with_file_and_line
PRINTF_PROTO_3((char *, int, char *, ...));
1183 static void print_containing_files
PROTO((void));
1185 static int line_for_error
PROTO((int));
1186 static int grow_outbuf
PROTO((FILE_BUF
*, int));
1188 static HASHNODE
*install
PROTO((U_CHAR
*, int, enum node_type
, char *, int));
1189 HASHNODE
*lookup
PROTO((U_CHAR
*, int, int));
1190 static void delete_macro
PROTO((HASHNODE
*));
1191 static int hashf
PROTO((U_CHAR
*, int, int));
1193 static void dump_single_macro
PROTO((HASHNODE
*, FILE *));
1194 static void dump_all_macros
PROTO((void));
1195 static void dump_defn_1
PROTO((U_CHAR
*, int, int, FILE *));
1196 static void dump_arg_n
PROTO((DEFINITION
*, int, FILE *));
1198 static void initialize_char_syntax
PROTO((void));
1199 static void initialize_builtins
PROTO((FILE_BUF
*, FILE_BUF
*));
1201 static void make_definition
PROTO((char *, FILE_BUF
*));
1202 static void make_undef
PROTO((char *, FILE_BUF
*));
1204 static void make_assertion
PROTO((char *, char *));
1206 static struct file_name_list
*new_include_prefix
PROTO((struct file_name_list
*, char *, char *));
1207 static void append_include_chain
PROTO((struct file_name_list
*, struct file_name_list
*));
1209 static void deps_output
PROTO((char *, int));
1211 static void fatal
PRINTF_PROTO_1((char *, ...)) __attribute__ ((noreturn
));
1212 void fancy_abort
PROTO((void)) __attribute__ ((noreturn
));
1213 static void perror_with_name
PROTO((char *));
1214 static void pfatal_with_name
PROTO((char *)) __attribute__ ((noreturn
));
1215 static void pipe_closed
PROTO((int)) __attribute__ ((noreturn
));
1217 static void memory_full
PROTO((void)) __attribute__ ((noreturn
));
1218 GENERIC_PTR xmalloc
PROTO((size_t));
1219 static GENERIC_PTR xrealloc
PROTO((GENERIC_PTR
, size_t));
1220 static GENERIC_PTR xcalloc
PROTO((size_t, size_t));
1221 static char *savestring
PROTO((char *));
1223 /* Read LEN bytes at PTR from descriptor DESC, for file FILENAME,
1224 retrying if necessary. Return a negative value if an error occurs,
1225 otherwise return the actual number of bytes read,
1226 which must be LEN unless end-of-file was reached. */
1229 safe_read (desc
, ptr
, len
)
1236 int nchars
= read (desc
, ptr
, left
);
1253 /* Write LEN bytes at PTR to descriptor DESC,
1254 retrying if necessary, and treating any real error as fatal. */
1257 safe_write (desc
, ptr
, len
)
1263 int written
= write (desc
, ptr
, len
);
1270 pfatal_with_name (out_fname
);
1287 char **pend_files
= (char **) xmalloc (argc
* sizeof (char *));
1288 char **pend_defs
= (char **) xmalloc (argc
* sizeof (char *));
1289 char **pend_undefs
= (char **) xmalloc (argc
* sizeof (char *));
1290 char **pend_assertions
= (char **) xmalloc (argc
* sizeof (char *));
1291 char **pend_includes
= (char **) xmalloc (argc
* sizeof (char *));
1293 /* Record the option used with each element of pend_assertions.
1294 This is preparation for supporting more than one option for making
1296 char **pend_assertion_options
= (char **) xmalloc (argc
* sizeof (char *));
1297 int inhibit_predefs
= 0;
1298 int no_standard_includes
= 0;
1299 int no_standard_cplusplus_includes
= 0;
1300 int missing_newline
= 0;
1302 /* Non-0 means don't output the preprocessed program. */
1303 int inhibit_output
= 0;
1304 /* Non-0 means -v, so print the full set of include dirs. */
1307 /* File name which deps are being written to.
1308 This is 0 if deps are being written to stdout. */
1309 char *deps_file
= 0;
1310 /* Fopen file mode to open deps_file with. */
1311 char *deps_mode
= "a";
1312 /* Stream on which to print the dependency information. */
1313 FILE *deps_stream
= 0;
1314 /* Target-name to write with the dependency information. */
1315 char *deps_target
= 0;
1318 /* Get rid of any avoidable limit on stack size. */
1322 /* Set the stack limit huge so that alloca (particularly stringtab
1323 in dbxread.c) does not fail. */
1324 getrlimit (RLIMIT_STACK
, &rlim
);
1325 rlim
.rlim_cur
= rlim
.rlim_max
;
1326 setrlimit (RLIMIT_STACK
, &rlim
);
1328 #endif /* RLIMIT_STACK defined */
1331 signal (SIGPIPE
, pipe_closed
);
1334 progname
= base_name (argv
[0]);
1338 /* Remove extension from PROGNAME. */
1340 char *s
= progname
= savestring (progname
);
1342 if ((p
= rindex (s
, ';')) != 0) *p
= '\0'; /* strip version number */
1343 if ((p
= rindex (s
, '.')) != 0 /* strip type iff ".exe" */
1344 && (p
[1] == 'e' || p
[1] == 'E')
1345 && (p
[2] == 'x' || p
[2] == 'X')
1346 && (p
[3] == 'e' || p
[3] == 'E')
1355 /* Initialize is_idchar to allow $. */
1356 dollars_in_ident
= 1;
1357 initialize_char_syntax ();
1358 dollars_in_ident
= DOLLARS_IN_IDENTIFIERS
> 0;
1360 no_line_directives
= 0;
1362 dump_macros
= dump_none
;
1365 cplusplus_comments
= 1;
1367 bzero ((char *) pend_files
, argc
* sizeof (char *));
1368 bzero ((char *) pend_defs
, argc
* sizeof (char *));
1369 bzero ((char *) pend_undefs
, argc
* sizeof (char *));
1370 bzero ((char *) pend_assertions
, argc
* sizeof (char *));
1371 bzero ((char *) pend_includes
, argc
* sizeof (char *));
1373 /* Process switches and find input file name. */
1375 for (i
= 1; i
< argc
; i
++) {
1376 if (argv
[i
][0] != '-') {
1377 if (out_fname
!= NULL
)
1378 fatal ("Usage: %s [switches] input output", argv
[0]);
1379 else if (in_fname
!= NULL
)
1380 out_fname
= argv
[i
];
1384 switch (argv
[i
][1]) {
1387 if (!strcmp (argv
[i
], "-include")) {
1389 fatal ("Filename missing after `-include' option");
1391 simplify_filename (pend_includes
[i
] = argv
[++i
]);
1393 if (!strcmp (argv
[i
], "-imacros")) {
1395 fatal ("Filename missing after `-imacros' option");
1397 simplify_filename (pend_files
[i
] = argv
[++i
]);
1399 if (!strcmp (argv
[i
], "-iprefix")) {
1401 fatal ("Filename missing after `-iprefix' option");
1403 include_prefix
= argv
[++i
];
1405 if (!strcmp (argv
[i
], "-ifoutput")) {
1406 output_conditionals
= 1;
1408 if (!strcmp (argv
[i
], "-isystem")) {
1409 struct file_name_list
*dirtmp
;
1411 if (! (dirtmp
= new_include_prefix (NULL_PTR
, "", argv
[++i
])))
1413 dirtmp
->c_system_include_path
= 1;
1415 if (before_system
== 0)
1416 before_system
= dirtmp
;
1418 last_before_system
->next
= dirtmp
;
1419 last_before_system
= dirtmp
; /* Tail follows the last one */
1421 /* Add directory to end of path for includes,
1422 with the default prefix at the front of its name. */
1423 if (!strcmp (argv
[i
], "-iwithprefix")) {
1424 struct file_name_list
*dirtmp
;
1427 if (include_prefix
!= 0)
1428 prefix
= include_prefix
;
1430 prefix
= savestring (GCC_INCLUDE_DIR
);
1431 /* Remove the `include' from /usr/local/lib/gcc.../include. */
1432 if (!strcmp (prefix
+ strlen (prefix
) - 8, "/include"))
1433 prefix
[strlen (prefix
) - 7] = 0;
1436 if (! (dirtmp
= new_include_prefix (NULL_PTR
, prefix
, argv
[++i
])))
1439 if (after_include
== 0)
1440 after_include
= dirtmp
;
1442 last_after_include
->next
= dirtmp
;
1443 last_after_include
= dirtmp
; /* Tail follows the last one */
1445 /* Add directory to main path for includes,
1446 with the default prefix at the front of its name. */
1447 if (!strcmp (argv
[i
], "-iwithprefixbefore")) {
1448 struct file_name_list
*dirtmp
;
1451 if (include_prefix
!= 0)
1452 prefix
= include_prefix
;
1454 prefix
= savestring (GCC_INCLUDE_DIR
);
1455 /* Remove the `include' from /usr/local/lib/gcc.../include. */
1456 if (!strcmp (prefix
+ strlen (prefix
) - 8, "/include"))
1457 prefix
[strlen (prefix
) - 7] = 0;
1460 dirtmp
= new_include_prefix (NULL_PTR
, prefix
, argv
[++i
]);
1461 append_include_chain (dirtmp
, dirtmp
);
1463 /* Add directory to end of path for includes. */
1464 if (!strcmp (argv
[i
], "-idirafter")) {
1465 struct file_name_list
*dirtmp
;
1467 if (! (dirtmp
= new_include_prefix (NULL_PTR
, "", argv
[++i
])))
1470 if (after_include
== 0)
1471 after_include
= dirtmp
;
1473 last_after_include
->next
= dirtmp
;
1474 last_after_include
= dirtmp
; /* Tail follows the last one */
1479 if (out_fname
!= NULL
)
1480 fatal ("Output filename specified twice");
1482 fatal ("Filename missing after -o option");
1483 out_fname
= argv
[++i
];
1484 if (!strcmp (out_fname
, "-"))
1489 if (!strcmp (argv
[i
], "-pedantic"))
1491 else if (!strcmp (argv
[i
], "-pedantic-errors")) {
1493 pedantic_errors
= 1;
1494 } else if (!strcmp (argv
[i
], "-pcp")) {
1497 fatal ("Filename missing after -pcp option");
1498 pcp_fname
= argv
[++i
];
1500 ((pcp_fname
[0] != '-' || pcp_fname
[1] != '\0')
1501 ? fopen (pcp_fname
, "w")
1503 if (pcp_outfile
== 0)
1504 pfatal_with_name (pcp_fname
);
1510 if (!strcmp (argv
[i
], "-traditional")) {
1512 cplusplus_comments
= 0;
1513 if (dollars_in_ident
> 0)
1514 dollars_in_ident
= 1;
1515 } else if (!strcmp (argv
[i
], "-trigraphs")) {
1521 if (! strcmp (argv
[i
], "-lang-c"))
1522 cplusplus
= 0, cplusplus_comments
= 1, objc
= 0;
1523 if (! strcmp (argv
[i
], "-lang-c89"))
1524 cplusplus
= 0, cplusplus_comments
= 0, objc
= 0;
1525 if (! strcmp (argv
[i
], "-lang-c++"))
1526 cplusplus
= 1, cplusplus_comments
= 1, objc
= 0;
1527 if (! strcmp (argv
[i
], "-lang-objc"))
1528 objc
= 1, cplusplus
= 0, cplusplus_comments
= 1;
1529 if (! strcmp (argv
[i
], "-lang-objc++"))
1530 objc
= 1, cplusplus
= 1, cplusplus_comments
= 1;
1531 if (! strcmp (argv
[i
], "-lang-asm"))
1533 if (! strcmp (argv
[i
], "-lint"))
1538 cplusplus
= 1, cplusplus_comments
= 1;
1542 inhibit_warnings
= 1;
1546 if (!strcmp (argv
[i
], "-Wtrigraphs"))
1548 else if (!strcmp (argv
[i
], "-Wno-trigraphs"))
1550 else if (!strcmp (argv
[i
], "-Wcomment"))
1552 else if (!strcmp (argv
[i
], "-Wno-comment"))
1554 else if (!strcmp (argv
[i
], "-Wcomments"))
1556 else if (!strcmp (argv
[i
], "-Wno-comments"))
1558 else if (!strcmp (argv
[i
], "-Wtraditional"))
1560 else if (!strcmp (argv
[i
], "-Wno-traditional"))
1562 else if (!strcmp (argv
[i
], "-Wimport"))
1564 else if (!strcmp (argv
[i
], "-Wno-import"))
1566 else if (!strcmp (argv
[i
], "-Werror"))
1567 warnings_are_errors
= 1;
1568 else if (!strcmp (argv
[i
], "-Wno-error"))
1569 warnings_are_errors
= 0;
1570 else if (!strcmp (argv
[i
], "-Wall"))
1578 /* The style of the choices here is a bit mixed.
1579 The chosen scheme is a hybrid of keeping all options in one string
1580 and specifying each option in a separate argument:
1581 -M|-MM|-MD file|-MMD file [-MG]. An alternative is:
1582 -M|-MM|-MD file|-MMD file|-MG|-MMG; or more concisely:
1583 -M[M][G][D file]. This is awkward to handle in specs, and is not
1585 /* ??? -MG must be specified in addition to one of -M or -MM.
1586 This can be relaxed in the future without breaking anything.
1587 The converse isn't true. */
1589 /* -MG isn't valid with -MD or -MMD. This is checked for later. */
1590 if (!strcmp (argv
[i
], "-MG"))
1592 print_deps_missing_files
= 1;
1595 if (!strcmp (argv
[i
], "-M"))
1597 else if (!strcmp (argv
[i
], "-MM"))
1599 else if (!strcmp (argv
[i
], "-MD"))
1601 else if (!strcmp (argv
[i
], "-MMD"))
1603 /* For -MD and -MMD options, write deps on file named by next arg. */
1604 if (!strcmp (argv
[i
], "-MD")
1605 || !strcmp (argv
[i
], "-MMD")) {
1607 fatal ("Filename missing after %s option", argv
[i
]);
1609 deps_file
= argv
[i
];
1612 /* For -M and -MM, write deps on standard output
1613 and suppress the usual output. */
1614 deps_stream
= stdout
;
1621 char *p
= argv
[i
] + 2;
1623 while ((c
= *p
++)) {
1624 /* Arg to -d specifies what parts of macros to dump */
1627 dump_macros
= dump_only
;
1631 dump_macros
= dump_names
;
1634 dump_macros
= dump_definitions
;
1642 if (argv
[i
][2] == '3')
1647 fprintf (stderr
, "GNU CPP version %s", version_string
);
1648 #ifdef TARGET_VERSION
1651 fprintf (stderr
, "\n");
1656 print_include_names
= 1;
1660 if (argv
[i
][2] != 0)
1661 pend_defs
[i
] = argv
[i
] + 2;
1662 else if (i
+ 1 == argc
)
1663 fatal ("Macro name missing after -D option");
1665 i
++, pend_defs
[i
] = argv
[i
];
1672 if (argv
[i
][2] != 0)
1674 else if (i
+ 1 == argc
)
1675 fatal ("Assertion missing after -A option");
1679 if (!strcmp (p
, "-")) {
1680 /* -A- eliminates all predefined macros and assertions.
1681 Let's include also any that were specified earlier
1682 on the command line. That way we can get rid of any
1683 that were passed automatically in from GCC. */
1685 inhibit_predefs
= 1;
1686 for (j
= 0; j
< i
; j
++)
1687 pend_defs
[j
] = pend_assertions
[j
] = 0;
1689 pend_assertions
[i
] = p
;
1690 pend_assertion_options
[i
] = "-A";
1695 case 'U': /* JF #undef something */
1696 if (argv
[i
][2] != 0)
1697 pend_undefs
[i
] = argv
[i
] + 2;
1698 else if (i
+ 1 == argc
)
1699 fatal ("Macro name missing after -U option");
1701 pend_undefs
[i
] = argv
[i
+1], i
++;
1705 put_out_comments
= 1;
1708 case 'E': /* -E comes from cc -E; ignore it. */
1712 no_line_directives
= 1;
1715 case '$': /* Don't include $ in identifiers. */
1716 dollars_in_ident
= 0;
1719 case 'I': /* Add directory to path for includes. */
1721 struct file_name_list
*dirtmp
;
1723 if (! ignore_srcdir
&& !strcmp (argv
[i
] + 2, "-")) {
1725 /* Don't use any preceding -I directories for #include <...>. */
1726 first_bracket_include
= 0;
1729 dirtmp
= new_include_prefix (last_include
, "",
1730 argv
[i
][2] ? argv
[i
] + 2 : argv
[++i
]);
1731 append_include_chain (dirtmp
, dirtmp
);
1737 if (!strcmp (argv
[i
], "-nostdinc"))
1738 /* -nostdinc causes no default include directories.
1739 You must specify all include-file directories with -I. */
1740 no_standard_includes
= 1;
1741 else if (!strcmp (argv
[i
], "-nostdinc++"))
1742 /* -nostdinc++ causes no default C++-specific include directories. */
1743 no_standard_cplusplus_includes
= 1;
1744 else if (!strcmp (argv
[i
], "-noprecomp"))
1749 /* Sun compiler passes undocumented switch "-undef".
1750 Let's assume it means to inhibit the predefined symbols. */
1751 inhibit_predefs
= 1;
1754 case '\0': /* JF handle '-' as file name meaning stdin or stdout */
1755 if (in_fname
== NULL
) {
1758 } else if (out_fname
== NULL
) {
1761 } /* else fall through into error */
1764 fatal ("Invalid option `%s'", argv
[i
]);
1769 /* Add dirs from CPATH after dirs from -I. */
1770 /* There seems to be confusion about what CPATH should do,
1771 so for the moment it is not documented. */
1772 /* Some people say that CPATH should replace the standard include dirs,
1773 but that seems pointless: it comes before them, so it overrides them
1775 cp
= getenv ("CPATH");
1776 if (cp
&& ! no_standard_includes
)
1779 /* Now that dollars_in_ident is known, initialize is_idchar. */
1780 initialize_char_syntax ();
1782 /* Initialize output buffer */
1784 outbuf
.buf
= (U_CHAR
*) xmalloc (OUTBUF_SIZE
);
1785 outbuf
.bufp
= outbuf
.buf
;
1786 outbuf
.length
= OUTBUF_SIZE
;
1788 /* Do partial setup of input buffer for the sake of generating
1789 early #line directives (when -g is in effect). */
1791 fp
= &instack
[++indepth
];
1792 if (in_fname
== NULL
)
1794 fp
->nominal_fname
= fp
->fname
= in_fname
;
1797 /* In C++, wchar_t is a distinct basic type, and we can expect
1798 __wchar_t to be defined by cc1plus. */
1800 wchar_type
= "__wchar_t";
1802 /* Install __LINE__, etc. Must follow initialize_char_syntax
1803 and option processing. */
1804 initialize_builtins (fp
, &outbuf
);
1806 /* Do standard #defines and assertions
1807 that identify system and machine type. */
1809 if (!inhibit_predefs
) {
1810 char *p
= (char *) alloca (strlen (predefs
) + 1);
1811 strcpy (p
, predefs
);
1814 while (*p
== ' ' || *p
== '\t')
1816 /* Handle -D options. */
1817 if (p
[0] == '-' && p
[1] == 'D') {
1819 while (*p
&& *p
!= ' ' && *p
!= '\t')
1824 output_line_directive (fp
, &outbuf
, 0, same_file
);
1825 make_definition (q
, &outbuf
);
1826 while (*p
== ' ' || *p
== '\t')
1828 } else if (p
[0] == '-' && p
[1] == 'A') {
1829 /* Handle -A options (assertions). */
1838 past_name
= assertion
;
1839 /* Locate end of name. */
1840 while (*past_name
&& *past_name
!= ' '
1841 && *past_name
!= '\t' && *past_name
!= '(')
1843 /* Locate `(' at start of value. */
1845 while (*value
&& (*value
== ' ' || *value
== '\t'))
1847 if (*value
++ != '(')
1849 while (*value
&& (*value
== ' ' || *value
== '\t'))
1852 /* Locate end of value. */
1853 while (*past_value
&& *past_value
!= ' '
1854 && *past_value
!= '\t' && *past_value
!= ')')
1856 termination
= past_value
;
1857 while (*termination
&& (*termination
== ' ' || *termination
== '\t'))
1859 if (*termination
++ != ')')
1861 if (*termination
&& *termination
!= ' ' && *termination
!= '\t')
1863 /* Temporarily null-terminate the value. */
1864 save_char
= *termination
;
1865 *termination
= '\0';
1866 /* Install the assertion. */
1867 make_assertion ("-A", assertion
);
1868 *termination
= (char) save_char
;
1870 while (*p
== ' ' || *p
== '\t')
1878 /* Now handle the command line options. */
1880 /* Do -U's, -D's and -A's in the order they were seen. */
1881 for (i
= 1; i
< argc
; i
++) {
1882 if (pend_undefs
[i
]) {
1884 output_line_directive (fp
, &outbuf
, 0, same_file
);
1885 make_undef (pend_undefs
[i
], &outbuf
);
1889 output_line_directive (fp
, &outbuf
, 0, same_file
);
1890 make_definition (pend_defs
[i
], &outbuf
);
1892 if (pend_assertions
[i
])
1893 make_assertion (pend_assertion_options
[i
], pend_assertions
[i
]);
1896 done_initializing
= 1;
1898 { /* Read the appropriate environment variable and if it exists
1899 replace include_defaults with the listed path. */
1901 switch ((objc
<< 1) + cplusplus
)
1904 epath
= getenv ("C_INCLUDE_PATH");
1907 epath
= getenv ("CPLUS_INCLUDE_PATH");
1910 epath
= getenv ("OBJC_INCLUDE_PATH");
1913 epath
= getenv ("OBJCPLUS_INCLUDE_PATH");
1916 /* If the environment var for this language is set,
1917 add to the default list of include directories. */
1920 char *startp
, *endp
;
1922 for (num_dirs
= 1, startp
= epath
; *startp
; startp
++)
1923 if (*startp
== PATH_SEPARATOR
)
1926 = (struct default_include
*) xmalloc ((num_dirs
1927 * sizeof (struct default_include
))
1928 + sizeof (include_defaults_array
));
1929 startp
= endp
= epath
;
1933 if (c
== PATH_SEPARATOR
|| !c
) {
1935 include_defaults
[num_dirs
].fname
1936 = startp
== endp
? "." : savestring (startp
);
1938 include_defaults
[num_dirs
].cplusplus
= cplusplus
;
1939 include_defaults
[num_dirs
].cxx_aware
= 1;
1946 /* Put the usual defaults back in at the end. */
1947 bcopy ((char *) include_defaults_array
,
1948 (char *) &include_defaults
[num_dirs
],
1949 sizeof (include_defaults_array
));
1953 append_include_chain (before_system
, last_before_system
);
1954 first_system_include
= before_system
;
1956 /* Unless -fnostdinc,
1957 tack on the standard include file dirs to the specified list */
1958 if (!no_standard_includes
) {
1959 struct default_include
*p
= include_defaults
;
1960 char *specd_prefix
= include_prefix
;
1961 char *default_prefix
= savestring (GCC_INCLUDE_DIR
);
1962 int default_len
= 0;
1963 /* Remove the `include' from /usr/local/lib/gcc.../include. */
1964 if (!strcmp (default_prefix
+ strlen (default_prefix
) - 8, "/include")) {
1965 default_len
= strlen (default_prefix
) - 7;
1966 default_prefix
[default_len
] = 0;
1968 /* Search "translated" versions of GNU directories.
1969 These have /usr/local/lib/gcc... replaced by specd_prefix. */
1970 if (specd_prefix
!= 0 && default_len
!= 0)
1971 for (p
= include_defaults
; p
->fname
; p
++) {
1972 /* Some standard dirs are only for C++. */
1973 if (!p
->cplusplus
|| (cplusplus
&& !no_standard_cplusplus_includes
)) {
1974 /* Does this dir start with the prefix? */
1975 if (!strncmp (p
->fname
, default_prefix
, default_len
)) {
1976 /* Yes; change prefix and add to search list. */
1977 struct file_name_list
*new
1978 = new_include_prefix (NULL_PTR
, specd_prefix
,
1979 p
->fname
+ default_len
);
1981 new->c_system_include_path
= !p
->cxx_aware
;
1982 append_include_chain (new, new);
1983 if (first_system_include
== 0)
1984 first_system_include
= new;
1989 /* Search ordinary names for GNU include directories. */
1990 for (p
= include_defaults
; p
->fname
; p
++) {
1991 /* Some standard dirs are only for C++. */
1992 if (!p
->cplusplus
|| (cplusplus
&& !no_standard_cplusplus_includes
)) {
1993 struct file_name_list
*new
1994 = new_include_prefix (NULL_PTR
, "", p
->fname
);
1996 new->c_system_include_path
= !p
->cxx_aware
;
1997 append_include_chain (new, new);
1998 if (first_system_include
== 0)
1999 first_system_include
= new;
2005 /* Tack the after_include chain at the end of the include chain. */
2006 append_include_chain (after_include
, last_after_include
);
2007 if (first_system_include
== 0)
2008 first_system_include
= after_include
;
2010 /* With -v, print the list of dirs to search. */
2012 struct file_name_list
*p
;
2013 fprintf (stderr
, "#include \"...\" search starts here:\n");
2014 for (p
= include
; p
; p
= p
->next
) {
2015 if (p
== first_bracket_include
)
2016 fprintf (stderr
, "#include <...> search starts here:\n");
2018 fprintf (stderr
, " .\n");
2019 else if (!strcmp (p
->fname
, "/") || !strcmp (p
->fname
, "//"))
2020 fprintf (stderr
, " %s\n", p
->fname
);
2022 /* Omit trailing '/'. */
2023 fprintf (stderr
, " %.*s\n", (int) strlen (p
->fname
) - 1, p
->fname
);
2025 fprintf (stderr
, "End of search list.\n");
2028 /* -MG doesn't select the form of output and must be specified with one of
2029 -M or -MM. -MG doesn't make sense with -MD or -MMD since they don't
2030 inhibit compilation. */
2031 if (print_deps_missing_files
&& (print_deps
== 0 || !inhibit_output
))
2032 fatal ("-MG must be specified with one of -M or -MM");
2034 /* Either of two environment variables can specify output of deps.
2035 Its value is either "OUTPUT_FILE" or "OUTPUT_FILE DEPS_TARGET",
2036 where OUTPUT_FILE is the file to write deps info to
2037 and DEPS_TARGET is the target to mention in the deps. */
2040 && (getenv ("SUNPRO_DEPENDENCIES") != 0
2041 || getenv ("DEPENDENCIES_OUTPUT") != 0)) {
2042 char *spec
= getenv ("DEPENDENCIES_OUTPUT");
2047 spec
= getenv ("SUNPRO_DEPENDENCIES");
2054 /* Find the space before the DEPS_TARGET, if there is one. */
2055 /* This should use index. (mrs) */
2056 while (*s
!= 0 && *s
!= ' ') s
++;
2058 deps_target
= s
+ 1;
2059 output_file
= xmalloc (s
- spec
+ 1);
2060 bcopy (spec
, output_file
, s
- spec
);
2061 output_file
[s
- spec
] = 0;
2068 deps_file
= output_file
;
2072 /* For -M, print the expected object file name
2073 as the target of this Make-rule. */
2075 deps_allocated_size
= 200;
2076 deps_buffer
= xmalloc (deps_allocated_size
);
2082 deps_output (deps_target
, ':');
2083 } else if (*in_fname
== 0) {
2084 deps_output ("-", ':');
2089 q
= base_name (in_fname
);
2091 /* Copy remainder to mungable area. */
2092 p
= (char *) alloca (strlen(q
) + 8);
2095 /* Output P, but remove known suffixes. */
2099 && p
[len
- 2] == '.'
2100 && index("cCsSm", p
[len
- 1]))
2103 && p
[len
- 3] == '.'
2104 && p
[len
- 2] == 'c'
2105 && p
[len
- 1] == 'c')
2108 && p
[len
- 4] == '.'
2109 && p
[len
- 3] == 'c'
2110 && p
[len
- 2] == 'x'
2111 && p
[len
- 1] == 'x')
2114 && p
[len
- 4] == '.'
2115 && p
[len
- 3] == 'c'
2116 && p
[len
- 2] == 'p'
2117 && p
[len
- 1] == 'p')
2120 /* Supply our own suffix. */
2127 deps_output (p
, ':');
2128 deps_output (in_fname
, ' ');
2132 /* Scan the -imacros files before the main input.
2133 Much like #including them, but with no_output set
2134 so that only their macro definitions matter. */
2136 no_output
++; no_record_file
++;
2137 for (i
= 1; i
< argc
; i
++)
2138 if (pend_files
[i
]) {
2139 struct include_file
*inc
;
2140 int fd
= open_include_file (pend_files
[i
], NULL_PTR
, NULL_PTR
, &inc
);
2142 perror_with_name (pend_files
[i
]);
2143 return FATAL_EXIT_CODE
;
2145 finclude (fd
, inc
, &outbuf
, 0, NULL_PTR
);
2147 no_output
--; no_record_file
--;
2149 /* Copy the entire contents of the main input file into
2150 the stacked input buffer previously allocated for it. */
2152 /* JF check for stdin */
2153 if (in_fname
== NULL
|| *in_fname
== 0) {
2156 } else if ((f
= open (in_fname
, O_RDONLY
, 0666)) < 0)
2159 if (fstat (f
, &st
) != 0)
2160 pfatal_with_name (in_fname
);
2161 fp
->nominal_fname
= fp
->fname
= in_fname
;
2163 fp
->system_header_p
= 0;
2164 /* JF all this is mine about reading pipes and ttys */
2165 if (! S_ISREG (st
.st_mode
)) {
2166 /* Read input from a file that is not a normal disk file.
2167 We cannot preallocate a buffer with the correct size,
2168 so we must read in the file a piece at the time and make it bigger. */
2173 if (S_ISDIR (st
.st_mode
))
2174 fatal ("Input file `%s' is a directory", in_fname
);
2178 fp
->buf
= (U_CHAR
*) xmalloc (bsize
+ 2);
2180 cnt
= safe_read (f
, (char *) fp
->buf
+ size
, bsize
- size
);
2181 if (cnt
< 0) goto perror
; /* error! */
2183 if (size
!= bsize
) break; /* End of file */
2185 fp
->buf
= (U_CHAR
*) xrealloc (fp
->buf
, bsize
+ 2);
2189 /* Read a file whose size we can determine in advance.
2190 For the sake of VMS, st.st_size is just an upper bound. */
2191 fp
->buf
= (U_CHAR
*) xmalloc (st
.st_size
+ 2);
2192 fp
->length
= safe_read (f
, (char *) fp
->buf
, st
.st_size
);
2193 if (fp
->length
< 0) goto perror
;
2196 fp
->if_stack
= if_stack
;
2198 /* Make sure data ends with a newline. And put a null after it. */
2200 if ((fp
->length
> 0 && fp
->buf
[fp
->length
- 1] != '\n')
2201 /* Backslash-newline at end is not good enough. */
2202 || (fp
->length
> 1 && fp
->buf
[fp
->length
- 2] == '\\')) {
2203 fp
->buf
[fp
->length
++] = '\n';
2204 missing_newline
= 1;
2206 fp
->buf
[fp
->length
] = '\0';
2208 /* Unless inhibited, convert trigraphs in the input. */
2213 /* Now that we know the input file is valid, open the output. */
2215 if (!out_fname
|| !strcmp (out_fname
, ""))
2216 out_fname
= "stdout";
2217 else if (! freopen (out_fname
, "w", stdout
))
2218 pfatal_with_name (out_fname
);
2220 output_line_directive (fp
, &outbuf
, 0, same_file
);
2222 /* Scan the -include files before the main input. */
2225 for (i
= 1; i
< argc
; i
++)
2226 if (pend_includes
[i
]) {
2227 struct include_file
*inc
;
2228 int fd
= open_include_file (pend_includes
[i
], NULL_PTR
, NULL_PTR
, &inc
);
2230 perror_with_name (pend_includes
[i
]);
2231 return FATAL_EXIT_CODE
;
2233 finclude (fd
, inc
, &outbuf
, 0, NULL_PTR
);
2237 /* Scan the input, processing macros and directives. */
2239 rescan (&outbuf
, 0);
2241 if (missing_newline
)
2244 if (pedantic
&& missing_newline
)
2245 pedwarn ("file does not end in newline");
2247 /* Now we have processed the entire input
2248 Write whichever kind of output has been requested. */
2250 if (dump_macros
== dump_only
)
2252 else if (! inhibit_output
) {
2257 /* Don't actually write the deps file if compilation has failed. */
2259 if (deps_file
&& ! (deps_stream
= fopen (deps_file
, deps_mode
)))
2260 pfatal_with_name (deps_file
);
2261 fputs (deps_buffer
, deps_stream
);
2262 putc ('\n', deps_stream
);
2264 if (ferror (deps_stream
) || fclose (deps_stream
) != 0)
2265 fatal ("I/O error on output");
2270 if (pcp_outfile
&& pcp_outfile
!= stdout
2271 && (ferror (pcp_outfile
) || fclose (pcp_outfile
) != 0))
2272 fatal ("I/O error on `-pcp' output");
2274 if (ferror (stdout
) || fclose (stdout
) != 0)
2275 fatal ("I/O error on output");
2278 exit (FATAL_EXIT_CODE
);
2279 exit (SUCCESS_EXIT_CODE
);
2282 pfatal_with_name (in_fname
);
2286 /* Given a colon-separated list of file names PATH,
2287 add all the names to the search path for include files. */
2301 struct file_name_list
*dirtmp
;
2303 /* Find the end of this name. */
2304 while ((c
= *q
++) != PATH_SEPARATOR
&& c
)
2308 dirtmp
= new_include_prefix (last_include
, "", p
== q
? "." : p
);
2310 append_include_chain (dirtmp
, dirtmp
);
2312 /* Advance past this name. */
2319 /* Return the address of the first character in S that equals C.
2320 S is an array of length N, possibly containing '\0's, and followed by '\0'.
2321 Return 0 if there is no such character. Assume that C itself is not '\0'.
2322 If we knew we could use memchr, we could just invoke memchr (S, C, N),
2323 but unfortunately memchr isn't autoconfigured yet. */
2331 char *p
= (char *) s
;
2333 char *q
= index (p
, c
);
2335 return (U_CHAR
*) q
;
2337 size_t l
= strlen (p
);
2347 /* Pre-C-Preprocessor to translate ANSI trigraph idiocy in BUF
2348 before main CCCP processing. Name `pcp' is also in honor of the
2349 drugs the trigraph designers must have been on.
2351 Using an extra pass through the buffer takes a little extra time,
2352 but is infinitely less hairy than trying to handle trigraphs inside
2353 strings, etc. everywhere, and also makes sure that trigraphs are
2354 only translated in the top level of processing. */
2360 register U_CHAR c
, *fptr
, *bptr
, *sptr
, *lptr
;
2363 fptr
= bptr
= sptr
= buf
->buf
;
2364 lptr
= fptr
+ buf
->length
;
2365 while ((sptr
= index0 (sptr
, '?', (size_t) (lptr
- sptr
))) != NULL
) {
2402 len
= sptr
- fptr
- 2;
2404 /* BSD doc says bcopy () works right for overlapping strings. In ANSI
2405 C, this will be memmove (). */
2406 if (bptr
!= fptr
&& len
> 0)
2407 bcopy ((char *) fptr
, (char *) bptr
, len
);
2413 len
= buf
->length
- (fptr
- buf
->buf
);
2414 if (bptr
!= fptr
&& len
> 0)
2415 bcopy ((char *) fptr
, (char *) bptr
, len
);
2416 buf
->length
-= fptr
- bptr
;
2417 buf
->buf
[buf
->length
] = '\0';
2418 if (warn_trigraphs
&& fptr
!= bptr
)
2419 warning_with_line (0, "%lu trigraph(s) encountered",
2420 (unsigned long) (fptr
- bptr
) / 2);
2423 /* Move all backslash-newline pairs out of embarrassing places.
2424 Exchange all such pairs following BP
2425 with any potentially-embarrassing characters that follow them.
2426 Potentially-embarrassing characters are / and *
2427 (because a backslash-newline inside a comment delimiter
2428 would cause it not to be recognized). */
2434 register U_CHAR
*p
= bp
;
2436 /* First count the backslash-newline pairs here. */
2438 while (p
[0] == '\\' && p
[1] == '\n')
2441 /* What follows the backslash-newlines is not embarrassing. */
2443 if (*p
!= '/' && *p
!= '*')
2446 /* Copy all potentially embarrassing characters
2447 that follow the backslash-newline pairs
2448 down to where the pairs originally started. */
2450 while (*p
== '*' || *p
== '/')
2453 /* Now write the same number of pairs after the embarrassing chars. */
2460 /* Like newline_fix but for use within a directive-name.
2461 Move any backslash-newlines up past any following symbol constituents. */
2464 name_newline_fix (bp
)
2467 register U_CHAR
*p
= bp
;
2469 /* First count the backslash-newline pairs here. */
2470 while (p
[0] == '\\' && p
[1] == '\n')
2473 /* What follows the backslash-newlines is not embarrassing. */
2478 /* Copy all potentially embarrassing characters
2479 that follow the backslash-newline pairs
2480 down to where the pairs originally started. */
2482 while (is_idchar
[*p
])
2485 /* Now write the same number of pairs after the embarrassing chars. */
2492 /* Look for lint commands in comments.
2494 When we come in here, ibp points into a comment. Limit is as one expects.
2495 scan within the comment -- it should start, after lwsp, with a lint command.
2496 If so that command is returned as a (constant) string.
2498 Upon return, any arg will be pointed to with argstart and will be
2499 arglen long. Note that we don't parse that arg since it will just
2500 be printed out again. */
2503 get_lintcmd (ibp
, limit
, argstart
, arglen
, cmdlen
)
2504 register U_CHAR
*ibp
;
2505 register U_CHAR
*limit
;
2506 U_CHAR
**argstart
; /* point to command arg */
2507 int *arglen
, *cmdlen
; /* how long they are */
2509 HOST_WIDE_INT linsize
;
2510 register U_CHAR
*numptr
; /* temp for arg parsing */
2514 SKIP_WHITE_SPACE (ibp
);
2516 if (ibp
>= limit
) return NULL
;
2518 linsize
= limit
- ibp
;
2520 /* Oh, I wish C had lexical functions... hell, I'll just open-code the set */
2521 if ((linsize
>= 10) && !bcmp (ibp
, "NOTREACHED", 10)) {
2523 return "NOTREACHED";
2525 if ((linsize
>= 8) && !bcmp (ibp
, "ARGSUSED", 8)) {
2529 if ((linsize
>= 11) && !bcmp (ibp
, "LINTLIBRARY", 11)) {
2531 return "LINTLIBRARY";
2533 if ((linsize
>= 7) && !bcmp (ibp
, "VARARGS", 7)) {
2535 ibp
+= 7; linsize
-= 7;
2536 if ((linsize
== 0) || ! isdigit (*ibp
)) return "VARARGS";
2538 /* OK, read a number */
2539 for (numptr
= *argstart
= ibp
; (numptr
< limit
) && isdigit (*numptr
);
2541 *arglen
= numptr
- *argstart
;
2548 * The main loop of the program.
2550 * Read characters from the input stack, transferring them to the
2553 * Macros are expanded and push levels on the input stack.
2554 * At the end of such a level it is popped off and we keep reading.
2555 * At the end of any other kind of level, we return.
2556 * #-directives are handled, except within macros.
2558 * If OUTPUT_MARKS is nonzero, keep Newline markers found in the input
2559 * and insert them when appropriate. This is set while scanning macro
2560 * arguments before substitution. It is zero when scanning for final output.
2561 * There are three types of Newline markers:
2562 * * Newline - follows a macro name that was not expanded
2563 * because it appeared inside an expansion of the same macro.
2564 * This marker prevents future expansion of that identifier.
2565 * When the input is rescanned into the final output, these are deleted.
2566 * These are also deleted by ## concatenation.
2567 * * Newline Space (or Newline and any other whitespace character)
2568 * stands for a place that tokens must be separated or whitespace
2569 * is otherwise desirable, but where the ANSI standard specifies there
2570 * is no whitespace. This marker turns into a Space (or whichever other
2571 * whitespace char appears in the marker) in the final output,
2572 * but it turns into nothing in an argument that is stringified with #.
2573 * Such stringified arguments are the only place where the ANSI standard
2574 * specifies with precision that whitespace may not appear.
2576 * During this function, IP->bufp is kept cached in IBP for speed of access.
2577 * Likewise, OP->bufp is kept in OBP. Before calling a subroutine
2578 * IBP, IP and OBP must be copied back to memory. IP and IBP are
2579 * copied back with the RECACHE macro. OBP must be copied back from OP->bufp
2580 * explicitly, and before RECACHE, since RECACHE uses OBP.
2584 rescan (op
, output_marks
)
2588 /* Character being scanned in main loop. */
2591 /* Length of pending accumulated identifier. */
2592 register int ident_length
= 0;
2594 /* Hash code of pending accumulated identifier. */
2595 register int hash
= 0;
2597 /* Current input level (&instack[indepth]). */
2600 /* Pointer for scanning input. */
2601 register U_CHAR
*ibp
;
2603 /* Pointer to end of input. End of scan is controlled by LIMIT. */
2604 register U_CHAR
*limit
;
2606 /* Pointer for storing output. */
2607 register U_CHAR
*obp
;
2609 /* REDO_CHAR is nonzero if we are processing an identifier
2610 after backing up over the terminating character.
2611 Sometimes we process an identifier without backing up over
2612 the terminating character, if the terminating character
2613 is not special. Backing up is done so that the terminating character
2614 will be dispatched on again once the identifier is dealt with. */
2617 /* 1 if within an identifier inside of which a concatenation
2618 marker (Newline -) has been seen. */
2619 int concatenated
= 0;
2621 /* While scanning a comment or a string constant,
2622 this records the line it started on, for error messages. */
2625 /* Record position of last `real' newline. */
2626 U_CHAR
*beg_of_line
;
2628 /* Pop the innermost input stack level, assuming it is a macro expansion. */
2631 do { ip->macro->type = T_MACRO; \
2632 if (ip->free_ptr) free (ip->free_ptr); \
2633 --indepth; } while (0)
2635 /* Reload `rescan's local variables that describe the current
2636 level of the input stack. */
2639 do { ip = &instack[indepth]; \
2641 limit = ip->buf + ip->length; \
2643 check_expand (op, limit - ibp); \
2645 obp = op->bufp; } while (0)
2647 if (no_output
&& instack
[indepth
].fname
!= 0)
2648 skip_if_group (&instack
[indepth
], 1, NULL
);
2655 /* Our caller must always put a null after the end of
2656 the input at each input stack level. */
2666 if (*ibp
== '\n' && !ip
->macro
) {
2667 /* At the top level, always merge lines ending with backslash-newline,
2668 even in middle of identifier. But do not merge lines in a macro,
2669 since backslash might be followed by a newline-space marker. */
2672 --obp
; /* remove backslash from obuf */
2675 /* If ANSI, backslash is just another character outside a string. */
2678 /* Otherwise, backslash suppresses specialness of following char,
2679 so copy it here to prevent the switch from seeing it.
2680 But first get any pending identifier processed. */
2681 if (ident_length
> 0)
2688 if (ident_length
|| ip
->macro
|| traditional
)
2690 while (*ibp
== '\\' && ibp
[1] == '\n') {
2696 /* Treat this %: digraph as if it were #. */
2700 if (assertions_flag
) {
2703 /* Copy #foo (bar lose) without macro expansion. */
2704 obp
[-1] = '#'; /* In case it was '%'. */
2705 SKIP_WHITE_SPACE (ibp
);
2706 while (is_idchar
[*ibp
])
2708 SKIP_WHITE_SPACE (ibp
);
2711 skip_paren_group (ip
);
2712 bcopy ((char *) ibp
, (char *) obp
, ip
->bufp
- ibp
);
2713 obp
+= ip
->bufp
- ibp
;
2719 /* If this is expanding a macro definition, don't recognize
2720 preprocessing directives. */
2723 /* If this is expand_into_temp_buffer,
2724 don't recognize them either. Warn about them
2725 only after an actual newline at this level,
2726 not at the beginning of the input level. */
2728 if (ip
->buf
!= beg_of_line
)
2729 warning ("preprocessing directive not recognized within macro arg");
2736 /* # keyword: a # must be first nonblank char on the line */
2737 if (beg_of_line
== 0)
2742 /* Scan from start of line, skipping whitespace, comments
2743 and backslash-newlines, and see if we reach this #.
2744 If not, this # is not special. */
2746 /* If -traditional, require # to be at beginning of line. */
2749 if (is_hor_space
[*bp
])
2751 else if (*bp
== '\\' && bp
[1] == '\n')
2753 else if (*bp
== '/' && bp
[1] == '*') {
2755 while (!(*bp
== '*' && bp
[1] == '/'))
2759 /* There is no point in trying to deal with C++ // comments here,
2760 because if there is one, then this # must be part of the
2761 comment and we would never reach here. */
2767 while (bp
[1] == '\\' && bp
[2] == '\n')
2771 /* %: appears at start of line; skip past the ':' too. */
2780 /* This # can start a directive. */
2782 --obp
; /* Don't copy the '#' */
2786 if (! handle_directive (ip
, op
)) {
2790 /* Not a known directive: treat it as ordinary text.
2791 IP, OP, IBP, etc. have not been changed. */
2792 if (no_output
&& instack
[indepth
].fname
) {
2793 /* If not generating expanded output,
2794 what we do with ordinary text is skip it.
2795 Discard everything until next # directive. */
2796 skip_if_group (&instack
[indepth
], 1, 0);
2801 *obp
++ = '#'; /* Copy # (even if it was originally %:). */
2802 /* Don't expand an identifier that could be a macro directive.
2803 (Section 3.8.3 of the ANSI C standard) */
2804 SKIP_WHITE_SPACE (ibp
);
2805 if (is_idstart
[*ibp
])
2808 while (is_idchar
[*ibp
])
2816 /* A # directive has been successfully processed. */
2817 /* If not generating expanded output, ignore everything until
2818 next # directive. */
2819 if (no_output
&& instack
[indepth
].fname
)
2820 skip_if_group (&instack
[indepth
], 1, 0);
2826 case '\"': /* skip quoted string */
2828 /* A single quoted string is treated like a double -- some
2829 programs (e.g., troff) are perverse this way */
2834 start_line
= ip
->lineno
;
2836 /* Skip ahead to a matching quote. */
2840 if (ip
->macro
!= 0) {
2841 /* try harder: this string crosses a macro expansion boundary.
2842 This can happen naturally if -traditional.
2843 Otherwise, only -D can make a macro with an unmatched quote. */
2849 error_with_line (line_for_error (start_line
),
2850 "unterminated string or character constant");
2851 error_with_line (multiline_string_line
,
2852 "possible real start of unterminated constant");
2853 multiline_string_line
= 0;
2862 /* Traditionally, end of line ends a string constant with no error.
2863 So exit the loop and record the new line. */
2869 error_with_line (line_for_error (start_line
),
2870 "unterminated character constant");
2873 if (multiline_string_line
== 0) {
2875 pedwarn_with_line (line_for_error (start_line
),
2876 "string constant runs past end of line");
2877 multiline_string_line
= ip
->lineno
- 1;
2885 /* Backslash newline is replaced by nothing at all,
2886 but keep the line counts correct. */
2891 /* ANSI stupidly requires that in \\ the second \
2892 is *not* prevented from combining with a newline. */
2893 while (*ibp
== '\\' && ibp
[1] == '\n') {
2912 if (*ibp
== '\\' && ibp
[1] == '\n')
2916 && !(cplusplus_comments
&& *ibp
== '/'))
2924 /* C++ style comment... */
2925 start_line
= ip
->lineno
;
2927 /* Comments are equivalent to spaces. */
2928 if (! put_out_comments
)
2932 U_CHAR
*before_bp
= ibp
;
2934 while (++ibp
< limit
) {
2936 if (ibp
[-1] != '\\') {
2937 if (put_out_comments
) {
2938 bcopy ((char *) before_bp
, (char *) obp
, ibp
- before_bp
);
2939 obp
+= ibp
- before_bp
;
2944 warning ("multiline `//' comment");
2946 /* Copy the newline into the output buffer, in order to
2947 avoid the pain of a #line every time a multiline comment
2949 if (!put_out_comments
)
2958 /* Ordinary C comment. Skip it, optionally copying it to output. */
2960 start_line
= ip
->lineno
;
2962 ++ibp
; /* Skip the star. */
2964 /* If this cpp is for lint, we peek inside the comments: */
2968 char *lintcmd
= get_lintcmd (ibp
, limit
, &argbp
, &arglen
, &cmdlen
);
2970 if (lintcmd
!= NULL
) {
2972 check_expand (op
, cmdlen
+ arglen
+ 14);
2974 /* I believe it is always safe to emit this newline: */
2976 bcopy ("#pragma lint ", (char *) obp
, 13);
2978 bcopy (lintcmd
, (char *) obp
, cmdlen
);
2983 bcopy (argbp
, (char *) obp
, arglen
);
2987 /* OK, now bring us back to the state we were in before we entered
2988 this branch. We need #line because the #pragma's newline always
2989 messes up the line count. */
2991 output_line_directive (ip
, op
, 0, same_file
);
2992 check_expand (op
, limit
- ibp
+ 2);
2998 /* Comments are equivalent to spaces.
2999 Note that we already output the slash; we might not want it.
3000 For -traditional, a comment is equivalent to nothing. */
3001 if (! put_out_comments
) {
3011 U_CHAR
*before_bp
= ibp
;
3016 if (ibp
[-2] == '/' && warn_comments
)
3017 warning ("`/*' within comment");
3018 if (*ibp
== '\\' && ibp
[1] == '\n')
3026 /* Copy the newline into the output buffer, in order to
3027 avoid the pain of a #line every time a multiline comment
3029 if (!put_out_comments
)
3036 error_with_line (line_for_error (start_line
),
3037 "unterminated comment");
3046 if (put_out_comments
) {
3047 bcopy ((char *) before_bp
, (char *) obp
, ibp
- before_bp
);
3048 obp
+= ibp
- before_bp
;
3054 if (!dollars_in_ident
)
3058 case '0': case '1': case '2': case '3': case '4':
3059 case '5': case '6': case '7': case '8': case '9':
3060 /* If digit is not part of identifier, it starts a number,
3061 which means that following letters are not an identifier.
3062 "0x5" does not refer to an identifier "x5".
3063 So copy all alphanumerics that follow without accumulating
3064 as an identifier. Periods also, for sake of "3.e7". */
3066 if (ident_length
== 0) {
3068 while (ibp
[0] == '\\' && ibp
[1] == '\n') {
3073 if (!is_idchar
[c
] && c
!= '.') {
3078 /* A sign can be part of a preprocessing number
3079 if it follows an e. */
3080 if (c
== 'e' || c
== 'E') {
3081 while (ibp
[0] == '\\' && ibp
[1] == '\n') {
3085 if (*ibp
== '+' || *ibp
== '-') {
3087 /* But traditional C does not let the token go past the sign. */
3098 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
3099 case 'g': case 'h': case 'i': case 'j': case 'k': case 'l':
3100 case 'm': case 'n': case 'o': case 'p': case 'q': case 'r':
3101 case 's': case 't': case 'u': case 'v': case 'w': case 'x':
3103 case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
3104 case 'G': case 'H': case 'I': case 'J': case 'K': case 'L':
3105 case 'M': case 'N': case 'O': case 'P': case 'Q': case 'R':
3106 case 'S': case 'T': case 'U': case 'V': case 'W': case 'X':
3110 /* Compute step of hash function, to avoid a proc call on every token */
3111 hash
= HASHSTEP (hash
, c
);
3115 if (ip
->fname
== 0 && *ibp
== '-') {
3116 /* Newline - inhibits expansion of preceding token.
3117 If expanding a macro arg, we keep the newline -.
3118 In final output, it is deleted.
3119 We recognize Newline - in macro bodies and macro args. */
3120 if (! concatenated
) {
3125 if (!output_marks
) {
3128 /* If expanding a macro arg, keep the newline -. */
3134 /* If reprocessing a macro expansion, newline is a special marker. */
3135 else if (ip
->macro
!= 0) {
3136 /* Newline White is a "funny space" to separate tokens that are
3137 supposed to be separate but without space between.
3138 Here White means any whitespace character.
3139 Newline - marks a recursive macro use that is not
3140 supposed to be expandable. */
3142 if (is_space
[*ibp
]) {
3143 /* Newline Space does not prevent expansion of preceding token
3144 so expand the preceding token and then come back. */
3145 if (ident_length
> 0)
3148 /* If generating final output, newline space makes a space. */
3149 if (!output_marks
) {
3151 /* And Newline Newline makes a newline, so count it. */
3152 if (obp
[-1] == '\n')
3155 /* If expanding a macro arg, keep the newline space.
3156 If the arg gets stringified, newline space makes nothing. */
3159 } else abort (); /* Newline followed by something random? */
3163 /* If there is a pending identifier, handle it and come back here. */
3164 if (ident_length
> 0)
3169 /* Update the line counts and output a #line if necessary. */
3172 if (ip
->lineno
!= op
->lineno
) {
3174 output_line_directive (ip
, op
, 1, same_file
);
3175 check_expand (op
, limit
- ibp
);
3180 /* Come here either after (1) a null character that is part of the input
3181 or (2) at the end of the input, because there is a null there. */
3184 /* Our input really contains a null character. */
3188 /* At end of a macro-expansion level, pop it and read next level. */
3189 if (ip
->macro
!= 0) {
3192 /* If traditional, and we have an identifier that ends here,
3193 process it now, so we get the right error for recursion. */
3194 if (traditional
&& ident_length
3195 && ! is_idchar
[*instack
[indepth
- 1].bufp
]) {
3204 /* If we don't have a pending identifier,
3205 return at end of input. */
3206 if (ident_length
== 0) {
3214 /* If we do have a pending identifier, just consider this null
3215 a special character and arrange to dispatch on it again.
3216 The second time, IDENT_LENGTH will be zero so we will return. */
3222 /* Handle the case of a character such as /, ', " or null
3223 seen following an identifier. Back over it so that
3224 after the identifier is processed the special char
3225 will be dispatched on again. */
3235 if (ident_length
> 0) {
3236 register HASHNODE
*hp
;
3238 /* We have just seen an identifier end. If it's a macro, expand it.
3240 IDENT_LENGTH is the length of the identifier
3241 and HASH is its hash code.
3243 The identifier has already been copied to the output,
3244 so if it is a macro we must remove it.
3246 If REDO_CHAR is 0, the char that terminated the identifier
3247 has been skipped in the output and the input.
3248 OBP-IDENT_LENGTH-1 points to the identifier.
3249 If the identifier is a macro, we must back over the terminator.
3251 If REDO_CHAR is 1, the terminating char has already been
3252 backed over. OBP-IDENT_LENGTH points to the identifier. */
3254 if (!pcp_outfile
|| pcp_inside_if
) {
3255 for (hp
= hashtab
[MAKE_POS (hash
) % HASHSIZE
]; hp
!= NULL
;
3258 if (hp
->length
== ident_length
) {
3259 int obufp_before_macroname
;
3260 int op_lineno_before_macroname
;
3261 register int i
= ident_length
;
3262 register U_CHAR
*p
= hp
->name
;
3263 register U_CHAR
*q
= obp
- i
;
3269 do { /* All this to avoid a strncmp () */
3274 /* We found a use of a macro name.
3275 see if the context shows it is a macro call. */
3277 /* Back up over terminating character if not already done. */
3283 /* Save this as a displacement from the beginning of the output
3284 buffer. We can not save this as a position in the output
3285 buffer, because it may get realloc'ed by RECACHE. */
3286 obufp_before_macroname
= (obp
- op
->buf
) - ident_length
;
3287 op_lineno_before_macroname
= op
->lineno
;
3289 if (hp
->type
== T_PCSTRING
) {
3290 pcstring_used (hp
); /* Mark the definition of this key
3291 as needed, ensuring that it
3293 break; /* Exit loop, since the key cannot have a
3294 definition any longer. */
3297 /* Record whether the macro is disabled. */
3298 disabled
= hp
->type
== T_DISABLED
;
3300 /* This looks like a macro ref, but if the macro was disabled,
3301 just copy its name and put in a marker if requested. */
3305 /* This error check caught useful cases such as
3306 #define foo(x,y) bar (x (y,0), y)
3309 error ("recursive use of macro `%s'", hp
->name
);
3313 check_expand (op
, limit
- ibp
+ 2);
3320 /* If macro wants an arglist, verify that a '(' follows.
3321 first skip all whitespace, copying it to the output
3322 after the macro name. Then, if there is no '(',
3323 decide this is not a macro call and leave things that way. */
3324 if ((hp
->type
== T_MACRO
|| hp
->type
== T_DISABLED
)
3325 && hp
->value
.defn
->nargs
>= 0)
3327 U_CHAR
*old_ibp
= ibp
;
3328 U_CHAR
*old_obp
= obp
;
3329 int old_iln
= ip
->lineno
;
3330 int old_oln
= op
->lineno
;
3333 /* Scan forward over whitespace, copying it to the output. */
3334 if (ibp
== limit
&& ip
->macro
!= 0) {
3339 old_iln
= ip
->lineno
;
3340 old_oln
= op
->lineno
;
3342 /* A comment: copy it unchanged or discard it. */
3343 else if (*ibp
== '/' && ibp
[1] == '*') {
3344 if (put_out_comments
) {
3347 } else if (! traditional
) {
3351 while (ibp
+ 1 != limit
3352 && !(ibp
[0] == '*' && ibp
[1] == '/')) {
3353 /* We need not worry about newline-marks,
3354 since they are never found in comments. */
3356 /* Newline in a file. Count it. */
3360 if (put_out_comments
)
3366 if (put_out_comments
) {
3371 else if (is_space
[*ibp
]) {
3373 if (ibp
[-1] == '\n') {
3374 if (ip
->macro
== 0) {
3375 /* Newline in a file. Count it. */
3378 } else if (!output_marks
) {
3379 /* A newline mark, and we don't want marks
3380 in the output. If it is newline-hyphen,
3381 discard it entirely. Otherwise, it is
3382 newline-whitechar, so keep the whitechar. */
3392 /* A newline mark; copy both chars to the output. */
3400 /* It isn't a macro call.
3401 Put back the space that we just skipped. */
3404 ip
->lineno
= old_iln
;
3405 op
->lineno
= old_oln
;
3406 /* Exit the for loop. */
3411 /* This is now known to be a macro call.
3412 Discard the macro name from the output,
3413 along with any following whitespace just copied,
3414 but preserve newlines if not outputting marks since this
3415 is more likely to do the right thing with line numbers. */
3416 obp
= op
->buf
+ obufp_before_macroname
;
3418 op
->lineno
= op_lineno_before_macroname
;
3420 int newlines
= op
->lineno
- op_lineno_before_macroname
;
3421 while (0 < newlines
--)
3425 /* Prevent accidental token-pasting with a character
3426 before the macro call. */
3427 if (!traditional
&& obp
!= op
->buf
) {
3429 case '!': case '%': case '&': case '*':
3430 case '+': case '-': case '/': case ':':
3431 case '<': case '=': case '>': case '^':
3433 /* If we are expanding a macro arg, make a newline marker
3434 to separate the tokens. If we are making real output,
3435 a plain space will do. */
3442 /* Expand the macro, reading arguments as needed,
3443 and push the expansion on the input stack. */
3446 macroexpand (hp
, op
);
3448 /* Reexamine input stack, since macroexpand has pushed
3449 a new level on it. */
3456 } /* End hash-table-search loop */
3458 ident_length
= hash
= 0; /* Stop collecting identifier */
3461 } /* End if (ident_length > 0) */
3463 } /* End per-char loop */
3465 /* Come here to return -- but first give an error message
3466 if there was an unterminated successful conditional. */
3468 if (if_stack
!= ip
->if_stack
)
3472 switch (if_stack
->type
)
3493 error_with_line (line_for_error (if_stack
->lineno
),
3494 "unterminated `#%s' conditional", str
);
3496 if_stack
= ip
->if_stack
;
3500 * Rescan a string into a temporary buffer and return the result
3501 * as a FILE_BUF. Note this function returns a struct, not a pointer.
3503 * OUTPUT_MARKS nonzero means keep Newline markers found in the input
3504 * and insert such markers when appropriate. See `rescan' for details.
3505 * OUTPUT_MARKS is 1 for macroexpanding a macro argument separately
3506 * before substitution; it is 0 for other uses.
3509 expand_to_temp_buffer (buf
, limit
, output_marks
, assertions
)
3510 U_CHAR
*buf
, *limit
;
3511 int output_marks
, assertions
;
3513 register FILE_BUF
*ip
;
3515 int length
= limit
- buf
;
3517 int odepth
= indepth
;
3518 int save_assertions_flag
= assertions_flag
;
3520 assertions_flag
= assertions
;
3525 /* Set up the input on the input stack. */
3527 buf1
= (U_CHAR
*) alloca (length
+ 1);
3529 register U_CHAR
*p1
= buf
;
3530 register U_CHAR
*p2
= buf1
;
3537 /* Set up to receive the output. */
3539 obuf
.length
= length
* 2 + 100; /* Usually enough. Why be stingy? */
3540 obuf
.bufp
= obuf
.buf
= (U_CHAR
*) xmalloc (obuf
.length
);
3545 CHECK_DEPTH ({return obuf
;});
3549 ip
= &instack
[indepth
];
3551 ip
->nominal_fname
= 0;
3553 ip
->system_header_p
= 0;
3556 ip
->length
= length
;
3557 ip
->buf
= ip
->bufp
= buf1
;
3558 ip
->if_stack
= if_stack
;
3560 ip
->lineno
= obuf
.lineno
= 1;
3562 /* Scan the input, create the output. */
3563 rescan (&obuf
, output_marks
);
3565 /* Pop input stack to original state. */
3568 if (indepth
!= odepth
)
3571 /* Record the output. */
3572 obuf
.length
= obuf
.bufp
- obuf
.buf
;
3574 assertions_flag
= save_assertions_flag
;
3579 * Process a # directive. Expects IP->bufp to point after the '#', as in
3580 * `#define foo bar'. Passes to the directive handler
3581 * (do_define, do_include, etc.): the addresses of the 1st and
3582 * last chars of the directive (starting immediately after the #
3583 * keyword), plus op and the keyword table pointer. If the directive
3584 * contains comments it is copied into a temporary buffer sans comments
3585 * and the temporary buffer is passed to the directive handler instead.
3586 * Likewise for backslash-newlines.
3588 * Returns nonzero if this was a known # directive.
3589 * Otherwise, returns zero, without advancing the input pointer.
3593 handle_directive (ip
, op
)
3596 register U_CHAR
*bp
, *cp
;
3597 register struct directive
*kt
;
3598 register int ident_length
;
3601 /* Nonzero means we must copy the entire directive
3602 to get rid of comments or backslash-newlines. */
3603 int copy_directive
= 0;
3605 U_CHAR
*ident
, *after_ident
;
3609 /* Record where the directive started. do_xifdef needs this. */
3610 directive_start
= bp
- 1;
3612 /* Skip whitespace and \-newline. */
3614 if (is_hor_space
[*bp
]) {
3615 if (*bp
!= ' ' && *bp
!= '\t' && pedantic
)
3616 pedwarn ("%s in preprocessing directive", char_name
[*bp
]);
3618 } else if (*bp
== '/' && (bp
[1] == '*'
3619 || (cplusplus_comments
&& bp
[1] == '/'))) {
3621 skip_to_end_of_comment (ip
, &ip
->lineno
, 0);
3623 } else if (*bp
== '\\' && bp
[1] == '\n') {
3624 bp
+= 2; ip
->lineno
++;
3628 /* Now find end of directive name.
3629 If we encounter a backslash-newline, exchange it with any following
3630 symbol-constituents so that we end up with a contiguous name. */
3637 if (*cp
== '\\' && cp
[1] == '\n')
3638 name_newline_fix (cp
);
3644 ident_length
= cp
- bp
;
3648 /* A line of just `#' becomes blank. */
3650 if (ident_length
== 0 && *after_ident
== '\n') {
3651 ip
->bufp
= after_ident
;
3655 if (ident_length
== 0 || !is_idstart
[*ident
]) {
3657 while (is_idchar
[*p
]) {
3658 if (*p
< '0' || *p
> '9')
3662 /* Handle # followed by a line number. */
3663 if (p
!= ident
&& !is_idchar
[*p
]) {
3664 static struct directive line_directive_table
[] = {
3665 { 4, do_line
, "line", T_LINE
},
3668 pedwarn ("`#' followed by integer");
3669 after_ident
= ident
;
3670 kt
= line_directive_table
;
3674 /* Avoid error for `###' and similar cases unless -pedantic. */
3676 while (*p
== '#' || is_hor_space
[*p
]) p
++;
3678 if (pedantic
&& !lang_asm
)
3679 warning ("invalid preprocessing directive");
3685 error ("invalid preprocessing directive name");
3691 * Decode the keyword and call the appropriate expansion
3692 * routine, after moving the input pointer up to the next line.
3694 for (kt
= directive_table
; kt
->length
> 0; kt
++) {
3695 if (kt
->length
== ident_length
&& !bcmp (kt
->name
, ident
, ident_length
)) {
3696 register U_CHAR
*buf
;
3697 register U_CHAR
*limit
;
3700 int *already_output
;
3702 /* Nonzero means do not delete comments within the directive.
3703 #define needs this when -traditional. */
3708 limit
= ip
->buf
+ ip
->length
;
3711 keep_comments
= traditional
&& kt
->traditional_comments
;
3712 /* #import is defined only in Objective C, or when on the NeXT. */
3713 if (kt
->type
== T_IMPORT
3714 && !(objc
|| lookup ((U_CHAR
*) "__NeXT__", -1, -1)))
3717 /* Find the end of this directive (first newline not backslashed
3718 and not in a string or comment).
3719 Set COPY_DIRECTIVE if the directive must be copied
3720 (it contains a backslash-newline or a comment). */
3722 buf
= bp
= after_ident
;
3723 while (bp
< limit
) {
3724 register U_CHAR c
= *bp
++;
3732 } else if (traditional
)
3739 bp
= skip_quoted_string (bp
- 1, limit
, ip
->lineno
, &ip
->lineno
, ©_directive
, &unterminated
);
3740 /* Don't bother calling the directive if we already got an error
3741 message due to unterminated string. Skip everything and pretend
3742 we called the directive. */
3745 /* Traditional preprocessing permits unterminated strings. */
3754 /* <...> is special for #include. */
3756 if (!kt
->angle_brackets
)
3758 while (bp
< limit
&& *bp
!= '>' && *bp
!= '\n') {
3759 if (*bp
== '\\' && bp
[1] == '\n') {
3769 if (*bp
== '\\' && bp
[1] == '\n')
3772 || (cplusplus_comments
&& *bp
== '/')) {
3773 U_CHAR
*obp
= bp
- 1;
3775 skip_to_end_of_comment (ip
, &ip
->lineno
, 0);
3777 /* No need to copy the directive because of a comment at the end;
3778 just don't include the comment in the directive. */
3779 if (bp
== limit
|| *bp
== '\n') {
3783 /* Don't remove the comments if -traditional. */
3784 if (! keep_comments
)
3793 pedwarn ("%s in preprocessing directive", char_name
[c
]);
3797 --bp
; /* Point to the newline */
3805 resume_p
= ip
->bufp
;
3806 /* BP is the end of the directive.
3807 RESUME_P is the next interesting data after the directive.
3808 A comment may come between. */
3810 /* If a directive should be copied through, and -E was given,
3811 pass it through before removing comments. */
3812 if (!no_output
&& kt
->pass_thru
&& put_out_comments
) {
3815 /* Output directive name. */
3816 check_expand (op
, kt
->length
+ 2);
3817 /* Make sure # is at the start of a line */
3818 if (op
->bufp
> op
->buf
&& op
->bufp
[-1] != '\n') {
3823 bcopy (kt
->name
, op
->bufp
, kt
->length
);
3824 op
->bufp
+= kt
->length
;
3826 /* Output arguments. */
3828 check_expand (op
, len
);
3829 bcopy (buf
, (char *) op
->bufp
, len
);
3831 /* Take account of any (escaped) newlines just output. */
3833 if (buf
[len
] == '\n')
3836 already_output
= &junk
;
3837 } /* Don't we need a newline or #line? */
3839 if (copy_directive
) {
3840 register U_CHAR
*xp
= buf
;
3841 /* Need to copy entire directive into temp buffer before dispatching */
3843 cp
= (U_CHAR
*) alloca (bp
- buf
+ 5); /* room for directive plus
3847 /* Copy to the new buffer, deleting comments
3848 and backslash-newlines (and whitespace surrounding the latter). */
3851 register U_CHAR c
= *xp
++;
3856 abort (); /* A bare newline should never part of the line. */
3859 /* <...> is special for #include. */
3861 if (!kt
->angle_brackets
)
3863 while (xp
< bp
&& c
!= '>') {
3865 if (c
== '\\' && xp
< bp
&& *xp
== '\n')
3876 if (cp
!= buf
&& is_hor_space
[cp
[-1]]) {
3877 while (cp
- 1 != buf
&& is_hor_space
[cp
[-2]])
3879 SKIP_WHITE_SPACE (xp
);
3880 } else if (is_hor_space
[*xp
]) {
3882 SKIP_WHITE_SPACE (xp
);
3884 } else if (traditional
&& xp
< bp
) {
3892 register U_CHAR
*bp1
3893 = skip_quoted_string (xp
- 1, bp
, ip
->lineno
,
3894 NULL_PTR
, NULL_PTR
, NULL_PTR
);
3908 || (cplusplus_comments
&& *xp
== '/')) {
3910 /* If we already copied the directive through,
3911 already_output != 0 prevents outputting comment now. */
3912 skip_to_end_of_comment (ip
, already_output
, 0);
3914 while (xp
!= ip
->bufp
)
3916 /* Delete or replace the slash. */
3917 else if (traditional
)
3926 /* Null-terminate the copy. */
3932 ip
->bufp
= resume_p
;
3934 /* Some directives should be written out for cc1 to process,
3935 just as if they were not defined. And sometimes we're copying
3936 definitions through. */
3938 if (!no_output
&& already_output
== 0
3940 || (kt
->type
== T_DEFINE
3941 && (dump_macros
== dump_names
3942 || dump_macros
== dump_definitions
)))) {
3945 /* Output directive name. */
3946 check_expand (op
, kt
->length
+ 1);
3948 bcopy (kt
->name
, (char *) op
->bufp
, kt
->length
);
3949 op
->bufp
+= kt
->length
;
3951 if (kt
->pass_thru
|| dump_macros
== dump_definitions
) {
3952 /* Output arguments. */
3954 check_expand (op
, len
);
3955 bcopy (buf
, (char *) op
->bufp
, len
);
3957 } else if (kt
->type
== T_DEFINE
&& dump_macros
== dump_names
) {
3960 SKIP_WHITE_SPACE (xp
);
3962 while (is_idchar
[*xp
]) xp
++;
3964 check_expand (op
, len
+ 1);
3966 bcopy (yp
, op
->bufp
, len
);
3969 } /* Don't we need a newline or #line? */
3971 /* Call the appropriate directive handler. buf now points to
3972 either the appropriate place in the input buffer, or to
3973 the temp buffer if it was necessary to make one. cp
3974 points to the first char after the contents of the (possibly
3975 copied) directive, in either case. */
3976 (*kt
->func
) (buf
, cp
, op
, kt
);
3977 check_expand (op
, ip
->length
- (ip
->bufp
- ip
->buf
));
3983 /* It is deliberate that we don't warn about undefined directives.
3984 That is the responsibility of cc1. */
3991 static struct tm
*timebuf
;
3993 time_t t
= time ((time_t *) 0);
3994 timebuf
= localtime (&t
);
3999 static char *monthnames
[] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun",
4000 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec",
4004 * expand things like __FILE__. Place the expansion into the output
4005 * buffer *without* rescanning.
4009 special_symbol (hp
, op
)
4016 FILE_BUF
*ip
= NULL
;
4019 int paren
= 0; /* For special `defined' keyword */
4021 if (pcp_outfile
&& pcp_inside_if
4022 && hp
->type
!= T_SPEC_DEFINED
&& hp
->type
!= T_CONST
)
4023 error ("Predefined macro `%s' used inside `#if' during precompilation",
4026 for (i
= indepth
; i
>= 0; i
--)
4027 if (instack
[i
].fname
!= NULL
) {
4032 error ("cccp error: not in any file?!");
4033 return; /* the show must go on */
4041 if (hp
->type
== T_FILE
)
4042 string
= ip
->nominal_fname
;
4044 string
= instack
[0].nominal_fname
;
4048 buf
= (char *) alloca (3 + 4 * strlen (string
));
4049 quote_string (buf
, string
);
4057 case T_INCLUDE_LEVEL
:
4059 for (i
= indepth
; i
>= 0; i
--)
4060 if (instack
[i
].fname
!= NULL
)
4063 buf
= (char *) alloca (8); /* Eight bytes ought to be more than enough */
4064 sprintf (buf
, "%d", true_indepth
- 1);
4068 buf
= (char *) alloca (3 + strlen (version_string
));
4069 sprintf (buf
, "\"%s\"", version_string
);
4072 #ifndef NO_BUILTIN_SIZE_TYPE
4078 #ifndef NO_BUILTIN_PTRDIFF_TYPE
4079 case T_PTRDIFF_TYPE
:
4088 case T_USER_LABEL_PREFIX_TYPE
:
4089 buf
= USER_LABEL_PREFIX
;
4092 case T_REGISTER_PREFIX_TYPE
:
4093 buf
= REGISTER_PREFIX
;
4096 case T_IMMEDIATE_PREFIX_TYPE
:
4097 buf
= IMMEDIATE_PREFIX
;
4101 buf
= hp
->value
.cpval
;
4102 if (pcp_inside_if
&& pcp_outfile
)
4103 /* Output a precondition for this macro use */
4104 fprintf (pcp_outfile
, "#define %s %s\n", hp
->name
, buf
);
4108 buf
= (char *) alloca (10);
4109 sprintf (buf
, "%d", ip
->lineno
);
4114 buf
= (char *) alloca (20);
4115 timebuf
= timestamp ();
4116 if (hp
->type
== T_DATE
)
4117 sprintf (buf
, "\"%s %2d %4d\"", monthnames
[timebuf
->tm_mon
],
4118 timebuf
->tm_mday
, timebuf
->tm_year
+ 1900);
4120 sprintf (buf
, "\"%02d:%02d:%02d\"", timebuf
->tm_hour
, timebuf
->tm_min
,
4124 case T_SPEC_DEFINED
:
4125 buf
= " 0 "; /* Assume symbol is not defined */
4126 ip
= &instack
[indepth
];
4127 SKIP_WHITE_SPACE (ip
->bufp
);
4128 if (*ip
->bufp
== '(') {
4130 ip
->bufp
++; /* Skip over the paren */
4131 SKIP_WHITE_SPACE (ip
->bufp
);
4134 if (!is_idstart
[*ip
->bufp
])
4136 if ((hp
= lookup (ip
->bufp
, -1, -1))) {
4137 if (pcp_outfile
&& pcp_inside_if
4138 && (hp
->type
== T_CONST
4139 || (hp
->type
== T_MACRO
&& hp
->value
.defn
->predefined
)))
4140 /* Output a precondition for this macro use. */
4141 fprintf (pcp_outfile
, "#define %s\n", hp
->name
);
4145 if (pcp_outfile
&& pcp_inside_if
) {
4146 /* Output a precondition for this macro use */
4147 U_CHAR
*cp
= ip
->bufp
;
4148 fprintf (pcp_outfile
, "#undef ");
4149 while (is_idchar
[*cp
]) /* Ick! */
4150 fputc (*cp
++, pcp_outfile
);
4151 putc ('\n', pcp_outfile
);
4153 while (is_idchar
[*ip
->bufp
])
4155 SKIP_WHITE_SPACE (ip
->bufp
);
4157 if (*ip
->bufp
!= ')')
4165 error ("`defined' without an identifier");
4169 error ("cccp error: invalid special hash type"); /* time for gdb */
4173 check_expand (op
, len
);
4174 bcopy (buf
, (char *) op
->bufp
, len
);
4181 /* Routines to handle #directives */
4183 /* Handle #include and #import.
4184 This function expects to see "fname" or <fname> on the input. */
4187 do_include (buf
, limit
, op
, keyword
)
4188 U_CHAR
*buf
, *limit
;
4190 struct directive
*keyword
;
4192 U_CHAR
*importing
= keyword
->type
== T_IMPORT
? (U_CHAR
*) "" : (U_CHAR
*) 0;
4193 int skip_dirs
= (keyword
->type
== T_INCLUDE_NEXT
);
4194 static int import_warning
= 0;
4195 char *fname
; /* Dynamically allocated fname buffer */
4198 char *fbeg
, *fend
; /* Beginning and end of fname */
4201 struct file_name_list
*search_start
= include
; /* Chain of dirs to search */
4202 struct file_name_list
*dsp
; /* First in chain, if #include "..." */
4203 struct file_name_list
*searchptr
= 0;
4206 int f
= -3; /* file number */
4207 struct include_file
*inc
= 0;
4209 int retried
= 0; /* Have already tried macro
4210 expanding the include line*/
4211 int angle_brackets
= 0; /* 0 for "...", 1 for <...> */
4217 if (importing
&& warn_import
&& !inhibit_warnings
4218 && !instack
[indepth
].system_header_p
&& !import_warning
) {
4220 warning ("using `#import' is not recommended");
4221 fprintf (stderr
, "The fact that a certain header file need not be processed more than once\n");
4222 fprintf (stderr
, "should be indicated in the header file, not where it is used.\n");
4223 fprintf (stderr
, "The best way to do this is with a conditional of this form:\n\n");
4224 fprintf (stderr
, " #ifndef _FOO_H_INCLUDED\n");
4225 fprintf (stderr
, " #define _FOO_H_INCLUDED\n");
4226 fprintf (stderr
, " ... <real contents of file> ...\n");
4227 fprintf (stderr
, " #endif /* Not _FOO_H_INCLUDED */\n\n");
4228 fprintf (stderr
, "Then users can use `#include' any number of times.\n");
4229 fprintf (stderr
, "GNU C automatically avoids processing the file more than once\n");
4230 fprintf (stderr
, "when it is equipped with such a conditional.\n");
4236 SKIP_WHITE_SPACE (fin
);
4237 /* Discard trailing whitespace so we can easily see
4238 if we have parsed all the significant chars we were given. */
4239 while (limit
!= fin
&& is_hor_space
[limit
[-1]]) limit
--;
4240 fbeg
= fend
= (char *) alloca (limit
- fin
);
4246 /* Copy the operand text, concatenating the strings. */
4248 while (fin
!= limit
) {
4249 while (fin
!= limit
&& *fin
!= '\"')
4254 /* If not at the end, there had better be another string. */
4255 /* Skip just horiz space, and don't go past limit. */
4256 while (fin
!= limit
&& is_hor_space
[*fin
]) fin
++;
4257 if (fin
!= limit
&& *fin
== '\"')
4264 /* We have "filename". Figure out directory this source
4265 file is coming from and put it on the front of the list. */
4267 /* If -I- was specified, don't search current dir, only spec'd ones. */
4268 if (ignore_srcdir
) break;
4270 for (fp
= &instack
[indepth
]; fp
>= instack
; fp
--)
4275 if ((nam
= fp
->nominal_fname
) != NULL
) {
4276 /* Found a named file. Figure out dir of the file,
4277 and put it in front of the search list. */
4278 dsp
= ((struct file_name_list
*)
4279 alloca (sizeof (struct file_name_list
) + strlen (nam
)));
4280 strcpy (dsp
->fname
, nam
);
4281 simplify_filename (dsp
->fname
);
4282 nam
= base_name (dsp
->fname
);
4284 /* But for efficiency's sake, do not insert the dir
4285 if it matches the search list's first dir. */
4286 dsp
->next
= search_start
;
4287 if (!search_start
|| strcmp (dsp
->fname
, search_start
->fname
)) {
4289 n
= nam
- dsp
->fname
;
4290 if (n
+ INCLUDE_LEN_FUDGE
> max_include_len
)
4291 max_include_len
= n
+ INCLUDE_LEN_FUDGE
;
4293 dsp
[0].got_name_map
= 0;
4301 while (fin
!= limit
&& *fin
!= '>')
4303 if (*fin
== '>' && fin
+ 1 == limit
) {
4305 /* If -I-, start with the first -I dir after the -I-. */
4306 search_start
= first_bracket_include
;
4314 * Support '#include xyz' like VAX-C to allow for easy use of all the
4315 * decwindow include files. It defaults to '#include <xyz.h>' (so the
4316 * code from case '<' is repeated here) and generates a warning.
4317 * (Note: macro expansion of `xyz' takes precedence.)
4319 if (retried
&& isalpha(*(U_CHAR
*) (--fbeg
))) {
4320 while (fin
!= limit
&& (!isspace(*fin
)))
4322 warning ("VAX-C-style include specification found, use '#include <filename.h>' !");
4325 /* If -I-, start with the first -I dir after the -I-. */
4326 search_start
= first_bracket_include
;
4334 error ("`#%s' expects \"FILENAME\" or <FILENAME>", keyword
->name
);
4337 /* Expand buffer and then remove any newline markers.
4338 We can't just tell expand_to_temp_buffer to omit the markers,
4339 since it would put extra spaces in include file names. */
4342 trybuf
= expand_to_temp_buffer (buf
, limit
, 1, 0);
4344 buf
= (U_CHAR
*) alloca (trybuf
.bufp
- trybuf
.buf
+ 1);
4346 while (src
!= trybuf
.bufp
) {
4347 switch ((*limit
++ = *src
++)) {
4356 U_CHAR
*src1
= skip_quoted_string (src
- 1, trybuf
.bufp
, 0,
4357 NULL_PTR
, NULL_PTR
, NULL_PTR
);
4371 /* For #include_next, skip in the search path
4372 past the dir in which the containing file was found. */
4375 for (fp
= &instack
[indepth
]; fp
>= instack
; fp
--)
4376 if (fp
->fname
!= NULL
) {
4377 /* fp->dir is null if the containing file was specified
4378 with an absolute file name. In that case, don't skip anything. */
4380 search_start
= fp
->dir
->next
;
4386 flen
= simplify_filename (fbeg
);
4390 error ("empty file name in `#%s'", keyword
->name
);
4394 /* Allocate this permanently, because it gets stored in the definitions
4396 fname
= xmalloc (max_include_len
+ flen
+ 1);
4397 /* + 1 above for terminating null. */
4399 system_include_depth
+= angle_brackets
;
4401 /* If specified file name is absolute, just open it. */
4403 if (absolute_filename (fbeg
)) {
4404 strcpy (fname
, fbeg
);
4405 f
= open_include_file (fname
, NULL_PTR
, importing
, &inc
);
4409 struct bypass_dir
*next
;
4411 struct file_name_list
*searchptr
;
4412 } **bypass_slot
= 0;
4414 /* Search directory path, trying to open the file.
4415 Copy each filename tried into FNAME. */
4417 for (searchptr
= search_start
; searchptr
; searchptr
= searchptr
->next
) {
4419 if (searchptr
== first_bracket_include
) {
4420 /* Go to bypass directory if we know we've seen this file before. */
4421 static struct bypass_dir
*bypass_hashtab
[INCLUDE_HASHSIZE
];
4422 struct bypass_dir
*p
;
4423 bypass_slot
= &bypass_hashtab
[hashf ((U_CHAR
*) fbeg
, flen
,
4425 for (p
= *bypass_slot
; p
; p
= p
->next
)
4426 if (!strcmp (fbeg
, p
->fname
)) {
4427 searchptr
= p
->searchptr
;
4433 strcpy (fname
, searchptr
->fname
);
4434 strcat (fname
, fbeg
);
4436 /* Change this 1/2 Unix 1/2 VMS file specification into a
4437 full VMS file specification */
4438 if (searchptr
->fname
[0]) {
4439 /* Fix up the filename */
4440 hack_vms_include_specification (fname
);
4442 /* This is a normal VMS filespec, so use it unchanged. */
4443 strcpy (fname
, fbeg
);
4444 /* if it's '#include filename', add the missing .h */
4445 if (index(fname
,'.')==NULL
) {
4446 strcat (fname
, ".h");
4450 f
= open_include_file (fname
, searchptr
, importing
, &inc
);
4452 if (bypass_slot
&& searchptr
!= first_bracket_include
) {
4453 /* This is the first time we found this include file,
4454 and we found it after first_bracket_include.
4455 Record its location so that we can bypass to here next time. */
4456 struct bypass_dir
*p
4457 = (struct bypass_dir
*) xmalloc (sizeof (struct bypass_dir
));
4458 p
->next
= *bypass_slot
;
4459 p
->fname
= fname
+ strlen (searchptr
->fname
);
4460 p
->searchptr
= searchptr
;
4466 /* Our VMS hacks can produce invalid filespecs, so don't worry
4467 about errors other than EACCES. */
4468 if (errno
== EACCES
)
4471 if (errno
!= ENOENT
)
4481 /* The file was already included. */
4483 /* If generating dependencies and -MG was specified, we assume missing
4484 files are leaf files, living in the same directory as the source file
4485 or other similar place; these missing files may be generated from
4486 other files and may not exist yet (eg: y.tab.h). */
4487 } else if (print_deps_missing_files
4488 && (system_include_depth
!= 0) < print_deps
)
4490 /* If it was requested as a system header file,
4491 then assume it belongs in the first place to look for such. */
4495 char *p
= (char *) alloca (strlen (search_start
->fname
)
4496 + strlen (fbeg
) + 1);
4497 strcpy (p
, search_start
->fname
);
4499 deps_output (p
, ' ');
4504 /* Otherwise, omit the directory, as if the file existed
4505 in the directory with the source. */
4506 deps_output (fbeg
, ' ');
4509 /* If -M was specified, and this header file won't be added to the
4510 dependency list, then don't count this as an error, because we can
4511 still produce correct output. Otherwise, we can't produce correct
4512 output, because there may be dependencies we need inside the missing
4513 file, and we don't know what directory this missing file exists in. */
4514 else if (0 < print_deps
&& print_deps
<= (system_include_depth
!= 0))
4515 warning ("No include path in which to find %s", fbeg
);
4517 error_from_errno (fbeg
);
4519 error ("No include path in which to find %s", fbeg
);
4523 /* Actually process the file. */
4525 pcftry
= (char *) alloca (strlen (fname
) + 30);
4532 sprintf (pcftry
, "%s%d", fname
, pcfnum
++);
4534 pcf
= open (pcftry
, O_RDONLY
, 0666);
4539 if (fstat (pcf
, &s
) != 0)
4540 pfatal_with_name (pcftry
);
4541 if (! INO_T_EQ (inc
->st
.st_ino
, s
.st_ino
)
4542 || inc
->st
.st_dev
!= s
.st_dev
)
4544 pcfbuf
= check_precompiled (pcf
, &s
, fname
, &pcfbuflimit
);
4545 /* Don't need it any more. */
4550 /* Don't need it at all. */
4555 } while (pcf
!= -1 && !pcfbuf
);
4558 /* Actually process the file */
4560 pcfname
= xmalloc (strlen (pcftry
) + 1);
4561 strcpy (pcfname
, pcftry
);
4562 pcfinclude ((U_CHAR
*) pcfbuf
, (U_CHAR
*) pcfbuflimit
,
4563 (U_CHAR
*) fname
, op
);
4566 finclude (f
, inc
, op
, is_system_include (fname
), searchptr
);
4569 system_include_depth
-= angle_brackets
;
4574 /* Return nonzero if the given FILENAME is an absolute pathname which
4575 designates a file within one of the known "system" include file
4576 directories. We assume here that if the given FILENAME looks like
4577 it is the name of a file which resides either directly in a "system"
4578 include file directory, or within any subdirectory thereof, then the
4579 given file must be a "system" include file. This function tells us
4580 if we should suppress pedantic errors/warnings for the given FILENAME.
4582 The value is 2 if the file is a C-language system header file
4583 for which C++ should (on most systems) assume `extern "C"'. */
4586 is_system_include (filename
)
4587 register char *filename
;
4589 struct file_name_list
*searchptr
;
4591 for (searchptr
= first_system_include
; searchptr
;
4592 searchptr
= searchptr
->next
)
4593 if (! strncmp (searchptr
->fname
, filename
, strlen (searchptr
->fname
)))
4594 return searchptr
->c_system_include_path
+ 1;
4598 /* Yield the non-directory suffix of a file name. */
4606 #if defined (__MSDOS__) || defined (_WIN32)
4607 if (isalpha (s
[0]) && s
[1] == ':') s
+= 2;
4610 if ((p
= rindex (s
, ':'))) s
= p
+ 1; /* Skip device. */
4611 if ((p
= rindex (s
, ']'))) s
= p
+ 1; /* Skip directory. */
4612 if ((p
= rindex (s
, '>'))) s
= p
+ 1; /* Skip alternate (int'n'l) dir. */
4616 if ((p
= rindex (s
, '/'))) s
= p
+ 1;
4617 #ifdef DIR_SEPARATOR
4618 if ((p
= rindex (s
, DIR_SEPARATOR
))) s
= p
+ 1;
4623 /* Yield nonzero if FILENAME is absolute (i.e. not relative). */
4626 absolute_filename (filename
)
4629 #if defined (__MSDOS__) || defined (_WIN32)
4630 if (isalpha (filename
[0]) && filename
[1] == ':') filename
+= 2;
4632 if (filename
[0] == '/') return 1;
4633 #ifdef DIR_SEPARATOR
4634 if (filename
[0] == DIR_SEPARATOR
) return 1;
4639 /* Remove unnecessary characters from FILENAME in place,
4640 to avoid unnecessary filename aliasing.
4641 Return the length of the resulting string.
4643 Do only the simplifications allowed by Posix.
4644 It is OK to miss simplifications on non-Posix hosts,
4645 since this merely leads to suboptimial results. */
4648 simplify_filename (filename
)
4651 register char *from
= filename
;
4652 register char *to
= filename
;
4655 /* Remove redundant initial /s. */
4658 if (*++from
== '/') {
4659 if (*++from
== '/') {
4660 /* 3 or more initial /s are equivalent to 1 /. */
4661 while (*++from
== '/')
4664 /* On some hosts // differs from /; Posix allows this. */
4665 static int slashslash_vs_slash
;
4666 if (slashslash_vs_slash
== 0) {
4668 slashslash_vs_slash
= ((stat ("/", &s1
) == 0 && stat ("//", &s2
) == 0
4669 && INO_T_EQ (s1
.st_ino
, s2
.st_ino
)
4670 && s1
.st_dev
== s2
.st_dev
)
4673 if (slashslash_vs_slash
< 0)
4681 if (from
[0] == '.' && from
[1] == '/')
4684 /* Copy this component and trailing /, if any. */
4685 while ((*to
++ = *from
++) != '/') {
4687 /* Trim . component at end of nonempty name. */
4688 to
-= filename
<= to
- 3 && to
[-3] == '/' && to
[-2] == '.';
4690 /* Trim unnecessary trailing /s. */
4691 while (to0
< --to
&& to
[-1] == '/')
4695 return to
- filename
;
4700 /* Skip /s after a /. */
4701 while (*from
== '/')
4706 /* The file_name_map structure holds a mapping of file names for a
4707 particular directory. This mapping is read from the file named
4708 FILE_NAME_MAP_FILE in that directory. Such a file can be used to
4709 map filenames on a file system with severe filename restrictions,
4710 such as DOS. The format of the file name map file is just a series
4711 of lines with two tokens on each line. The first token is the name
4712 to map, and the second token is the actual name to use. */
4714 struct file_name_map
4716 struct file_name_map
*map_next
;
4721 #define FILE_NAME_MAP_FILE "header.gcc"
4723 /* Read a space delimited string of unlimited length from a stdio
4727 read_filename_string (ch
, f
)
4735 set
= alloc
= xmalloc (len
+ 1);
4739 while ((ch
= getc (f
)) != EOF
&& ! is_space
[ch
])
4741 if (set
- alloc
== len
)
4744 alloc
= xrealloc (alloc
, len
+ 1);
4745 set
= alloc
+ len
/ 2;
4755 /* Read the file name map file for DIRNAME.
4756 If DIRNAME is empty, read the map file for the working directory;
4757 otherwise DIRNAME must end in '/'. */
4759 static struct file_name_map
*
4760 read_name_map (dirname
)
4763 /* This structure holds a linked list of file name maps, one per
4765 struct file_name_map_list
4767 struct file_name_map_list
*map_list_next
;
4768 char *map_list_name
;
4769 struct file_name_map
*map_list_map
;
4771 static struct file_name_map_list
*map_list
;
4772 register struct file_name_map_list
*map_list_ptr
;
4777 for (map_list_ptr
= map_list
; map_list_ptr
;
4778 map_list_ptr
= map_list_ptr
->map_list_next
)
4779 if (! strcmp (map_list_ptr
->map_list_name
, dirname
))
4780 return map_list_ptr
->map_list_map
;
4782 map_list_ptr
= ((struct file_name_map_list
*)
4783 xmalloc (sizeof (struct file_name_map_list
)));
4784 map_list_ptr
->map_list_name
= savestring (dirname
);
4785 map_list_ptr
->map_list_map
= NULL
;
4787 dirlen
= strlen (dirname
);
4788 name
= (char *) alloca (dirlen
+ strlen (FILE_NAME_MAP_FILE
) + 1);
4789 strcpy (name
, dirname
);
4790 strcat (name
, FILE_NAME_MAP_FILE
);
4791 f
= fopen (name
, "r");
4793 map_list_ptr
->map_list_map
= NULL
;
4798 while ((ch
= getc (f
)) != EOF
)
4801 struct file_name_map
*ptr
;
4806 from
= read_filename_string (ch
, f
);
4807 while ((ch
= getc (f
)) != EOF
&& is_hor_space
[ch
])
4809 to
= read_filename_string (ch
, f
);
4811 simplify_filename (from
);
4812 tolen
= simplify_filename (to
);
4814 ptr
= ((struct file_name_map
*)
4815 xmalloc (sizeof (struct file_name_map
)));
4816 ptr
->map_from
= from
;
4818 /* Make the real filename absolute. */
4819 if (absolute_filename (to
))
4823 ptr
->map_to
= xmalloc (dirlen
+ tolen
+ 1);
4824 strcpy (ptr
->map_to
, dirname
);
4825 strcat (ptr
->map_to
, to
);
4829 ptr
->map_next
= map_list_ptr
->map_list_map
;
4830 map_list_ptr
->map_list_map
= ptr
;
4832 while ((ch
= getc (f
)) != '\n')
4839 map_list_ptr
->map_list_next
= map_list
;
4840 map_list
= map_list_ptr
;
4842 return map_list_ptr
->map_list_map
;
4845 /* Try to open include file FILENAME. SEARCHPTR is the directory
4846 being tried from the include file search path.
4847 IMPORTING is "" if we are importing, null otherwise.
4848 Return -2 if found, either a matching name or a matching inode.
4849 Otherwise, open the file and return a file descriptor if successful
4850 or -1 if unsuccessful.
4851 Unless unsuccessful, put a descriptor of the included file into *PINC.
4852 This function maps filenames on file systems based on information read by
4856 open_include_file (filename
, searchptr
, importing
, pinc
)
4858 struct file_name_list
*searchptr
;
4860 struct include_file
**pinc
;
4862 char *fname
= remap_include_file (filename
, searchptr
);
4865 /* Look up FNAME in include_hashtab. */
4866 struct include_file
**phead
= &include_hashtab
[hashf ((U_CHAR
*) fname
,
4869 struct include_file
*inc
, *head
= *phead
;
4870 for (inc
= head
; inc
; inc
= inc
->next
)
4871 if (!strcmp (fname
, inc
->fname
))
4875 || ! inc
->control_macro
4876 || (inc
->control_macro
[0] && ! lookup (inc
->control_macro
, -1, -1))) {
4878 fd
= open (fname
, O_RDONLY
, 0);
4884 /* FNAME was not in include_hashtab; insert a new entry. */
4885 inc
= (struct include_file
*) xmalloc (sizeof (struct include_file
));
4888 inc
->control_macro
= 0;
4889 inc
->deps_output
= 0;
4890 if (fstat (fd
, &inc
->st
) != 0)
4891 pfatal_with_name (fname
);
4894 /* Look for another file with the same inode and device. */
4895 if (lookup_ino_include (inc
)
4896 && inc
->control_macro
4897 && (!inc
->control_macro
[0] || lookup (inc
->control_macro
, -1, -1))) {
4903 /* For -M, add this file to the dependencies. */
4904 if (! inc
->deps_output
&& (system_include_depth
!= 0) < print_deps
) {
4905 inc
->deps_output
= 1;
4906 deps_output (fname
, ' ');
4909 /* Handle -H option. */
4910 if (print_include_names
)
4911 fprintf (stderr
, "%*s%s\n", indepth
, "", fname
);
4915 inc
->control_macro
= importing
;
4921 /* Return the remapped name of the the include file FILENAME.
4922 SEARCHPTR is the directory being tried from the include file path. */
4925 remap_include_file (filename
, searchptr
)
4927 struct file_name_list
*searchptr
;
4929 register struct file_name_map
*map
;
4930 register char *from
;
4934 if (! searchptr
->got_name_map
)
4936 searchptr
->name_map
= read_name_map (searchptr
->fname
);
4937 searchptr
->got_name_map
= 1;
4940 /* Check the mapping for the directory we are using. */
4941 from
= filename
+ strlen (searchptr
->fname
);
4942 for (map
= searchptr
->name_map
; map
; map
= map
->map_next
)
4943 if (! strcmp (map
->map_from
, from
))
4947 from
= base_name (filename
);
4949 if (from
!= filename
|| !searchptr
)
4951 /* Try to find a mapping file for the particular directory we are
4952 looking in. Thus #include <sys/types.h> will look up sys/types.h
4953 in /usr/include/header.gcc and look up types.h in
4954 /usr/include/sys/header.gcc. */
4956 char *dir
= (char *) alloca (from
- filename
+ 1);
4957 bcopy (filename
, dir
, from
- filename
);
4958 dir
[from
- filename
] = '\0';
4960 for (map
= read_name_map (dir
); map
; map
= map
->map_next
)
4961 if (! strcmp (map
->map_from
, from
))
4968 /* Insert INC into the include file table, hashed by device and inode number.
4969 If a file with different name but same dev+ino was already in the table,
4970 return 1 and set INC's control macro to the already-known macro. */
4973 lookup_ino_include (inc
)
4974 struct include_file
*inc
;
4976 int hash
= ((unsigned) (inc
->st
.st_dev
+ INO_T_HASH (inc
->st
.st_ino
))
4977 % INCLUDE_HASHSIZE
);
4978 struct include_file
*i
= include_ino_hashtab
[hash
];
4980 include_ino_hashtab
[hash
] = inc
;
4982 for (; i
; i
= i
->next_ino
)
4983 if (INO_T_EQ (inc
->st
.st_ino
, i
->st
.st_ino
)
4984 && inc
->st
.st_dev
== i
->st
.st_dev
) {
4985 inc
->control_macro
= i
->control_macro
;
4992 /* Process file descriptor F, which corresponds to include file INC,
4994 SYSTEM_HEADER_P is 1 if this file resides in any one of the known
4995 "system" include directories (as decided by the `is_system_include'
4997 DIRPTR is the link in the dir path through which this file was found,
4998 or 0 if the file name was absolute. */
5001 finclude (f
, inc
, op
, system_header_p
, dirptr
)
5003 struct include_file
*inc
;
5005 int system_header_p
;
5006 struct file_name_list
*dirptr
;
5008 char *fname
= inc
->fname
;
5010 FILE_BUF
*fp
; /* For input stack frame */
5011 int missing_newline
= 0;
5013 CHECK_DEPTH (return;);
5015 fp
= &instack
[indepth
+ 1];
5016 bzero ((char *) fp
, sizeof (FILE_BUF
));
5017 fp
->nominal_fname
= fp
->fname
= fname
;
5021 fp
->if_stack
= if_stack
;
5022 fp
->system_header_p
= system_header_p
;
5025 if (S_ISREG (inc
->st
.st_mode
)) {
5026 fp
->buf
= (U_CHAR
*) xmalloc (inc
->st
.st_size
+ 2);
5029 /* Read the file contents, knowing that inc->st.st_size is an upper bound
5030 on the number of bytes we can read. */
5031 fp
->length
= safe_read (f
, (char *) fp
->buf
, inc
->st
.st_size
);
5032 if (fp
->length
< 0) goto nope
;
5034 else if (S_ISDIR (inc
->st
.st_mode
)) {
5035 error ("directory `%s' specified in #include", fname
);
5039 /* Cannot count its file size before reading.
5040 First read the entire file into heap and
5041 copy them into buffer on stack. */
5046 fp
->buf
= (U_CHAR
*) xmalloc (bsize
+ 2);
5049 i
= safe_read (f
, (char *) fp
->buf
+ st_size
, bsize
- st_size
);
5051 goto nope
; /* error! */
5053 if (st_size
!= bsize
)
5054 break; /* End of file */
5056 fp
->buf
= (U_CHAR
*) xrealloc (fp
->buf
, bsize
+ 2);
5059 fp
->length
= st_size
;
5062 if ((fp
->length
> 0 && fp
->buf
[fp
->length
- 1] != '\n')
5063 /* Backslash-newline at end is not good enough. */
5064 || (fp
->length
> 1 && fp
->buf
[fp
->length
- 2] == '\\')) {
5065 fp
->buf
[fp
->length
++] = '\n';
5066 missing_newline
= 1;
5068 fp
->buf
[fp
->length
] = '\0';
5070 /* Close descriptor now, so nesting does not use lots of descriptors. */
5073 /* Must do this before calling trigraph_pcp, so that the correct file name
5074 will be printed in warning messages. */
5077 input_file_stack_tick
++;
5082 output_line_directive (fp
, op
, 0, enter_file
);
5085 if (missing_newline
)
5088 if (pedantic
&& missing_newline
)
5089 pedwarn ("file does not end in newline");
5092 input_file_stack_tick
++;
5093 output_line_directive (&instack
[indepth
], op
, 0, leave_file
);
5099 perror_with_name (fname
);
5104 /* Record that inclusion of the include file INC
5105 should be controlled by the macro named MACRO_NAME.
5106 This means that trying to include the file again
5107 will do something if that macro is defined. */
5110 record_control_macro (inc
, macro_name
)
5111 struct include_file
*inc
;
5114 if (!inc
->control_macro
|| inc
->control_macro
[0])
5115 inc
->control_macro
= macro_name
;
5118 /* Load the specified precompiled header into core, and verify its
5119 preconditions. PCF indicates the file descriptor to read, which must
5120 be a regular file. *ST is its file status.
5121 FNAME indicates the file name of the original header.
5122 *LIMIT will be set to an address one past the end of the file.
5123 If the preconditions of the file are not satisfied, the buffer is
5124 freed and we return 0. If the preconditions are satisfied, return
5125 the address of the buffer following the preconditions. The buffer, in
5126 this case, should never be freed because various pieces of it will
5127 be referred to until all precompiled strings are output at the end of
5131 check_precompiled (pcf
, st
, fname
, limit
)
5144 if (S_ISREG (st
->st_mode
))
5146 buf
= xmalloc (st
->st_size
+ 2);
5147 length
= safe_read (pcf
, buf
, st
->st_size
);
5154 if (length
> 0 && buf
[length
-1] != '\n')
5155 buf
[length
++] = '\n';
5158 *limit
= buf
+ length
;
5160 /* File is in core. Check the preconditions. */
5161 if (!check_preconditions (buf
))
5163 for (cp
= buf
; *cp
; cp
++)
5166 fprintf (stderr
, "Using preinclude %s\n", fname
);
5172 fprintf (stderr
, "Cannot use preinclude %s\n", fname
);
5178 /* PREC (null terminated) points to the preconditions of a
5179 precompiled header. These are a series of #define and #undef
5180 lines which must match the current contents of the hash
5184 check_preconditions (prec
)
5191 lineend
= index (prec
, '\n');
5193 if (*prec
++ != '#') {
5194 error ("Bad format encountered while reading precompiled file");
5197 if (!strncmp (prec
, "define", 6)) {
5201 mdef
= create_definition ((U_CHAR
*) prec
, (U_CHAR
*) lineend
, NULL_PTR
);
5206 if ((hp
= lookup (mdef
.symnam
, mdef
.symlen
, -1)) == NULL
5207 || (hp
->type
!= T_MACRO
&& hp
->type
!= T_CONST
)
5208 || (hp
->type
== T_MACRO
5209 && !compare_defs (mdef
.defn
, hp
->value
.defn
)
5210 && (mdef
.defn
->length
!= 2
5211 || mdef
.defn
->expansion
[0] != '\n'
5212 || mdef
.defn
->expansion
[1] != ' ')))
5214 } else if (!strncmp (prec
, "undef", 5)) {
5219 while (is_hor_space
[(U_CHAR
) *prec
])
5222 while (is_idchar
[(U_CHAR
) *prec
])
5226 if (lookup ((U_CHAR
*) name
, len
, -1))
5229 error ("Bad format encountered while reading precompiled file");
5234 /* They all passed successfully */
5238 /* Process the main body of a precompiled file. BUF points to the
5239 string section of the file, following the preconditions. LIMIT is one
5240 character past the end. NAME is the name of the file being read
5241 in. OP is the main output buffer. */
5244 pcfinclude (buf
, limit
, name
, op
)
5245 U_CHAR
*buf
, *limit
, *name
;
5252 /* First in the file comes 4 bytes indicating the number of strings, */
5253 /* in network byte order. (MSB first). */
5255 nstrings
= (nstrings
<< 8) | *cp
++;
5256 nstrings
= (nstrings
<< 8) | *cp
++;
5257 nstrings
= (nstrings
<< 8) | *cp
++;
5259 /* Looping over each string... */
5260 while (nstrings
--) {
5261 U_CHAR
*string_start
;
5262 U_CHAR
*endofthiskey
;
5266 /* Each string starts with a STRINGDEF structure (str), followed */
5267 /* by the text of the string (string_start) */
5269 /* First skip to a longword boundary */
5270 /* ??? Why a 4-byte boundary? On all machines? */
5271 /* NOTE: This works correctly even if HOST_WIDE_INT
5272 is narrower than a pointer.
5273 Do not try risky measures here to get another type to use!
5274 Do not include stddef.h--it will fail! */
5275 if ((HOST_WIDE_INT
) cp
& 3)
5276 cp
+= 4 - ((HOST_WIDE_INT
) cp
& 3);
5278 /* Now get the string. */
5279 str
= (STRINGDEF
*) (GENERIC_PTR
) cp
;
5280 string_start
= cp
+= sizeof (STRINGDEF
);
5282 for (; *cp
; cp
++) /* skip the string */
5285 /* We need to macro expand the string here to ensure that the
5286 proper definition environment is in place. If it were only
5287 expanded when we find out it is needed, macros necessary for
5288 its proper expansion might have had their definitions changed. */
5289 tmpbuf
= expand_to_temp_buffer (string_start
, cp
++, 0, 0);
5290 /* Lineno is already set in the precompiled file */
5291 str
->contents
= tmpbuf
.buf
;
5292 str
->len
= tmpbuf
.length
;
5294 str
->filename
= name
;
5295 str
->output_mark
= outbuf
.bufp
- outbuf
.buf
;
5298 *stringlist_tailp
= str
;
5299 stringlist_tailp
= &str
->chain
;
5301 /* Next comes a fourbyte number indicating the number of keys
5304 nkeys
= (nkeys
<< 8) | *cp
++;
5305 nkeys
= (nkeys
<< 8) | *cp
++;
5306 nkeys
= (nkeys
<< 8) | *cp
++;
5308 /* If this number is -1, then the string is mandatory. */
5312 /* Otherwise, for each key, */
5313 for (; nkeys
--; free (tmpbuf
.buf
), cp
= endofthiskey
+ 1) {
5314 KEYDEF
*kp
= (KEYDEF
*) (GENERIC_PTR
) cp
;
5317 /* It starts with a KEYDEF structure */
5318 cp
+= sizeof (KEYDEF
);
5320 /* Find the end of the key. At the end of this for loop we
5321 advance CP to the start of the next key using this variable. */
5322 endofthiskey
= cp
+ strlen ((char *) cp
);
5325 /* Expand the key, and enter it into the hash table. */
5326 tmpbuf
= expand_to_temp_buffer (cp
, endofthiskey
, 0, 0);
5327 tmpbuf
.bufp
= tmpbuf
.buf
;
5329 while (is_hor_space
[*tmpbuf
.bufp
])
5331 if (!is_idstart
[*tmpbuf
.bufp
]
5332 || tmpbuf
.bufp
== tmpbuf
.buf
+ tmpbuf
.length
) {
5337 hp
= lookup (tmpbuf
.bufp
, -1, -1);
5340 install (tmpbuf
.bufp
, -1, T_PCSTRING
, (char *) kp
, -1);
5342 else if (hp
->type
== T_PCSTRING
) {
5343 kp
->chain
= hp
->value
.keydef
;
5344 hp
->value
.keydef
= kp
;
5350 /* This output_line_directive serves to switch us back to the current
5351 input file in case some of these strings get output (which will
5352 result in line directives for the header file being output). */
5353 output_line_directive (&instack
[indepth
], op
, 0, enter_file
);
5356 /* Called from rescan when it hits a key for strings. Mark them all
5357 used and clean up. */
5365 for (kp
= hp
->value
.keydef
; kp
; kp
= kp
->chain
)
5366 kp
->str
->writeflag
= 1;
5370 /* Write the output, interspersing precompiled strings in their
5371 appropriate places. */
5376 STRINGDEF
*next_string
;
5377 U_CHAR
*cur_buf_loc
;
5378 int line_directive_len
= 80;
5379 char *line_directive
= xmalloc (line_directive_len
);
5382 /* In each run through the loop, either cur_buf_loc ==
5383 next_string_loc, in which case we print a series of strings, or
5384 it is less than next_string_loc, in which case we write some of
5386 cur_buf_loc
= outbuf
.buf
;
5387 next_string
= stringlist
;
5389 while (cur_buf_loc
< outbuf
.bufp
|| next_string
) {
5391 && cur_buf_loc
- outbuf
.buf
== next_string
->output_mark
) {
5392 if (next_string
->writeflag
) {
5393 len
= 4 * strlen ((char *) next_string
->filename
) + 32;
5394 while (len
> line_directive_len
)
5395 line_directive
= xrealloc (line_directive
,
5396 line_directive_len
*= 2);
5397 sprintf (line_directive
, "\n# %d ", next_string
->lineno
);
5398 strcpy (quote_string (line_directive
+ strlen (line_directive
),
5399 (char *) next_string
->filename
),
5401 safe_write (fileno (stdout
), line_directive
, strlen (line_directive
));
5402 safe_write (fileno (stdout
),
5403 (char *) next_string
->contents
, next_string
->len
);
5405 next_string
= next_string
->chain
;
5409 ? (next_string
->output_mark
5410 - (cur_buf_loc
- outbuf
.buf
))
5411 : outbuf
.bufp
- cur_buf_loc
);
5413 safe_write (fileno (stdout
), (char *) cur_buf_loc
, len
);
5417 free (line_directive
);
5420 /* Pass a directive through to the output file.
5421 BUF points to the contents of the directive, as a contiguous string.
5422 LIMIT points to the first character past the end of the directive.
5423 KEYWORD is the keyword-table entry for the directive. */
5426 pass_thru_directive (buf
, limit
, op
, keyword
)
5427 U_CHAR
*buf
, *limit
;
5429 struct directive
*keyword
;
5431 register unsigned keyword_length
= keyword
->length
;
5433 check_expand (op
, 1 + keyword_length
+ (limit
- buf
));
5435 bcopy (keyword
->name
, (char *) op
->bufp
, keyword_length
);
5436 op
->bufp
+= keyword_length
;
5437 if (limit
!= buf
&& buf
[0] != ' ')
5439 bcopy ((char *) buf
, (char *) op
->bufp
, limit
- buf
);
5440 op
->bufp
+= (limit
- buf
);
5443 /* Count the line we have just made in the output,
5444 to get in sync properly. */
5449 /* The arglist structure is built by do_define to tell
5450 collect_definition where the argument names begin. That
5451 is, for a define like "#define f(x,y,z) foo+x-bar*y", the arglist
5452 would contain pointers to the strings x, y, and z.
5453 Collect_definition would then build a DEFINITION node,
5454 with reflist nodes pointing to the places x, y, and z had
5455 appeared. So the arglist is just convenience data passed
5456 between these two routines. It is not kept around after
5457 the current #define has been processed and entered into the
5461 struct arglist
*next
;
5468 /* Create a DEFINITION node from a #define directive. Arguments are
5469 as for do_define. */
5472 create_definition (buf
, limit
, op
)
5473 U_CHAR
*buf
, *limit
;
5476 U_CHAR
*bp
; /* temp ptr into input buffer */
5477 U_CHAR
*symname
; /* remember where symbol name starts */
5478 int sym_length
; /* and how long it is */
5479 int line
= instack
[indepth
].lineno
;
5480 char *file
= instack
[indepth
].nominal_fname
;
5484 int arglengths
= 0; /* Accumulate lengths of arg names
5485 plus number of args. */
5490 while (is_hor_space
[*bp
])
5493 symname
= bp
; /* remember where it starts */
5494 sym_length
= check_macro_name (bp
, "macro");
5497 /* Lossage will occur if identifiers or control keywords are broken
5498 across lines using backslash. This is not the right place to take
5502 struct arglist
*arg_ptrs
= NULL
;
5505 bp
++; /* skip '(' */
5506 SKIP_WHITE_SPACE (bp
);
5508 /* Loop over macro argument names. */
5509 while (*bp
!= ')') {
5510 struct arglist
*temp
;
5512 temp
= (struct arglist
*) alloca (sizeof (struct arglist
));
5514 temp
->next
= arg_ptrs
;
5515 temp
->argno
= argno
++;
5516 temp
->rest_args
= 0;
5520 pedwarn ("another parameter follows `%s'",
5523 if (!is_idstart
[*bp
])
5524 pedwarn ("invalid character in macro parameter name");
5526 /* Find the end of the arg name. */
5527 while (is_idchar
[*bp
]) {
5529 /* do we have a "special" rest-args extension here? */
5530 if (limit
- bp
> REST_EXTENSION_LENGTH
&&
5531 bcmp (rest_extension
, bp
, REST_EXTENSION_LENGTH
) == 0) {
5533 temp
->rest_args
= 1;
5537 temp
->length
= bp
- temp
->name
;
5539 bp
+= REST_EXTENSION_LENGTH
;
5540 arglengths
+= temp
->length
+ 2;
5541 SKIP_WHITE_SPACE (bp
);
5542 if (temp
->length
== 0 || (*bp
!= ',' && *bp
!= ')')) {
5543 error ("badly punctuated parameter list in `#define'");
5548 SKIP_WHITE_SPACE (bp
);
5549 /* A comma at this point can only be followed by an identifier. */
5550 if (!is_idstart
[*bp
]) {
5551 error ("badly punctuated parameter list in `#define'");
5556 error ("unterminated parameter list in `#define'");
5560 struct arglist
*otemp
;
5562 for (otemp
= temp
->next
; otemp
!= NULL
; otemp
= otemp
->next
)
5563 if (temp
->length
== otemp
->length
&&
5564 bcmp (temp
->name
, otemp
->name
, temp
->length
) == 0) {
5565 error ("duplicate argument name `%.*s' in `#define'",
5566 temp
->length
, temp
->name
);
5572 ++bp
; /* skip paren */
5573 SKIP_WHITE_SPACE (bp
);
5574 /* now everything from bp before limit is the definition. */
5575 defn
= collect_expansion (bp
, limit
, argno
, arg_ptrs
);
5576 defn
->rest_args
= rest_args
;
5578 /* Now set defn->args.argnames to the result of concatenating
5579 the argument names in reverse order
5580 with comma-space between them. */
5581 defn
->args
.argnames
= (U_CHAR
*) xmalloc (arglengths
+ 1);
5583 struct arglist
*temp
;
5585 for (temp
= arg_ptrs
; temp
; temp
= temp
->next
) {
5586 bcopy (temp
->name
, &defn
->args
.argnames
[i
], temp
->length
);
5588 if (temp
->next
!= 0) {
5589 defn
->args
.argnames
[i
++] = ',';
5590 defn
->args
.argnames
[i
++] = ' ';
5593 defn
->args
.argnames
[i
] = 0;
5596 /* Simple expansion or empty definition. */
5600 if (is_hor_space
[*bp
]) {
5602 SKIP_WHITE_SPACE (bp
);
5603 } else if (sym_length
) {
5605 case '!': case '"': case '#': case '%': case '&': case '\'':
5606 case ')': case '*': case '+': case ',': case '-': case '.':
5607 case '/': case ':': case ';': case '<': case '=': case '>':
5608 case '?': case '[': case '\\': case ']': case '^': case '{':
5609 case '|': case '}': case '~':
5610 warning ("missing white space after `#define %.*s'",
5611 sym_length
, symname
);
5615 pedwarn ("missing white space after `#define %.*s'",
5616 sym_length
, symname
);
5621 /* Now everything from bp before limit is the definition. */
5622 defn
= collect_expansion (bp
, limit
, -1, NULL_PTR
);
5623 defn
->args
.argnames
= (U_CHAR
*) "";
5629 /* OP is null if this is a predefinition */
5630 defn
->predefined
= !op
;
5632 mdef
.symnam
= symname
;
5633 mdef
.symlen
= sym_length
;
5642 /* Process a #define directive.
5643 BUF points to the contents of the #define directive, as a contiguous string.
5644 LIMIT points to the first character past the end of the definition.
5645 KEYWORD is the keyword-table entry for #define. */
5648 do_define (buf
, limit
, op
, keyword
)
5649 U_CHAR
*buf
, *limit
;
5651 struct directive
*keyword
;
5656 /* If this is a precompiler run (with -pcp) pass thru #define directives. */
5657 if (pcp_outfile
&& op
)
5658 pass_thru_directive (buf
, limit
, op
, keyword
);
5660 mdef
= create_definition (buf
, limit
, op
);
5664 hashcode
= hashf (mdef
.symnam
, mdef
.symlen
, HASHSIZE
);
5668 if ((hp
= lookup (mdef
.symnam
, mdef
.symlen
, hashcode
)) != NULL
) {
5670 /* Redefining a precompiled key is ok. */
5671 if (hp
->type
== T_PCSTRING
)
5673 /* Redefining a macro is ok if the definitions are the same. */
5674 else if (hp
->type
== T_MACRO
)
5675 ok
= ! compare_defs (mdef
.defn
, hp
->value
.defn
);
5676 /* Redefining a constant is ok with -D. */
5677 else if (hp
->type
== T_CONST
)
5678 ok
= ! done_initializing
;
5679 /* Print the warning if it's not ok. */
5681 /* If we are passing through #define and #undef directives, do
5682 that for this re-definition now. */
5683 if (debug_output
&& op
)
5684 pass_thru_directive (buf
, limit
, op
, keyword
);
5686 pedwarn ("`%.*s' redefined", mdef
.symlen
, mdef
.symnam
);
5687 if (hp
->type
== T_MACRO
)
5688 pedwarn_with_file_and_line (hp
->value
.defn
->file
, hp
->value
.defn
->line
,
5689 "this is the location of the previous definition");
5691 /* Replace the old definition. */
5693 hp
->value
.defn
= mdef
.defn
;
5695 /* If we are passing through #define and #undef directives, do
5696 that for this new definition now. */
5697 if (debug_output
&& op
)
5698 pass_thru_directive (buf
, limit
, op
, keyword
);
5699 install (mdef
.symnam
, mdef
.symlen
, T_MACRO
,
5700 (char *) mdef
.defn
, hashcode
);
5711 /* Check a purported macro name SYMNAME, and yield its length.
5712 USAGE is the kind of name this is intended for. */
5715 check_macro_name (symname
, usage
)
5722 for (p
= symname
; is_idchar
[*p
]; p
++)
5724 sym_length
= p
- symname
;
5725 if (sym_length
== 0)
5726 error ("invalid %s name", usage
);
5727 else if (!is_idstart
[*symname
]
5728 || (sym_length
== 7 && ! bcmp (symname
, "defined", 7)))
5729 error ("invalid %s name `%.*s'", usage
, sym_length
, symname
);
5733 /* Return zero if two DEFINITIONs are isomorphic. */
5736 compare_defs (d1
, d2
)
5737 DEFINITION
*d1
, *d2
;
5739 register struct reflist
*a1
, *a2
;
5740 register U_CHAR
*p1
= d1
->expansion
;
5741 register U_CHAR
*p2
= d2
->expansion
;
5744 if (d1
->nargs
!= d2
->nargs
)
5746 if (strcmp ((char *)d1
->args
.argnames
, (char *)d2
->args
.argnames
))
5748 for (a1
= d1
->pattern
, a2
= d2
->pattern
; a1
&& a2
;
5749 a1
= a1
->next
, a2
= a2
->next
) {
5750 if (!((a1
->nchars
== a2
->nchars
&& ! bcmp (p1
, p2
, a1
->nchars
))
5751 || ! comp_def_part (first
, p1
, a1
->nchars
, p2
, a2
->nchars
, 0))
5752 || a1
->argno
!= a2
->argno
5753 || a1
->stringify
!= a2
->stringify
5754 || a1
->raw_before
!= a2
->raw_before
5755 || a1
->raw_after
!= a2
->raw_after
)
5763 if (comp_def_part (first
, p1
, d1
->length
- (p1
- d1
->expansion
),
5764 p2
, d2
->length
- (p2
- d2
->expansion
), 1))
5769 /* Return 1 if two parts of two macro definitions are effectively different.
5770 One of the parts starts at BEG1 and has LEN1 chars;
5771 the other has LEN2 chars at BEG2.
5772 Any sequence of whitespace matches any other sequence of whitespace.
5773 FIRST means these parts are the first of a macro definition;
5774 so ignore leading whitespace entirely.
5775 LAST means these parts are the last of a macro definition;
5776 so ignore trailing whitespace entirely. */
5779 comp_def_part (first
, beg1
, len1
, beg2
, len2
, last
)
5781 U_CHAR
*beg1
, *beg2
;
5785 register U_CHAR
*end1
= beg1
+ len1
;
5786 register U_CHAR
*end2
= beg2
+ len2
;
5788 while (beg1
!= end1
&& is_space
[*beg1
]) beg1
++;
5789 while (beg2
!= end2
&& is_space
[*beg2
]) beg2
++;
5792 while (beg1
!= end1
&& is_space
[end1
[-1]]) end1
--;
5793 while (beg2
!= end2
&& is_space
[end2
[-1]]) end2
--;
5795 while (beg1
!= end1
&& beg2
!= end2
) {
5796 if (is_space
[*beg1
] && is_space
[*beg2
]) {
5797 while (beg1
!= end1
&& is_space
[*beg1
]) beg1
++;
5798 while (beg2
!= end2
&& is_space
[*beg2
]) beg2
++;
5799 } else if (*beg1
== *beg2
) {
5803 return (beg1
!= end1
) || (beg2
!= end2
);
5806 /* Read a replacement list for a macro with parameters.
5807 Build the DEFINITION structure.
5808 Reads characters of text starting at BUF until END.
5809 ARGLIST specifies the formal parameters to look for
5810 in the text of the definition; NARGS is the number of args
5811 in that list, or -1 for a macro name that wants no argument list.
5812 MACRONAME is the macro name itself (so we can avoid recursive expansion)
5813 and NAMELEN is its length in characters.
5815 Note that comments, backslash-newlines, and leading white space
5816 have already been deleted from the argument. */
5818 /* If there is no trailing whitespace, a Newline Space is added at the end
5819 to prevent concatenation that would be contrary to the standard. */
5822 collect_expansion (buf
, end
, nargs
, arglist
)
5825 struct arglist
*arglist
;
5828 register U_CHAR
*p
, *limit
, *lastp
, *exp_p
;
5829 struct reflist
*endpat
= NULL
;
5830 /* Pointer to first nonspace after last ## seen. */
5832 /* Pointer to first nonspace after last single-# seen. */
5833 U_CHAR
*stringify
= 0;
5834 /* How those tokens were spelled. */
5835 enum sharp_token_type concat_sharp_token_type
= NO_SHARP_TOKEN
;
5836 enum sharp_token_type stringify_sharp_token_type
= NO_SHARP_TOKEN
;
5838 int expected_delimiter
= '\0';
5840 /* Scan thru the replacement list, ignoring comments and quoted
5841 strings, picking up on the macro calls. It does a linear search
5842 thru the arg list on every potential symbol. Profiling might say
5843 that something smarter should happen. */
5848 /* Find the beginning of the trailing whitespace. */
5851 while (p
< limit
&& is_space
[limit
[-1]]) limit
--;
5853 /* Allocate space for the text in the macro definition.
5854 Each input char may or may not need 1 byte,
5855 so this is an upper bound.
5856 The extra 3 are for invented trailing newline-marker and final null. */
5857 maxsize
= (sizeof (DEFINITION
)
5859 defn
= (DEFINITION
*) xcalloc (1, maxsize
);
5861 defn
->nargs
= nargs
;
5862 exp_p
= defn
->expansion
= (U_CHAR
*) defn
+ sizeof (DEFINITION
);
5867 : p
[0] == '%' && p
[1] == ':' && p
[2] == '%' && p
[3] == ':') {
5868 error ("`##' at start of macro definition");
5869 p
+= p
[0] == '#' ? 2 : 4;
5872 /* Process the main body of the definition. */
5874 int skipped_arg
= 0;
5875 register U_CHAR c
= *p
++;
5883 if (expected_delimiter
!= '\0') {
5884 if (c
== expected_delimiter
)
5885 expected_delimiter
= '\0';
5887 expected_delimiter
= c
;
5891 if (p
< limit
&& expected_delimiter
) {
5892 /* In a string, backslash goes through
5893 and makes next char ordinary. */
5899 if (!expected_delimiter
&& *p
== ':') {
5900 /* %: is not a digraph if preceded by an odd number of '<'s. */
5902 while (buf
< p0
&& p0
[-1] == '<')
5905 /* Treat %:%: as ## and %: as #. */
5906 if (p
[1] == '%' && p
[2] == ':') {
5908 goto sharp_sharp_token
;
5919 /* # is ordinary inside a string. */
5920 if (expected_delimiter
)
5924 /* ##: concatenate preceding and following tokens. */
5925 /* Take out the first #, discard preceding whitespace. */
5927 while (exp_p
> lastp
&& is_hor_space
[exp_p
[-1]])
5929 /* Skip the second #. */
5931 concat_sharp_token_type
= c
;
5932 if (is_hor_space
[*p
]) {
5933 concat_sharp_token_type
= c
+ 1;
5935 SKIP_WHITE_SPACE (p
);
5939 error ("`##' at end of macro definition");
5940 } else if (nargs
>= 0) {
5941 /* Single #: stringify following argument ref.
5942 Don't leave the # in the expansion. */
5945 stringify_sharp_token_type
= c
;
5946 if (is_hor_space
[*p
]) {
5947 stringify_sharp_token_type
= c
+ 1;
5949 SKIP_WHITE_SPACE (p
);
5951 if (! is_idstart
[*p
] || nargs
== 0)
5952 error ("`#' operator is not followed by a macro argument name");
5959 /* In -traditional mode, recognize arguments inside strings and
5960 and character constants, and ignore special properties of #.
5961 Arguments inside strings are considered "stringified", but no
5962 extra quote marks are supplied. */
5966 if (expected_delimiter
!= '\0') {
5967 if (c
== expected_delimiter
)
5968 expected_delimiter
= '\0';
5970 expected_delimiter
= c
;
5974 /* Backslash quotes delimiters and itself, but not macro args. */
5975 if (expected_delimiter
!= 0 && p
< limit
5976 && (*p
== expected_delimiter
|| *p
== '\\')) {
5983 if (expected_delimiter
!= '\0') /* No comments inside strings. */
5986 /* If we find a comment that wasn't removed by handle_directive,
5987 this must be -traditional. So replace the comment with
5990 while (++p
< limit
) {
5991 if (p
[0] == '*' && p
[1] == '/') {
5997 /* Mark this as a concatenation-point, as if it had been ##. */
6005 /* Handle the start of a symbol. */
6006 if (is_idchar
[c
] && nargs
> 0) {
6007 U_CHAR
*id_beg
= p
- 1;
6011 while (p
!= limit
&& is_idchar
[*p
]) p
++;
6012 id_len
= p
- id_beg
;
6014 if (is_idstart
[c
]) {
6015 register struct arglist
*arg
;
6017 for (arg
= arglist
; arg
!= NULL
; arg
= arg
->next
) {
6018 struct reflist
*tpat
;
6020 if (arg
->name
[0] == c
6021 && arg
->length
== id_len
6022 && bcmp (arg
->name
, id_beg
, id_len
) == 0) {
6023 enum sharp_token_type tpat_stringify
;
6024 if (expected_delimiter
) {
6025 if (warn_stringify
) {
6027 warning ("macro argument `%.*s' is stringified.",
6030 warning ("macro arg `%.*s' would be stringified with -traditional.",
6034 /* If ANSI, don't actually substitute inside a string. */
6037 tpat_stringify
= SHARP_TOKEN
;
6040 = (stringify
== id_beg
6041 ? stringify_sharp_token_type
: NO_SHARP_TOKEN
);
6043 /* make a pat node for this arg and append it to the end of
6045 tpat
= (struct reflist
*) xmalloc (sizeof (struct reflist
));
6048 = concat
== id_beg
? concat_sharp_token_type
: NO_SHARP_TOKEN
;
6049 tpat
->raw_after
= NO_SHARP_TOKEN
;
6050 tpat
->rest_args
= arg
->rest_args
;
6051 tpat
->stringify
= tpat_stringify
;
6054 defn
->pattern
= tpat
;
6056 endpat
->next
= tpat
;
6059 tpat
->argno
= arg
->argno
;
6060 tpat
->nchars
= exp_p
- lastp
;
6062 register U_CHAR
*p1
= p
;
6063 SKIP_WHITE_SPACE (p1
);
6066 : p1
[0]=='%' && p1
[1]==':' && p1
[2]=='%' && p1
[3]==':')
6067 tpat
->raw_after
= p1
[0] + (p
!= p1
);
6069 lastp
= exp_p
; /* place to start copying from next time */
6076 /* If this was not a macro arg, copy it into the expansion. */
6077 if (! skipped_arg
) {
6078 register U_CHAR
*lim1
= p
;
6082 if (stringify
== id_beg
)
6083 error ("`#' operator should be followed by a macro argument name");
6088 if (!traditional
&& expected_delimiter
== 0) {
6089 /* If ANSI, put in a newline-space marker to prevent token pasting.
6090 But not if "inside a string" (which in ANSI mode happens only for
6098 defn
->length
= exp_p
- defn
->expansion
;
6100 /* Crash now if we overrun the allocated size. */
6101 if (defn
->length
+ 1 > maxsize
)
6105 /* This isn't worth the time it takes. */
6106 /* give back excess storage */
6107 defn
->expansion
= (U_CHAR
*) xrealloc (defn
->expansion
, defn
->length
+ 1);
6114 do_assert (buf
, limit
, op
, keyword
)
6115 U_CHAR
*buf
, *limit
;
6117 struct directive
*keyword
;
6119 U_CHAR
*bp
; /* temp ptr into input buffer */
6120 U_CHAR
*symname
; /* remember where symbol name starts */
6121 int sym_length
; /* and how long it is */
6122 struct arglist
*tokens
= NULL
;
6124 if (pedantic
&& done_initializing
&& !instack
[indepth
].system_header_p
)
6125 pedwarn ("ANSI C does not allow `#assert'");
6129 while (is_hor_space
[*bp
])
6132 symname
= bp
; /* remember where it starts */
6133 sym_length
= check_macro_name (bp
, "assertion");
6135 /* #define doesn't do this, but we should. */
6136 SKIP_WHITE_SPACE (bp
);
6138 /* Lossage will occur if identifiers or control tokens are broken
6139 across lines using backslash. This is not the right place to take
6143 error ("missing token-sequence in `#assert'");
6150 bp
++; /* skip '(' */
6151 SKIP_WHITE_SPACE (bp
);
6153 tokens
= read_token_list (&bp
, limit
, &error_flag
);
6157 error ("empty token-sequence in `#assert'");
6161 ++bp
; /* skip paren */
6162 SKIP_WHITE_SPACE (bp
);
6165 /* If this name isn't already an assertion name, make it one.
6166 Error if it was already in use in some other way. */
6169 ASSERTION_HASHNODE
*hp
;
6170 int hashcode
= hashf (symname
, sym_length
, ASSERTION_HASHSIZE
);
6171 struct tokenlist_list
*value
6172 = (struct tokenlist_list
*) xmalloc (sizeof (struct tokenlist_list
));
6174 hp
= assertion_lookup (symname
, sym_length
, hashcode
);
6176 if (sym_length
== 7 && ! bcmp (symname
, "defined", 7))
6177 error ("`defined' redefined as assertion");
6178 hp
= assertion_install (symname
, sym_length
, hashcode
);
6181 /* Add the spec'd token-sequence to the list of such. */
6182 value
->tokens
= tokens
;
6183 value
->next
= hp
->value
;
6191 do_unassert (buf
, limit
, op
, keyword
)
6192 U_CHAR
*buf
, *limit
;
6194 struct directive
*keyword
;
6196 U_CHAR
*bp
; /* temp ptr into input buffer */
6197 U_CHAR
*symname
; /* remember where symbol name starts */
6198 int sym_length
; /* and how long it is */
6200 struct arglist
*tokens
= NULL
;
6201 int tokens_specified
= 0;
6203 if (pedantic
&& done_initializing
&& !instack
[indepth
].system_header_p
)
6204 pedwarn ("ANSI C does not allow `#unassert'");
6208 while (is_hor_space
[*bp
])
6211 symname
= bp
; /* remember where it starts */
6212 sym_length
= check_macro_name (bp
, "assertion");
6214 /* #define doesn't do this, but we should. */
6215 SKIP_WHITE_SPACE (bp
);
6217 /* Lossage will occur if identifiers or control tokens are broken
6218 across lines using backslash. This is not the right place to take
6224 bp
++; /* skip '(' */
6225 SKIP_WHITE_SPACE (bp
);
6227 tokens
= read_token_list (&bp
, limit
, &error_flag
);
6231 error ("empty token list in `#unassert'");
6235 tokens_specified
= 1;
6237 ++bp
; /* skip paren */
6238 SKIP_WHITE_SPACE (bp
);
6242 ASSERTION_HASHNODE
*hp
;
6243 int hashcode
= hashf (symname
, sym_length
, ASSERTION_HASHSIZE
);
6244 struct tokenlist_list
*tail
, *prev
;
6246 hp
= assertion_lookup (symname
, sym_length
, hashcode
);
6250 /* If no token list was specified, then eliminate this assertion
6252 if (! tokens_specified
) {
6253 struct tokenlist_list
*next
;
6254 for (tail
= hp
->value
; tail
; tail
= next
) {
6256 free_token_list (tail
->tokens
);
6259 delete_assertion (hp
);
6261 /* If a list of tokens was given, then delete any matching list. */
6266 struct tokenlist_list
*next
= tail
->next
;
6267 if (compare_token_lists (tail
->tokens
, tokens
)) {
6271 hp
->value
= tail
->next
;
6272 free_token_list (tail
->tokens
);
6285 /* Test whether there is an assertion named NAME
6286 and optionally whether it has an asserted token list TOKENS.
6287 NAME is not null terminated; its length is SYM_LENGTH.
6288 If TOKENS_SPECIFIED is 0, then don't check for any token list. */
6291 check_assertion (name
, sym_length
, tokens_specified
, tokens
)
6294 int tokens_specified
;
6295 struct arglist
*tokens
;
6297 ASSERTION_HASHNODE
*hp
;
6298 int hashcode
= hashf (name
, sym_length
, ASSERTION_HASHSIZE
);
6300 if (pedantic
&& !instack
[indepth
].system_header_p
)
6301 pedwarn ("ANSI C does not allow testing assertions");
6303 hp
= assertion_lookup (name
, sym_length
, hashcode
);
6305 /* It is not an assertion; just return false. */
6308 /* If no token list was specified, then value is 1. */
6309 if (! tokens_specified
)
6313 struct tokenlist_list
*tail
;
6317 /* If a list of tokens was given,
6318 then succeed if the assertion records a matching list. */
6321 if (compare_token_lists (tail
->tokens
, tokens
))
6326 /* Fail if the assertion has no matching list. */
6331 /* Compare two lists of tokens for equality including order of tokens. */
6334 compare_token_lists (l1
, l2
)
6335 struct arglist
*l1
, *l2
;
6338 if (l1
->length
!= l2
->length
)
6340 if (bcmp (l1
->name
, l2
->name
, l1
->length
))
6346 /* Succeed if both lists end at the same time. */
6350 /* Read a space-separated list of tokens ending in a close parenthesis.
6351 Return a list of strings, in the order they were written.
6352 (In case of error, return 0 and store -1 in *ERROR_FLAG.)
6353 Parse the text starting at *BPP, and update *BPP.
6354 Don't parse beyond LIMIT. */
6356 static struct arglist
*
6357 read_token_list (bpp
, limit
, error_flag
)
6362 struct arglist
*token_ptrs
= 0;
6368 /* Loop over the assertion value tokens. */
6370 struct arglist
*temp
;
6374 /* Find the end of the token. */
6378 } else if (*bp
== ')') {
6383 } else if (*bp
== '"' || *bp
== '\'')
6384 bp
= skip_quoted_string (bp
, limit
, 0, NULL_PTR
, NULL_PTR
, &eofp
);
6386 while (! is_hor_space
[*bp
] && *bp
!= '(' && *bp
!= ')'
6387 && *bp
!= '"' && *bp
!= '\'' && bp
!= limit
)
6390 temp
= (struct arglist
*) xmalloc (sizeof (struct arglist
));
6391 temp
->name
= (U_CHAR
*) xmalloc (bp
- beg
+ 1);
6392 bcopy ((char *) beg
, (char *) temp
->name
, bp
- beg
);
6393 temp
->name
[bp
- beg
] = 0;
6394 temp
->next
= token_ptrs
;
6396 temp
->length
= bp
- beg
;
6398 SKIP_WHITE_SPACE (bp
);
6401 error ("unterminated token sequence in `#assert' or `#unassert'");
6408 /* We accumulated the names in reverse order.
6409 Now reverse them to get the proper order. */
6411 register struct arglist
*prev
= 0, *this, *next
;
6412 for (this = token_ptrs
; this; this = next
) {
6422 free_token_list (tokens
)
6423 struct arglist
*tokens
;
6426 struct arglist
*next
= tokens
->next
;
6427 free (tokens
->name
);
6433 /* Install a name in the assertion hash table.
6435 If LEN is >= 0, it is the length of the name.
6436 Otherwise, compute the length by scanning the entire name.
6438 If HASH is >= 0, it is the precomputed hash code.
6439 Otherwise, compute the hash code. */
6441 static ASSERTION_HASHNODE
*
6442 assertion_install (name
, len
, hash
)
6447 register ASSERTION_HASHNODE
*hp
;
6448 register int i
, bucket
;
6449 register U_CHAR
*p
, *q
;
6451 i
= sizeof (ASSERTION_HASHNODE
) + len
+ 1;
6452 hp
= (ASSERTION_HASHNODE
*) xmalloc (i
);
6454 hp
->bucket_hdr
= &assertion_hashtab
[bucket
];
6455 hp
->next
= assertion_hashtab
[bucket
];
6456 assertion_hashtab
[bucket
] = hp
;
6458 if (hp
->next
!= NULL
)
6459 hp
->next
->prev
= hp
;
6462 hp
->name
= ((U_CHAR
*) hp
) + sizeof (ASSERTION_HASHNODE
);
6465 for (i
= 0; i
< len
; i
++)
6471 /* Find the most recent hash node for name name (ending with first
6472 non-identifier char) installed by install
6474 If LEN is >= 0, it is the length of the name.
6475 Otherwise, compute the length by scanning the entire name.
6477 If HASH is >= 0, it is the precomputed hash code.
6478 Otherwise, compute the hash code. */
6480 static ASSERTION_HASHNODE
*
6481 assertion_lookup (name
, len
, hash
)
6486 register ASSERTION_HASHNODE
*bucket
;
6488 bucket
= assertion_hashtab
[hash
];
6490 if (bucket
->length
== len
&& bcmp (bucket
->name
, name
, len
) == 0)
6492 bucket
= bucket
->next
;
6498 delete_assertion (hp
)
6499 ASSERTION_HASHNODE
*hp
;
6502 if (hp
->prev
!= NULL
)
6503 hp
->prev
->next
= hp
->next
;
6504 if (hp
->next
!= NULL
)
6505 hp
->next
->prev
= hp
->prev
;
6507 /* Make sure that the bucket chain header that the deleted guy was
6508 on points to the right thing afterwards. */
6509 if (hp
== *hp
->bucket_hdr
)
6510 *hp
->bucket_hdr
= hp
->next
;
6516 * interpret #line directive. Remembers previously seen fnames
6517 * in its very own hash table.
6519 #define FNAME_HASHSIZE 37
6522 do_line (buf
, limit
, op
, keyword
)
6523 U_CHAR
*buf
, *limit
;
6525 struct directive
*keyword
;
6527 register U_CHAR
*bp
;
6528 FILE_BUF
*ip
= &instack
[indepth
];
6531 enum file_change_code file_change
= same_file
;
6533 /* Expand any macros. */
6534 tem
= expand_to_temp_buffer (buf
, limit
, 0, 0);
6536 /* Point to macroexpanded line, which is null-terminated now. */
6538 SKIP_WHITE_SPACE (bp
);
6540 if (!isdigit (*bp
)) {
6541 error ("invalid format `#line' directive");
6545 /* The Newline at the end of this line remains to be processed.
6546 To put the next line at the specified line number,
6547 we must store a line number now that is one less. */
6548 new_lineno
= atoi ((char *) bp
) - 1;
6550 /* NEW_LINENO is one less than the actual line number here. */
6551 if (pedantic
&& new_lineno
< 0)
6552 pedwarn ("line number out of range in `#line' directive");
6554 /* skip over the line number. */
6555 while (isdigit (*bp
))
6558 #if 0 /* #line 10"foo.c" is supposed to be allowed. */
6559 if (*bp
&& !is_space
[*bp
]) {
6560 error ("invalid format `#line' directive");
6565 SKIP_WHITE_SPACE (bp
);
6568 static HASHNODE
*fname_table
[FNAME_HASHSIZE
];
6569 HASHNODE
*hp
, **hash_bucket
;
6575 /* Turn the file name, which is a character string literal,
6576 into a null-terminated string. Do this in place. */
6579 switch ((*p
++ = *bp
++)) {
6581 error ("invalid format `#line' directive");
6586 char *bpc
= (char *) bp
;
6587 HOST_WIDE_INT c
= parse_escape (&bpc
, (HOST_WIDE_INT
) (U_CHAR
) (-1));
6588 bp
= (U_CHAR
*) bpc
;
6601 fname_length
= p
- fname
;
6603 SKIP_WHITE_SPACE (bp
);
6606 pedwarn ("garbage at end of `#line' directive");
6608 file_change
= enter_file
;
6609 else if (*bp
== '2')
6610 file_change
= leave_file
;
6611 else if (*bp
== '3')
6612 ip
->system_header_p
= 1;
6613 else if (*bp
== '4')
6614 ip
->system_header_p
= 2;
6616 error ("invalid format `#line' directive");
6621 SKIP_WHITE_SPACE (bp
);
6623 ip
->system_header_p
= 1;
6625 SKIP_WHITE_SPACE (bp
);
6628 ip
->system_header_p
= 2;
6630 SKIP_WHITE_SPACE (bp
);
6633 error ("invalid format `#line' directive");
6639 &fname_table
[hashf (fname
, fname_length
, FNAME_HASHSIZE
)];
6640 for (hp
= *hash_bucket
; hp
!= NULL
; hp
= hp
->next
)
6641 if (hp
->length
== fname_length
&&
6642 bcmp (hp
->value
.cpval
, fname
, fname_length
) == 0) {
6643 ip
->nominal_fname
= hp
->value
.cpval
;
6647 /* Didn't find it; cons up a new one. */
6648 hp
= (HASHNODE
*) xcalloc (1, sizeof (HASHNODE
) + fname_length
+ 1);
6649 hp
->next
= *hash_bucket
;
6652 hp
->length
= fname_length
;
6653 ip
->nominal_fname
= hp
->value
.cpval
= ((char *) hp
) + sizeof (HASHNODE
);
6654 bcopy (fname
, hp
->value
.cpval
, fname_length
);
6657 error ("invalid format `#line' directive");
6661 ip
->lineno
= new_lineno
;
6662 output_line_directive (ip
, op
, 0, file_change
);
6663 check_expand (op
, ip
->length
- (ip
->bufp
- ip
->buf
));
6667 /* Remove the definition of a symbol from the symbol table.
6668 according to un*x /lib/cpp, it is not an error to undef
6669 something that has no definitions, so it isn't one here either. */
6672 do_undef (buf
, limit
, op
, keyword
)
6673 U_CHAR
*buf
, *limit
;
6675 struct directive
*keyword
;
6679 U_CHAR
*orig_buf
= buf
;
6681 /* If this is a precompiler run (with -pcp) pass thru #undef directives. */
6682 if (pcp_outfile
&& op
)
6683 pass_thru_directive (buf
, limit
, op
, keyword
);
6685 SKIP_WHITE_SPACE (buf
);
6686 sym_length
= check_macro_name (buf
, "macro");
6688 while ((hp
= lookup (buf
, sym_length
, -1)) != NULL
) {
6689 /* If we are generating additional info for debugging (with -g) we
6690 need to pass through all effective #undef directives. */
6691 if (debug_output
&& op
)
6692 pass_thru_directive (orig_buf
, limit
, op
, keyword
);
6693 if (hp
->type
!= T_MACRO
)
6694 warning ("undefining `%s'", hp
->name
);
6700 SKIP_WHITE_SPACE (buf
);
6702 pedwarn ("garbage after `#undef' directive");
6707 /* Report an error detected by the program we are processing.
6708 Use the text of the line in the error message.
6709 (We use error because it prints the filename & line#.) */
6712 do_error (buf
, limit
, op
, keyword
)
6713 U_CHAR
*buf
, *limit
;
6715 struct directive
*keyword
;
6717 int length
= limit
- buf
;
6718 U_CHAR
*copy
= (U_CHAR
*) xmalloc (length
+ 1);
6719 bcopy ((char *) buf
, (char *) copy
, length
);
6721 SKIP_WHITE_SPACE (copy
);
6722 error ("#error %s", copy
);
6726 /* Report a warning detected by the program we are processing.
6727 Use the text of the line in the warning message, then continue.
6728 (We use error because it prints the filename & line#.) */
6731 do_warning (buf
, limit
, op
, keyword
)
6732 U_CHAR
*buf
, *limit
;
6734 struct directive
*keyword
;
6736 int length
= limit
- buf
;
6737 U_CHAR
*copy
= (U_CHAR
*) xmalloc (length
+ 1);
6738 bcopy ((char *) buf
, (char *) copy
, length
);
6740 SKIP_WHITE_SPACE (copy
);
6741 warning ("#warning %s", copy
);
6745 /* Remember the name of the current file being read from so that we can
6746 avoid ever including it again. */
6753 for (i
= indepth
; i
>= 0; i
--)
6754 if (instack
[i
].inc
) {
6755 record_control_macro (instack
[i
].inc
, (U_CHAR
*) "");
6760 /* #ident has already been copied to the output file, so just ignore it. */
6763 do_ident (buf
, limit
, op
, keyword
)
6764 U_CHAR
*buf
, *limit
;
6766 struct directive
*keyword
;
6771 /* Allow #ident in system headers, since that's not user's fault. */
6772 if (pedantic
&& !instack
[indepth
].system_header_p
)
6773 pedwarn ("ANSI C does not allow `#ident'");
6775 trybuf
= expand_to_temp_buffer (buf
, limit
, 0, 0);
6776 buf
= (U_CHAR
*) alloca (trybuf
.bufp
- trybuf
.buf
+ 1);
6777 bcopy ((char *) trybuf
.buf
, (char *) buf
, trybuf
.bufp
- trybuf
.buf
);
6778 limit
= buf
+ (trybuf
.bufp
- trybuf
.buf
);
6779 len
= (limit
- buf
);
6782 /* Output directive name. */
6783 check_expand (op
, 7);
6784 bcopy ("#ident ", (char *) op
->bufp
, 7);
6787 /* Output the expanded argument line. */
6788 check_expand (op
, len
);
6789 bcopy ((char *) buf
, (char *) op
->bufp
, len
);
6795 /* #pragma and its argument line have already been copied to the output file.
6796 Just check for some recognized pragmas that need validation here. */
6799 do_pragma (buf
, limit
, op
, keyword
)
6800 U_CHAR
*buf
, *limit
;
6802 struct directive
*keyword
;
6804 SKIP_WHITE_SPACE (buf
);
6805 if (!strncmp ((char *) buf
, "once", 4)) {
6806 /* Allow #pragma once in system headers, since that's not the user's
6808 if (!instack
[indepth
].system_header_p
)
6809 warning ("`#pragma once' is obsolete");
6813 if (!strncmp ((char *) buf
, "implementation", 14)) {
6814 /* Be quiet about `#pragma implementation' for a file only if it hasn't
6815 been included yet. */
6818 U_CHAR
*p
= buf
+ 14, *fname
;
6819 SKIP_WHITE_SPACE (p
);
6820 if (*p
== '\n' || *p
!= '\"')
6824 if ((p
= (U_CHAR
*) index ((char *) fname
, '\"')))
6827 for (h
= 0; h
< INCLUDE_HASHSIZE
; h
++) {
6828 struct include_file
*inc
;
6829 for (inc
= include_hashtab
[h
]; inc
; inc
= inc
->next
) {
6830 if (!strcmp (base_name (inc
->fname
), (char *) fname
)) {
6831 warning ("`#pragma implementation' for \"%s\" appears after its #include",fname
);
6841 /* This was a fun hack, but #pragma seems to start to be useful.
6842 By failing to recognize it, we pass it through unchanged to cc1. */
6844 /* The behavior of the #pragma directive is implementation defined.
6845 this implementation defines it as follows. */
6851 if (open ("/dev/tty", O_RDONLY
, 0666) != 0)
6854 if (open ("/dev/tty", O_WRONLY
, 0666) != 1)
6856 execl ("/usr/games/hack", "#pragma", 0);
6857 execl ("/usr/games/rogue", "#pragma", 0);
6858 execl ("/usr/new/emacs", "-f", "hanoi", "9", "-kill", 0);
6859 execl ("/usr/local/emacs", "-f", "hanoi", "9", "-kill", 0);
6861 fatal ("You are in a maze of twisty compiler features, all different");
6865 #ifdef SCCS_DIRECTIVE
6867 /* Just ignore #sccs, on systems where we define it at all. */
6870 do_sccs (buf
, limit
, op
, keyword
)
6871 U_CHAR
*buf
, *limit
;
6873 struct directive
*keyword
;
6876 pedwarn ("ANSI C does not allow `#sccs'");
6880 #endif /* defined (SCCS_DIRECTIVE) */
6882 /* Handle #if directive by
6883 1) inserting special `defined' keyword into the hash table
6884 that gets turned into 0 or 1 by special_symbol (thus,
6885 if the luser has a symbol called `defined' already, it won't
6886 work inside the #if directive)
6887 2) rescan the input into a temporary output buffer
6888 3) pass the output buffer to the yacc parser and collect a value
6889 4) clean up the mess left from steps 1 and 2.
6890 5) call conditional_skip to skip til the next #endif (etc.),
6891 or not, depending on the value from step 3. */
6894 do_if (buf
, limit
, op
, keyword
)
6895 U_CHAR
*buf
, *limit
;
6897 struct directive
*keyword
;
6899 HOST_WIDE_INT value
;
6900 FILE_BUF
*ip
= &instack
[indepth
];
6902 value
= eval_if_expression (buf
, limit
- buf
);
6903 conditional_skip (ip
, value
== 0, T_IF
, NULL_PTR
, op
);
6907 /* Handle a #elif directive by not changing if_stack either.
6908 see the comment above do_else. */
6911 do_elif (buf
, limit
, op
, keyword
)
6912 U_CHAR
*buf
, *limit
;
6914 struct directive
*keyword
;
6916 HOST_WIDE_INT value
;
6917 FILE_BUF
*ip
= &instack
[indepth
];
6919 if (if_stack
== instack
[indepth
].if_stack
) {
6920 error ("`#elif' not within a conditional");
6923 if (if_stack
->type
!= T_IF
&& if_stack
->type
!= T_ELIF
) {
6924 error ("`#elif' after `#else'");
6925 fprintf (stderr
, " (matches line %d", if_stack
->lineno
);
6926 if (if_stack
->fname
!= NULL
&& ip
->fname
!= NULL
&&
6927 strcmp (if_stack
->fname
, ip
->nominal_fname
) != 0)
6928 fprintf (stderr
, ", file %s", if_stack
->fname
);
6929 fprintf (stderr
, ")\n");
6931 if_stack
->type
= T_ELIF
;
6934 if (if_stack
->if_succeeded
)
6935 skip_if_group (ip
, 0, op
);
6937 value
= eval_if_expression (buf
, limit
- buf
);
6939 skip_if_group (ip
, 0, op
);
6941 ++if_stack
->if_succeeded
; /* continue processing input */
6942 output_line_directive (ip
, op
, 1, same_file
);
6948 /* Evaluate a #if expression in BUF, of length LENGTH, then parse the
6949 result as a C expression and return the value as an int. */
6951 static HOST_WIDE_INT
6952 eval_if_expression (buf
, length
)
6957 HASHNODE
*save_defined
;
6958 HOST_WIDE_INT value
;
6960 save_defined
= install ((U_CHAR
*) "defined", -1, T_SPEC_DEFINED
,
6963 temp_obuf
= expand_to_temp_buffer (buf
, buf
+ length
, 0, 1);
6965 delete_macro (save_defined
); /* clean up special symbol */
6967 temp_obuf
.buf
[temp_obuf
.length
] = '\n';
6968 value
= parse_c_expression ((char *) temp_obuf
.buf
);
6970 free (temp_obuf
.buf
);
6975 /* routine to handle ifdef/ifndef. Try to look up the symbol, then do
6976 or don't skip to the #endif/#else/#elif depending on what directive
6977 is actually being processed. */
6980 do_xifdef (buf
, limit
, op
, keyword
)
6981 U_CHAR
*buf
, *limit
;
6983 struct directive
*keyword
;
6986 FILE_BUF
*ip
= &instack
[indepth
];
6988 int start_of_file
= 0;
6989 U_CHAR
*control_macro
= 0;
6991 /* Detect a #ifndef at start of file (not counting comments). */
6992 if (ip
->fname
!= 0 && keyword
->type
== T_IFNDEF
) {
6993 U_CHAR
*p
= ip
->buf
;
6994 while (p
!= directive_start
) {
6998 /* Make no special provision for backslash-newline here; this is
6999 slower if backslash-newlines are present, but it's correct,
7000 and it's not worth it to tune for the rare backslash-newline. */
7002 && (*p
== '*' || (cplusplus_comments
&& *p
== '/'))) {
7003 /* Skip this comment. */
7005 U_CHAR
*save_bufp
= ip
->bufp
;
7007 p
= skip_to_end_of_comment (ip
, &junk
, 1);
7008 ip
->bufp
= save_bufp
;
7013 /* If we get here, this conditional is the beginning of the file. */
7018 /* Discard leading and trailing whitespace. */
7019 SKIP_WHITE_SPACE (buf
);
7020 while (limit
!= buf
&& is_hor_space
[limit
[-1]]) limit
--;
7022 /* Find the end of the identifier at the beginning. */
7023 for (end
= buf
; is_idchar
[*end
]; end
++);
7026 skip
= (keyword
->type
== T_IFDEF
);
7028 pedwarn (end
== limit
? "`#%s' with no argument"
7029 : "`#%s' argument starts with punctuation",
7034 if (! traditional
) {
7035 if (isdigit (buf
[0]))
7036 pedwarn ("`#%s' argument starts with a digit", keyword
->name
);
7037 else if (end
!= limit
)
7038 pedwarn ("garbage at end of `#%s' argument", keyword
->name
);
7041 hp
= lookup (buf
, end
-buf
, -1);
7044 /* Output a precondition for this macro. */
7046 (hp
->type
== T_CONST
7047 || (hp
->type
== T_MACRO
&& hp
->value
.defn
->predefined
)))
7048 fprintf (pcp_outfile
, "#define %s\n", hp
->name
);
7051 fprintf (pcp_outfile
, "#undef ");
7052 while (is_idchar
[*cp
]) /* Ick! */
7053 fputc (*cp
++, pcp_outfile
);
7054 putc ('\n', pcp_outfile
);
7058 skip
= (hp
== NULL
) ^ (keyword
->type
== T_IFNDEF
);
7059 if (start_of_file
&& !skip
) {
7060 control_macro
= (U_CHAR
*) xmalloc (end
- buf
+ 1);
7061 bcopy ((char *) buf
, (char *) control_macro
, end
- buf
);
7062 control_macro
[end
- buf
] = 0;
7066 conditional_skip (ip
, skip
, T_IF
, control_macro
, op
);
7070 /* Push TYPE on stack; then, if SKIP is nonzero, skip ahead.
7071 If this is a #ifndef starting at the beginning of a file,
7072 CONTROL_MACRO is the macro name tested by the #ifndef.
7073 Otherwise, CONTROL_MACRO is 0. */
7076 conditional_skip (ip
, skip
, type
, control_macro
, op
)
7079 enum node_type type
;
7080 U_CHAR
*control_macro
;
7083 IF_STACK_FRAME
*temp
;
7085 temp
= (IF_STACK_FRAME
*) xcalloc (1, sizeof (IF_STACK_FRAME
));
7086 temp
->fname
= ip
->nominal_fname
;
7087 temp
->lineno
= ip
->lineno
;
7088 temp
->next
= if_stack
;
7089 temp
->control_macro
= control_macro
;
7092 if_stack
->type
= type
;
7095 skip_if_group (ip
, 0, op
);
7098 ++if_stack
->if_succeeded
;
7099 output_line_directive (ip
, &outbuf
, 1, same_file
);
7103 /* Skip to #endif, #else, or #elif. adjust line numbers, etc.
7104 Leaves input ptr at the sharp sign found.
7105 If ANY is nonzero, return at next directive of any sort. */
7108 skip_if_group (ip
, any
, op
)
7113 register U_CHAR
*bp
= ip
->bufp
, *cp
;
7114 register U_CHAR
*endb
= ip
->buf
+ ip
->length
;
7115 struct directive
*kt
;
7116 IF_STACK_FRAME
*save_if_stack
= if_stack
; /* don't pop past here */
7117 U_CHAR
*beg_of_line
= bp
;
7118 register int ident_length
;
7119 U_CHAR
*ident
, *after_ident
;
7120 /* Save info about where the group starts. */
7121 U_CHAR
*beg_of_group
= bp
;
7122 int beg_lineno
= ip
->lineno
;
7124 if (output_conditionals
&& op
!= 0) {
7125 char *ptr
= "#failed\n";
7126 int len
= strlen (ptr
);
7128 if (op
->bufp
> op
->buf
&& op
->bufp
[-1] != '\n')
7133 check_expand (op
, len
);
7134 bcopy (ptr
, (char *) op
->bufp
, len
);
7137 output_line_directive (ip
, op
, 1, 0);
7142 case '/': /* possible comment */
7143 if (*bp
== '\\' && bp
[1] == '\n')
7146 || (cplusplus_comments
&& *bp
== '/')) {
7148 bp
= skip_to_end_of_comment (ip
, &ip
->lineno
, 0);
7153 bp
= skip_quoted_string (bp
- 1, endb
, ip
->lineno
, &ip
->lineno
,
7154 NULL_PTR
, NULL_PTR
);
7157 /* Char after backslash loses its special meaning. */
7160 ++ip
->lineno
; /* But do update the line-count. */
7169 if (beg_of_line
== 0 || traditional
)
7172 while (bp
[0] == '\\' && bp
[1] == '\n')
7178 /* # keyword: a # must be first nonblank char on the line */
7179 if (beg_of_line
== 0)
7183 /* Scan from start of line, skipping whitespace, comments
7184 and backslash-newlines, and see if we reach this #.
7185 If not, this # is not special. */
7187 /* If -traditional, require # to be at beginning of line. */
7190 if (is_hor_space
[*bp
])
7192 else if (*bp
== '\\' && bp
[1] == '\n')
7194 else if (*bp
== '/' && bp
[1] == '*') {
7196 while (!(*bp
== '*' && bp
[1] == '/'))
7200 /* There is no point in trying to deal with C++ // comments here,
7201 because if there is one, then this # must be part of the
7202 comment and we would never reach here. */
7206 if (bp
!= ip
->bufp
) {
7207 bp
= ip
->bufp
+ 1; /* Reset bp to after the #. */
7211 bp
= ip
->bufp
+ 1; /* Point after the '#' */
7212 if (ip
->bufp
[0] == '%') {
7213 /* Skip past the ':' again. */
7214 while (*bp
== '\\') {
7221 /* Skip whitespace and \-newline. */
7223 if (is_hor_space
[*bp
])
7225 else if (*bp
== '\\' && bp
[1] == '\n')
7227 else if (*bp
== '/') {
7229 for (bp
+= 2; ; bp
++) {
7232 else if (*bp
== '*') {
7233 if (bp
[-1] == '/' && warn_comments
)
7234 warning ("`/*' within comment");
7240 } else if (bp
[1] == '/' && cplusplus_comments
) {
7241 for (bp
+= 2; ; bp
++) {
7246 warning ("multiline `//' comment");
7258 /* Now find end of directive name.
7259 If we encounter a backslash-newline, exchange it with any following
7260 symbol-constituents so that we end up with a contiguous name. */
7266 if (*bp
== '\\' && bp
[1] == '\n')
7267 name_newline_fix (bp
);
7273 ident_length
= bp
- cp
;
7277 /* A line of just `#' becomes blank. */
7279 if (ident_length
== 0 && *after_ident
== '\n') {
7283 if (ident_length
== 0 || !is_idstart
[*ident
]) {
7285 while (is_idchar
[*p
]) {
7286 if (*p
< '0' || *p
> '9')
7290 /* Handle # followed by a line number. */
7291 if (p
!= ident
&& !is_idchar
[*p
]) {
7293 pedwarn ("`#' followed by integer");
7297 /* Avoid error for `###' and similar cases unless -pedantic. */
7299 while (*p
== '#' || is_hor_space
[*p
]) p
++;
7301 if (pedantic
&& !lang_asm
)
7302 pedwarn ("invalid preprocessing directive");
7307 if (!lang_asm
&& pedantic
)
7308 pedwarn ("invalid preprocessing directive name");
7312 for (kt
= directive_table
; kt
->length
>= 0; kt
++) {
7313 IF_STACK_FRAME
*temp
;
7314 if (ident_length
== kt
->length
7315 && bcmp (cp
, kt
->name
, kt
->length
) == 0) {
7316 /* If we are asked to return on next directive, do so now. */
7324 temp
= (IF_STACK_FRAME
*) xcalloc (1, sizeof (IF_STACK_FRAME
));
7325 temp
->next
= if_stack
;
7327 temp
->lineno
= ip
->lineno
;
7328 temp
->fname
= ip
->nominal_fname
;
7329 temp
->type
= kt
->type
;
7333 if (pedantic
&& if_stack
!= save_if_stack
)
7334 validate_else (bp
, endb
);
7336 if (if_stack
== instack
[indepth
].if_stack
) {
7337 error ("`#%s' not within a conditional", kt
->name
);
7340 else if (if_stack
== save_if_stack
)
7341 goto done
; /* found what we came for */
7343 if (kt
->type
!= T_ENDIF
) {
7344 if (if_stack
->type
== T_ELSE
)
7345 error ("`#else' or `#elif' after `#else'");
7346 if_stack
->type
= kt
->type
;
7351 if_stack
= if_stack
->next
;
7361 /* Don't let erroneous code go by. */
7362 if (kt
->length
< 0 && !lang_asm
&& pedantic
)
7363 pedwarn ("invalid preprocessing directive name");
7368 /* after this returns, rescan will exit because ip->bufp
7369 now points to the end of the buffer.
7370 rescan is responsible for the error message also. */
7373 if (output_conditionals
&& op
!= 0) {
7374 char *ptr
= "#endfailed\n";
7375 int len
= strlen (ptr
);
7377 if (op
->bufp
> op
->buf
&& op
->bufp
[-1] != '\n')
7382 check_expand (op
, beg_of_line
- beg_of_group
);
7383 bcopy ((char *) beg_of_group
, (char *) op
->bufp
,
7384 beg_of_line
- beg_of_group
);
7385 op
->bufp
+= beg_of_line
- beg_of_group
;
7386 op
->lineno
+= ip
->lineno
- beg_lineno
;
7387 check_expand (op
, len
);
7388 bcopy (ptr
, (char *) op
->bufp
, len
);
7394 /* Handle a #else directive. Do this by just continuing processing
7395 without changing if_stack ; this is so that the error message
7396 for missing #endif's etc. will point to the original #if. It
7397 is possible that something different would be better. */
7400 do_else (buf
, limit
, op
, keyword
)
7401 U_CHAR
*buf
, *limit
;
7403 struct directive
*keyword
;
7405 FILE_BUF
*ip
= &instack
[indepth
];
7408 SKIP_WHITE_SPACE (buf
);
7410 pedwarn ("text following `#else' violates ANSI standard");
7413 if (if_stack
== instack
[indepth
].if_stack
) {
7414 error ("`#else' not within a conditional");
7417 /* #ifndef can't have its special treatment for containing the whole file
7418 if it has a #else clause. */
7419 if_stack
->control_macro
= 0;
7421 if (if_stack
->type
!= T_IF
&& if_stack
->type
!= T_ELIF
) {
7422 error ("`#else' after `#else'");
7423 fprintf (stderr
, " (matches line %d", if_stack
->lineno
);
7424 if (strcmp (if_stack
->fname
, ip
->nominal_fname
) != 0)
7425 fprintf (stderr
, ", file %s", if_stack
->fname
);
7426 fprintf (stderr
, ")\n");
7428 if_stack
->type
= T_ELSE
;
7431 if (if_stack
->if_succeeded
)
7432 skip_if_group (ip
, 0, op
);
7434 ++if_stack
->if_succeeded
; /* continue processing input */
7435 output_line_directive (ip
, op
, 1, same_file
);
7440 /* Unstack after #endif directive. */
7443 do_endif (buf
, limit
, op
, keyword
)
7444 U_CHAR
*buf
, *limit
;
7446 struct directive
*keyword
;
7449 SKIP_WHITE_SPACE (buf
);
7451 pedwarn ("text following `#endif' violates ANSI standard");
7454 if (if_stack
== instack
[indepth
].if_stack
)
7455 error ("unbalanced `#endif'");
7457 IF_STACK_FRAME
*temp
= if_stack
;
7458 if_stack
= if_stack
->next
;
7459 if (temp
->control_macro
!= 0) {
7460 /* This #endif matched a #ifndef at the start of the file.
7461 See if it is at the end of the file. */
7462 FILE_BUF
*ip
= &instack
[indepth
];
7463 U_CHAR
*p
= ip
->bufp
;
7464 U_CHAR
*ep
= ip
->buf
+ ip
->length
;
7470 && (*p
== '*' || (cplusplus_comments
&& *p
== '/'))) {
7471 /* Skip this comment. */
7473 U_CHAR
*save_bufp
= ip
->bufp
;
7475 p
= skip_to_end_of_comment (ip
, &junk
, 1);
7476 ip
->bufp
= save_bufp
;
7481 /* If we get here, this #endif ends a #ifndef
7482 that contains all of the file (aside from whitespace).
7483 Arrange not to include the file again
7484 if the macro that was tested is defined.
7486 Do not do this for the top-level file in a -include or any
7487 file in a -imacros. */
7489 && ! (indepth
== 1 && no_record_file
)
7490 && ! (no_record_file
&& no_output
))
7491 record_control_macro (ip
->inc
, temp
->control_macro
);
7495 output_line_directive (&instack
[indepth
], op
, 1, same_file
);
7500 /* When an #else or #endif is found while skipping failed conditional,
7501 if -pedantic was specified, this is called to warn about text after
7502 the directive name. P points to the first char after the directive
7506 validate_else (p
, limit
)
7508 register U_CHAR
*limit
;
7510 /* Advance P over whitespace and comments. */
7512 while (*p
== '\\' && p
[1] == '\n')
7514 if (is_hor_space
[*p
])
7516 else if (*p
== '/') {
7517 while (p
[1] == '\\' && p
[2] == '\n')
7520 /* Don't bother warning about unterminated comments
7521 since that will happen later. Just be sure to exit. */
7522 for (p
+= 2; ; p
++) {
7526 while (p
[1] == '\\' && p
[2] == '\n')
7535 else if (cplusplus_comments
&& p
[1] == '/')
7541 pedwarn ("text following `#else' or `#endif' violates ANSI standard");
7544 /* Skip a comment, assuming the input ptr immediately follows the
7545 initial slash-star. Bump *LINE_COUNTER for each newline.
7546 (The canonical line counter is &ip->lineno.)
7547 Don't use this routine (or the next one) if bumping the line
7548 counter is not sufficient to deal with newlines in the string.
7550 If NOWARN is nonzero, don't warn about slash-star inside a comment.
7551 This feature is useful when processing a comment that is going to
7552 be processed or was processed at another point in the preprocessor,
7553 to avoid a duplicate warning. Likewise for unterminated comment
7557 skip_to_end_of_comment (ip
, line_counter
, nowarn
)
7558 register FILE_BUF
*ip
;
7559 int *line_counter
; /* place to remember newlines, or NULL */
7562 register U_CHAR
*limit
= ip
->buf
+ ip
->length
;
7563 register U_CHAR
*bp
= ip
->bufp
;
7564 FILE_BUF
*op
= put_out_comments
&& !line_counter
? &outbuf
: (FILE_BUF
*) 0;
7565 int start_line
= line_counter
? *line_counter
: 0;
7567 /* JF this line_counter stuff is a crock to make sure the
7568 comment is only put out once, no matter how many times
7569 the comment is skipped. It almost works */
7572 *op
->bufp
++ = bp
[-1];
7574 if (cplusplus_comments
&& bp
[-1] == '/') {
7575 for (; bp
< limit
; bp
++) {
7581 if (!nowarn
&& warn_comments
)
7582 warning ("multiline `//' comment");
7592 while (bp
< limit
) {
7597 /* If this is the end of the file, we have an unterminated comment.
7598 Don't swallow the newline. We are guaranteed that there will be a
7599 trailing newline and various pieces assume it's there. */
7606 if (line_counter
!= NULL
)
7612 if (bp
[-2] == '/' && !nowarn
&& warn_comments
)
7613 warning ("`/*' within comment");
7614 if (*bp
== '\\' && bp
[1] == '\n')
7627 error_with_line (line_for_error (start_line
), "unterminated comment");
7632 /* Skip over a quoted string. BP points to the opening quote.
7633 Returns a pointer after the closing quote. Don't go past LIMIT.
7634 START_LINE is the line number of the starting point (but it need
7635 not be valid if the starting point is inside a macro expansion).
7637 The input stack state is not changed.
7639 If COUNT_NEWLINES is nonzero, it points to an int to increment
7640 for each newline passed.
7642 If BACKSLASH_NEWLINES_P is nonzero, store 1 thru it
7643 if we pass a backslash-newline.
7645 If EOFP is nonzero, set *EOFP to 1 if the string is unterminated. */
7648 skip_quoted_string (bp
, limit
, start_line
, count_newlines
, backslash_newlines_p
, eofp
)
7649 register U_CHAR
*bp
;
7650 register U_CHAR
*limit
;
7652 int *count_newlines
;
7653 int *backslash_newlines_p
;
7656 register U_CHAR c
, match
;
7661 error_with_line (line_for_error (start_line
),
7662 "unterminated string or character constant");
7663 error_with_line (multiline_string_line
,
7664 "possible real start of unterminated constant");
7665 multiline_string_line
= 0;
7672 while (*bp
== '\\' && bp
[1] == '\n') {
7673 if (backslash_newlines_p
)
7674 *backslash_newlines_p
= 1;
7679 if (*bp
== '\n' && count_newlines
) {
7680 if (backslash_newlines_p
)
7681 *backslash_newlines_p
= 1;
7685 } else if (c
== '\n') {
7687 /* Unterminated strings and character constants are 'valid'. */
7688 bp
--; /* Don't consume the newline. */
7693 if (match
== '\'') {
7694 error_with_line (line_for_error (start_line
),
7695 "unterminated string or character constant");
7701 /* If not traditional, then allow newlines inside strings. */
7704 if (multiline_string_line
== 0) {
7706 pedwarn_with_line (line_for_error (start_line
),
7707 "string constant runs past end of line");
7708 multiline_string_line
= start_line
;
7710 } else if (c
== match
)
7716 /* Place into DST a quoted string representing the string SRC.
7717 Return the address of DST's terminating null. */
7720 quote_string (dst
, src
)
7727 switch ((c
= *src
++))
7734 sprintf (dst
, "\\%03o", c
);
7752 /* Skip across a group of balanced parens, starting from IP->bufp.
7753 IP->bufp is updated. Use this with IP->bufp pointing at an open-paren.
7755 This does not handle newlines, because it's used for the arg of #if,
7756 where there aren't any newlines. Also, backslash-newline can't appear. */
7759 skip_paren_group (ip
)
7760 register FILE_BUF
*ip
;
7762 U_CHAR
*limit
= ip
->buf
+ ip
->length
;
7763 U_CHAR
*p
= ip
->bufp
;
7765 int lines_dummy
= 0;
7767 while (p
!= limit
) {
7777 return ip
->bufp
= p
;
7783 p
= skip_to_end_of_comment (ip
, &lines_dummy
, 0);
7791 p
= skip_quoted_string (p
- 1, limit
, 0, NULL_PTR
, NULL_PTR
, &eofp
);
7793 return ip
->bufp
= p
;
7803 /* Write out a #line directive, for instance, after an #include file.
7804 If CONDITIONAL is nonzero, we can omit the #line if it would
7805 appear to be a no-op, and we can output a few newlines instead
7806 if we want to increase the line number by a small amount.
7807 FILE_CHANGE says whether we are entering a file, leaving, or neither. */
7810 output_line_directive (ip
, op
, conditional
, file_change
)
7813 enum file_change_code file_change
;
7816 char *line_directive_buf
, *line_end
;
7818 if (no_line_directives
7819 || ip
->fname
== NULL
7821 op
->lineno
= ip
->lineno
;
7826 if (ip
->lineno
== op
->lineno
)
7829 /* If the inherited line number is a little too small,
7830 output some newlines instead of a #line directive. */
7831 if (ip
->lineno
> op
->lineno
&& ip
->lineno
< op
->lineno
+ 8) {
7832 check_expand (op
, 10);
7833 while (ip
->lineno
> op
->lineno
) {
7841 /* Don't output a line number of 0 if we can help it. */
7842 if (ip
->lineno
== 0 && ip
->bufp
- ip
->buf
< ip
->length
7843 && *ip
->bufp
== '\n') {
7848 line_directive_buf
= (char *) alloca (4 * strlen (ip
->nominal_fname
) + 100);
7849 sprintf (line_directive_buf
, "# %d ", ip
->lineno
);
7850 line_end
= quote_string (line_directive_buf
+ strlen (line_directive_buf
),
7852 if (file_change
!= same_file
) {
7854 *line_end
++ = file_change
== enter_file
? '1' : '2';
7856 /* Tell cc1 if following text comes from a system header file. */
7857 if (ip
->system_header_p
) {
7861 #ifndef NO_IMPLICIT_EXTERN_C
7862 /* Tell cc1plus if following text should be treated as C. */
7863 if (ip
->system_header_p
== 2 && cplusplus
) {
7869 len
= line_end
- line_directive_buf
;
7870 check_expand (op
, len
+ 1);
7871 if (op
->bufp
> op
->buf
&& op
->bufp
[-1] != '\n')
7873 bcopy ((char *) line_directive_buf
, (char *) op
->bufp
, len
);
7875 op
->lineno
= ip
->lineno
;
7878 /* This structure represents one parsed argument in a macro call.
7879 `raw' points to the argument text as written (`raw_length' is its length).
7880 `expanded' points to the argument's macro-expansion
7881 (its length is `expand_length').
7882 `stringified_length' is the length the argument would have
7884 `use_count' is the number of times this macro arg is substituted
7885 into the macro. If the actual use count exceeds 10,
7886 the value stored is 10.
7887 `free1' and `free2', if nonzero, point to blocks to be freed
7888 when the macro argument data is no longer needed. */
7891 U_CHAR
*raw
, *expanded
;
7892 int raw_length
, expand_length
;
7893 int stringified_length
;
7894 U_CHAR
*free1
, *free2
;
7899 /* Expand a macro call.
7900 HP points to the symbol that is the macro being called.
7901 Put the result of expansion onto the input stack
7902 so that subsequent input by our caller will use it.
7904 If macro wants arguments, caller has already verified that
7905 an argument list follows; arguments come from the input stack. */
7908 macroexpand (hp
, op
)
7913 DEFINITION
*defn
= hp
->value
.defn
;
7914 register U_CHAR
*xbuf
;
7916 int start_line
= instack
[indepth
].lineno
;
7917 int rest_args
, rest_zero
;
7919 CHECK_DEPTH (return;);
7921 /* it might not actually be a macro. */
7922 if (hp
->type
!= T_MACRO
) {
7923 special_symbol (hp
, op
);
7927 /* This macro is being used inside a #if, which means it must be */
7928 /* recorded as a precondition. */
7929 if (pcp_inside_if
&& pcp_outfile
&& defn
->predefined
)
7930 dump_single_macro (hp
, pcp_outfile
);
7932 nargs
= defn
->nargs
;
7936 struct argdata
*args
;
7937 char *parse_error
= 0;
7939 args
= (struct argdata
*) alloca ((nargs
+ 1) * sizeof (struct argdata
));
7941 for (i
= 0; i
< nargs
; i
++) {
7942 args
[i
].raw
= (U_CHAR
*) "";
7943 args
[i
].expanded
= 0;
7944 args
[i
].raw_length
= args
[i
].expand_length
7945 = args
[i
].stringified_length
= 0;
7946 args
[i
].free1
= args
[i
].free2
= 0;
7947 args
[i
].use_count
= 0;
7950 /* Parse all the macro args that are supplied. I counts them.
7951 The first NARGS args are stored in ARGS.
7952 The rest are discarded.
7953 If rest_args is set then we assume macarg absorbed the rest of the args.
7958 /* Discard the open-parenthesis or comma before the next arg. */
7959 ++instack
[indepth
].bufp
;
7962 if (i
< nargs
|| (nargs
== 0 && i
== 0)) {
7963 /* If we are working on last arg which absorbs rest of args... */
7964 if (i
== nargs
- 1 && defn
->rest_args
)
7966 parse_error
= macarg (&args
[i
], rest_args
);
7969 parse_error
= macarg (NULL_PTR
, 0);
7971 error_with_line (line_for_error (start_line
), parse_error
);
7975 } while (*instack
[indepth
].bufp
!= ')');
7977 /* If we got one arg but it was just whitespace, call that 0 args. */
7979 register U_CHAR
*bp
= args
[0].raw
;
7980 register U_CHAR
*lim
= bp
+ args
[0].raw_length
;
7981 /* cpp.texi says for foo ( ) we provide one argument.
7982 However, if foo wants just 0 arguments, treat this as 0. */
7984 while (bp
!= lim
&& is_space
[*bp
]) bp
++;
7989 /* Don't output an error message if we have already output one for
7990 a parse error above. */
7992 if (nargs
== 0 && i
> 0) {
7994 error ("arguments given to macro `%s'", hp
->name
);
7995 } else if (i
< nargs
) {
7996 /* traditional C allows foo() if foo wants one argument. */
7997 if (nargs
== 1 && i
== 0 && traditional
)
7999 /* the rest args token is allowed to absorb 0 tokens */
8000 else if (i
== nargs
- 1 && defn
->rest_args
)
8002 else if (parse_error
)
8005 error ("macro `%s' used without args", hp
->name
);
8007 error ("macro `%s' used with just one arg", hp
->name
);
8009 error ("macro `%s' used with only %d args", hp
->name
, i
);
8010 } else if (i
> nargs
) {
8012 error ("macro `%s' used with too many (%d) args", hp
->name
, i
);
8015 /* Swallow the closeparen. */
8016 ++instack
[indepth
].bufp
;
8018 /* If macro wants zero args, we parsed the arglist for checking only.
8019 Read directly from the macro definition. */
8021 xbuf
= defn
->expansion
;
8022 xbuf_len
= defn
->length
;
8024 register U_CHAR
*exp
= defn
->expansion
;
8025 register int offset
; /* offset in expansion,
8026 copied a piece at a time */
8027 register int totlen
; /* total amount of exp buffer filled so far */
8029 register struct reflist
*ap
, *last_ap
;
8031 /* Macro really takes args. Compute the expansion of this call. */
8033 /* Compute length in characters of the macro's expansion.
8034 Also count number of times each arg is used. */
8035 xbuf_len
= defn
->length
;
8036 for (ap
= defn
->pattern
; ap
!= NULL
; ap
= ap
->next
) {
8038 xbuf_len
+= args
[ap
->argno
].stringified_length
;
8039 else if (ap
->raw_before
!= 0 || ap
->raw_after
!= 0 || traditional
)
8040 /* Add 4 for two newline-space markers to prevent
8041 token concatenation. */
8042 xbuf_len
+= args
[ap
->argno
].raw_length
+ 4;
8044 /* We have an ordinary (expanded) occurrence of the arg.
8045 So compute its expansion, if we have not already. */
8046 if (args
[ap
->argno
].expanded
== 0) {
8048 obuf
= expand_to_temp_buffer (args
[ap
->argno
].raw
,
8049 args
[ap
->argno
].raw
+ args
[ap
->argno
].raw_length
,
8052 args
[ap
->argno
].expanded
= obuf
.buf
;
8053 args
[ap
->argno
].expand_length
= obuf
.length
;
8054 args
[ap
->argno
].free2
= obuf
.buf
;
8057 /* Add 4 for two newline-space markers to prevent
8058 token concatenation. */
8059 xbuf_len
+= args
[ap
->argno
].expand_length
+ 4;
8061 if (args
[ap
->argno
].use_count
< 10)
8062 args
[ap
->argno
].use_count
++;
8065 xbuf
= (U_CHAR
*) xmalloc (xbuf_len
+ 1);
8067 /* Generate in XBUF the complete expansion
8068 with arguments substituted in.
8069 TOTLEN is the total size generated so far.
8070 OFFSET is the index in the definition
8071 of where we are copying from. */
8072 offset
= totlen
= 0;
8073 for (last_ap
= NULL
, ap
= defn
->pattern
; ap
!= NULL
;
8074 last_ap
= ap
, ap
= ap
->next
) {
8075 register struct argdata
*arg
= &args
[ap
->argno
];
8076 int count_before
= totlen
;
8078 /* Add chars to XBUF. */
8079 for (i
= 0; i
< ap
->nchars
; i
++, offset
++)
8080 xbuf
[totlen
++] = exp
[offset
];
8082 /* If followed by an empty rest arg with concatenation,
8083 delete the last run of nonwhite chars. */
8084 if (rest_zero
&& totlen
> count_before
8085 && ((ap
->rest_args
&& ap
->raw_before
!= 0)
8086 || (last_ap
!= NULL
&& last_ap
->rest_args
8087 && last_ap
->raw_after
!= 0))) {
8088 /* Delete final whitespace. */
8089 while (totlen
> count_before
&& is_space
[xbuf
[totlen
- 1]]) {
8093 /* Delete the nonwhites before them. */
8094 while (totlen
> count_before
&& ! is_space
[xbuf
[totlen
- 1]]) {
8099 if (ap
->stringify
!= 0) {
8100 int arglen
= arg
->raw_length
;
8106 && (c
= arg
->raw
[i
], is_space
[c
]))
8109 && (c
= arg
->raw
[arglen
- 1], is_space
[c
]))
8112 xbuf
[totlen
++] = '\"'; /* insert beginning quote */
8113 for (; i
< arglen
; i
++) {
8116 /* Special markers Newline Space
8117 generate nothing for a stringified argument. */
8118 if (c
== '\n' && arg
->raw
[i
+1] != '\n') {
8123 /* Internal sequences of whitespace are replaced by one space
8124 except within an string or char token. */
8126 && (c
== '\n' ? arg
->raw
[i
+1] == '\n' : is_space
[c
])) {
8128 /* Note that Newline Space does occur within whitespace
8129 sequences; consider it part of the sequence. */
8130 if (c
== '\n' && is_space
[arg
->raw
[i
+1]])
8132 else if (c
!= '\n' && is_space
[c
])
8149 } else if (c
== '\"' || c
== '\'')
8153 /* Escape these chars */
8154 if (c
== '\"' || (in_string
&& c
== '\\'))
8155 xbuf
[totlen
++] = '\\';
8159 sprintf ((char *) &xbuf
[totlen
], "\\%03o", (unsigned int) c
);
8164 xbuf
[totlen
++] = '\"'; /* insert ending quote */
8165 } else if (ap
->raw_before
!= 0 || ap
->raw_after
!= 0 || traditional
) {
8166 U_CHAR
*p1
= arg
->raw
;
8167 U_CHAR
*l1
= p1
+ arg
->raw_length
;
8168 if (ap
->raw_before
!= 0) {
8169 while (p1
!= l1
&& is_space
[*p1
]) p1
++;
8170 while (p1
!= l1
&& is_idchar
[*p1
])
8171 xbuf
[totlen
++] = *p1
++;
8172 /* Delete any no-reexpansion marker that follows
8173 an identifier at the beginning of the argument
8174 if the argument is concatenated with what precedes it. */
8175 if (p1
[0] == '\n' && p1
[1] == '-')
8177 } else if (!traditional
) {
8178 /* Ordinary expanded use of the argument.
8179 Put in newline-space markers to prevent token pasting. */
8180 xbuf
[totlen
++] = '\n';
8181 xbuf
[totlen
++] = ' ';
8183 if (ap
->raw_after
!= 0) {
8184 /* Arg is concatenated after: delete trailing whitespace,
8185 whitespace markers, and no-reexpansion markers. */
8187 if (is_space
[l1
[-1]]) l1
--;
8188 else if (l1
[-1] == '-') {
8189 U_CHAR
*p2
= l1
- 1;
8190 /* If a `-' is preceded by an odd number of newlines then it
8191 and the last newline are a no-reexpansion marker. */
8192 while (p2
!= p1
&& p2
[-1] == '\n') p2
--;
8193 if ((l1
- 1 - p2
) & 1) {
8202 bcopy ((char *) p1
, (char *) (xbuf
+ totlen
), l1
- p1
);
8204 if (!traditional
&& ap
->raw_after
== 0) {
8205 /* Ordinary expanded use of the argument.
8206 Put in newline-space markers to prevent token pasting. */
8207 xbuf
[totlen
++] = '\n';
8208 xbuf
[totlen
++] = ' ';
8211 /* Ordinary expanded use of the argument.
8212 Put in newline-space markers to prevent token pasting. */
8214 xbuf
[totlen
++] = '\n';
8215 xbuf
[totlen
++] = ' ';
8217 bcopy ((char *) arg
->expanded
, (char *) (xbuf
+ totlen
),
8218 arg
->expand_length
);
8219 totlen
+= arg
->expand_length
;
8221 xbuf
[totlen
++] = '\n';
8222 xbuf
[totlen
++] = ' ';
8224 /* If a macro argument with newlines is used multiple times,
8225 then only expand the newlines once. This avoids creating output
8226 lines which don't correspond to any input line, which confuses
8228 if (arg
->use_count
> 1 && arg
->newlines
> 0) {
8229 /* Don't bother doing change_newlines for subsequent
8233 = change_newlines (arg
->expanded
, arg
->expand_length
);
8237 if (totlen
> xbuf_len
)
8241 /* If there is anything left of the definition after handling
8242 the arg list, copy that in too. */
8244 for (i
= offset
; i
< defn
->length
; i
++) {
8245 /* if we've reached the end of the macro */
8248 if (! (rest_zero
&& last_ap
!= NULL
&& last_ap
->rest_args
8249 && last_ap
->raw_after
!= 0))
8250 xbuf
[totlen
++] = exp
[i
];
8256 for (i
= 0; i
< nargs
; i
++) {
8257 if (args
[i
].free1
!= 0)
8258 free (args
[i
].free1
);
8259 if (args
[i
].free2
!= 0)
8260 free (args
[i
].free2
);
8264 xbuf
= defn
->expansion
;
8265 xbuf_len
= defn
->length
;
8268 /* Now put the expansion on the input stack
8269 so our caller will commence reading from it. */
8271 register FILE_BUF
*ip2
;
8273 ip2
= &instack
[++indepth
];
8276 ip2
->nominal_fname
= 0;
8278 /* This may not be exactly correct, but will give much better error
8279 messages for nested macro calls than using a line number of zero. */
8280 ip2
->lineno
= start_line
;
8282 ip2
->length
= xbuf_len
;
8284 ip2
->free_ptr
= (nargs
> 0) ? xbuf
: 0;
8286 ip2
->if_stack
= if_stack
;
8287 ip2
->system_header_p
= 0;
8289 /* Recursive macro use sometimes works traditionally.
8290 #define foo(x,y) bar (x (y,0), y)
8294 hp
->type
= T_DISABLED
;
8298 /* Parse a macro argument and store the info on it into *ARGPTR.
8299 REST_ARGS is passed to macarg1 to make it absorb the rest of the args.
8300 Return nonzero to indicate a syntax error. */
8303 macarg (argptr
, rest_args
)
8304 register struct argdata
*argptr
;
8307 FILE_BUF
*ip
= &instack
[indepth
];
8313 /* Try to parse as much of the argument as exists at this
8314 input stack level. */
8315 U_CHAR
*bp
= macarg1 (ip
->bufp
, ip
->buf
+ ip
->length
,
8316 &paren
, &newlines
, &comments
, rest_args
);
8318 /* If we find the end of the argument at this level,
8319 set up *ARGPTR to point at it in the input stack. */
8320 if (!(ip
->fname
!= 0 && (newlines
!= 0 || comments
!= 0))
8321 && bp
!= ip
->buf
+ ip
->length
) {
8323 argptr
->raw
= ip
->bufp
;
8324 argptr
->raw_length
= bp
- ip
->bufp
;
8325 argptr
->newlines
= newlines
;
8329 /* This input stack level ends before the macro argument does.
8330 We must pop levels and keep parsing.
8331 Therefore, we must allocate a temporary buffer and copy
8332 the macro argument into it. */
8333 int bufsize
= bp
- ip
->bufp
;
8334 int extra
= newlines
;
8335 U_CHAR
*buffer
= (U_CHAR
*) xmalloc (bufsize
+ extra
+ 1);
8336 int final_start
= 0;
8338 bcopy ((char *) ip
->bufp
, (char *) buffer
, bufsize
);
8340 ip
->lineno
+= newlines
;
8342 while (bp
== ip
->buf
+ ip
->length
) {
8343 if (instack
[indepth
].macro
== 0) {
8344 result
= "unterminated macro call";
8347 ip
->macro
->type
= T_MACRO
;
8349 free (ip
->free_ptr
);
8350 ip
= &instack
[--indepth
];
8353 bp
= macarg1 (ip
->bufp
, ip
->buf
+ ip
->length
, &paren
,
8354 &newlines
, &comments
, rest_args
);
8355 final_start
= bufsize
;
8356 bufsize
+= bp
- ip
->bufp
;
8358 buffer
= (U_CHAR
*) xrealloc (buffer
, bufsize
+ extra
+ 1);
8359 bcopy ((char *) ip
->bufp
, (char *) (buffer
+ bufsize
- (bp
- ip
->bufp
)),
8362 ip
->lineno
+= newlines
;
8365 /* Now, if arg is actually wanted, record its raw form,
8366 discarding comments and duplicating newlines in whatever
8367 part of it did not come from a macro expansion.
8368 EXTRA space has been preallocated for duplicating the newlines.
8369 FINAL_START is the index of the start of that part. */
8371 argptr
->raw
= buffer
;
8372 argptr
->raw_length
= bufsize
;
8373 argptr
->free1
= buffer
;
8374 argptr
->newlines
= newlines
;
8375 if ((newlines
|| comments
) && ip
->fname
!= 0)
8378 discard_comments (argptr
->raw
+ final_start
,
8379 argptr
->raw_length
- final_start
,
8381 argptr
->raw
[argptr
->raw_length
] = 0;
8382 if (argptr
->raw_length
> bufsize
+ extra
)
8387 /* If we are not discarding this argument,
8388 macroexpand it and compute its length as stringified.
8389 All this info goes into *ARGPTR. */
8392 register U_CHAR
*buf
, *lim
;
8393 register int totlen
;
8396 lim
= buf
+ argptr
->raw_length
;
8398 while (buf
!= lim
&& is_space
[*buf
])
8400 while (buf
!= lim
&& is_space
[lim
[-1]])
8402 totlen
= traditional
? 0 : 2; /* Count opening and closing quote. */
8403 while (buf
!= lim
) {
8404 register U_CHAR c
= *buf
++;
8406 /* Internal sequences of whitespace are replaced by one space
8407 in most cases, but not always. So count all the whitespace
8408 in case we need to keep it all. */
8411 SKIP_ALL_WHITE_SPACE (buf
);
8414 if (c
== '\"' || c
== '\\') /* escape these chars */
8416 else if (!isprint (c
))
8419 argptr
->stringified_length
= totlen
;
8424 /* Scan text from START (inclusive) up to LIMIT (exclusive),
8425 counting parens in *DEPTHPTR,
8426 and return if reach LIMIT
8427 or before a `)' that would make *DEPTHPTR negative
8428 or before a comma when *DEPTHPTR is zero.
8429 Single and double quotes are matched and termination
8430 is inhibited within them. Comments also inhibit it.
8431 Value returned is pointer to stopping place.
8433 Increment *NEWLINES each time a newline is passed.
8434 REST_ARGS notifies macarg1 that it should absorb the rest of the args.
8435 Set *COMMENTS to 1 if a comment is seen. */
8438 macarg1 (start
, limit
, depthptr
, newlines
, comments
, rest_args
)
8440 register U_CHAR
*limit
;
8441 int *depthptr
, *newlines
, *comments
;
8444 register U_CHAR
*bp
= start
;
8446 while (bp
< limit
) {
8452 if (--(*depthptr
) < 0)
8456 /* Traditionally, backslash makes following char not special. */
8457 if (bp
+ 1 < limit
&& traditional
)
8460 /* But count source lines anyway. */
8469 if (bp
[1] == '\\' && bp
[2] == '\n')
8470 newline_fix (bp
+ 1);
8473 for (bp
+= 2; bp
< limit
; bp
++) {
8476 else if (*bp
== '*') {
8477 if (bp
[-1] == '/' && warn_comments
)
8478 warning ("`/*' within comment");
8479 if (bp
[1] == '\\' && bp
[2] == '\n')
8480 newline_fix (bp
+ 1);
8487 } else if (bp
[1] == '/' && cplusplus_comments
) {
8489 for (bp
+= 2; bp
< limit
; bp
++) {
8495 warning ("multiline `//' comment");
8504 for (quotec
= *bp
++; bp
+ 1 < limit
&& *bp
!= quotec
; bp
++) {
8509 while (*bp
== '\\' && bp
[1] == '\n') {
8512 } else if (*bp
== '\n') {
8521 /* if we've returned to lowest level and we aren't absorbing all args */
8522 if ((*depthptr
) == 0 && rest_args
== 0)
8532 /* Discard comments and duplicate newlines
8533 in the string of length LENGTH at START,
8534 except inside of string constants.
8535 The string is copied into itself with its beginning staying fixed.
8537 NEWLINES is the number of newlines that must be duplicated.
8538 We assume that that much extra space is available past the end
8542 discard_comments (start
, length
, newlines
)
8547 register U_CHAR
*ibp
;
8548 register U_CHAR
*obp
;
8549 register U_CHAR
*limit
;
8552 /* If we have newlines to duplicate, copy everything
8553 that many characters up. Then, in the second part,
8554 we will have room to insert the newlines
8556 NEWLINES may actually be too large, because it counts
8557 newlines in string constants, and we don't duplicate those.
8558 But that does no harm. */
8560 ibp
= start
+ length
;
8561 obp
= ibp
+ newlines
;
8563 while (limit
!= ibp
)
8567 ibp
= start
+ newlines
;
8568 limit
= start
+ length
+ newlines
;
8571 while (ibp
< limit
) {
8572 *obp
++ = c
= *ibp
++;
8575 /* Duplicate the newline. */
8587 if (*ibp
== '\\' && ibp
[1] == '\n')
8589 /* Delete any comment. */
8590 if (cplusplus_comments
&& ibp
[0] == '/') {
8591 /* Comments are equivalent to spaces. */
8594 while (ibp
< limit
&& (*ibp
!= '\n' || ibp
[-1] == '\\'))
8598 if (ibp
[0] != '*' || ibp
+ 1 >= limit
)
8600 /* Comments are equivalent to spaces.
8601 For -traditional, a comment is equivalent to nothing. */
8607 while (ibp
+ 1 < limit
) {
8609 && ibp
[1] == '\\' && ibp
[2] == '\n')
8610 newline_fix (ibp
+ 1);
8611 if (ibp
[0] == '*' && ibp
[1] == '/')
8620 /* Notice and skip strings, so that we don't
8621 think that comments start inside them,
8622 and so we don't duplicate newlines in them. */
8625 while (ibp
< limit
) {
8626 *obp
++ = c
= *ibp
++;
8629 if (c
== '\n' && quotec
== '\'')
8631 if (c
== '\\' && ibp
< limit
) {
8632 while (*ibp
== '\\' && ibp
[1] == '\n')
8645 /* Turn newlines to spaces in the string of length LENGTH at START,
8646 except inside of string constants.
8647 The string is copied into itself with its beginning staying fixed. */
8650 change_newlines (start
, length
)
8654 register U_CHAR
*ibp
;
8655 register U_CHAR
*obp
;
8656 register U_CHAR
*limit
;
8660 limit
= start
+ length
;
8663 while (ibp
< limit
) {
8664 *obp
++ = c
= *ibp
++;
8667 /* If this is a NEWLINE NEWLINE, then this is a real newline in the
8668 string. Skip past the newline and its duplicate.
8669 Put a space in the output. */
8680 /* Notice and skip strings, so that we don't delete newlines in them. */
8683 while (ibp
< limit
) {
8684 *obp
++ = c
= *ibp
++;
8687 if (c
== '\n' && quotec
== '\'')
8698 /* my_strerror - return the descriptive text associated with an
8702 my_strerror (errnum
)
8708 #ifndef HAVE_STRERROR
8709 result
= (char *) ((errnum
< sys_nerr
) ? sys_errlist
[errnum
] : 0);
8711 result
= strerror (errnum
);
8714 /* VAXCRTL's strerror() takes an optional second argument, which only
8715 matters when the first argument is EVMSERR. However, it's simplest
8716 just to pass it unconditionally. `vaxc$errno' is declared in
8717 <errno.h>, and maintained by the library in parallel with `errno'.
8718 We assume that caller's `errnum' either matches the last setting of
8719 `errno' by the library or else does not have the value `EVMSERR'. */
8721 result
= strerror (errnum
, vaxc$errno
);
8725 result
= "undocumented I/O error";
8730 /* error - print error message and increment count of errors. */
8733 error (PRINTF_ALIST (msg
))
8738 VA_START (args
, msg
);
8749 FILE_BUF
*ip
= NULL
;
8751 print_containing_files ();
8753 for (i
= indepth
; i
>= 0; i
--)
8754 if (instack
[i
].fname
!= NULL
) {
8760 fprintf (stderr
, "%s:%d: ", ip
->nominal_fname
, ip
->lineno
);
8761 vfprintf (stderr
, msg
, args
);
8762 fprintf (stderr
, "\n");
8766 /* Error including a message from `errno'. */
8769 error_from_errno (name
)
8773 FILE_BUF
*ip
= NULL
;
8775 print_containing_files ();
8777 for (i
= indepth
; i
>= 0; i
--)
8778 if (instack
[i
].fname
!= NULL
) {
8784 fprintf (stderr
, "%s:%d: ", ip
->nominal_fname
, ip
->lineno
);
8786 fprintf (stderr
, "%s: %s\n", name
, my_strerror (errno
));
8791 /* Print error message but don't count it. */
8794 warning (PRINTF_ALIST (msg
))
8799 VA_START (args
, msg
);
8800 vwarning (msg
, args
);
8805 vwarning (msg
, args
)
8810 FILE_BUF
*ip
= NULL
;
8812 if (inhibit_warnings
)
8815 if (warnings_are_errors
)
8818 print_containing_files ();
8820 for (i
= indepth
; i
>= 0; i
--)
8821 if (instack
[i
].fname
!= NULL
) {
8827 fprintf (stderr
, "%s:%d: ", ip
->nominal_fname
, ip
->lineno
);
8828 fprintf (stderr
, "warning: ");
8829 vfprintf (stderr
, msg
, args
);
8830 fprintf (stderr
, "\n");
8834 #if defined (__STDC__) && defined (HAVE_VPRINTF)
8835 error_with_line (int line
, PRINTF_ALIST (msg
))
8837 error_with_line (line
, PRINTF_ALIST (msg
))
8844 VA_START (args
, msg
);
8845 verror_with_line (line
, msg
, args
);
8850 verror_with_line (line
, msg
, args
)
8856 FILE_BUF
*ip
= NULL
;
8858 print_containing_files ();
8860 for (i
= indepth
; i
>= 0; i
--)
8861 if (instack
[i
].fname
!= NULL
) {
8867 fprintf (stderr
, "%s:%d: ", ip
->nominal_fname
, line
);
8868 vfprintf (stderr
, msg
, args
);
8869 fprintf (stderr
, "\n");
8874 #if defined (__STDC__) && defined (HAVE_VPRINTF)
8875 warning_with_line (int line
, PRINTF_ALIST (msg
))
8877 warning_with_line (line
, PRINTF_ALIST (msg
))
8884 VA_START (args
, msg
);
8885 vwarning_with_line (line
, msg
, args
);
8890 vwarning_with_line (line
, msg
, args
)
8896 FILE_BUF
*ip
= NULL
;
8898 if (inhibit_warnings
)
8901 if (warnings_are_errors
)
8904 print_containing_files ();
8906 for (i
= indepth
; i
>= 0; i
--)
8907 if (instack
[i
].fname
!= NULL
) {
8913 fprintf (stderr
, line
? "%s:%d: " : "%s: ", ip
->nominal_fname
, line
);
8914 fprintf (stderr
, "warning: ");
8915 vfprintf (stderr
, msg
, args
);
8916 fprintf (stderr
, "\n");
8919 /* Print an error message and maybe count it. */
8922 pedwarn (PRINTF_ALIST (msg
))
8927 VA_START (args
, msg
);
8928 if (pedantic_errors
)
8931 vwarning (msg
, args
);
8936 #if defined (__STDC__) && defined (HAVE_VPRINTF)
8937 pedwarn_with_line (int line
, PRINTF_ALIST (msg
))
8939 pedwarn_with_line (line
, PRINTF_ALIST (msg
))
8946 VA_START (args
, msg
);
8947 if (pedantic_errors
)
8948 verror_with_line (line
, msg
, args
);
8950 vwarning_with_line (line
, msg
, args
);
8954 /* Report a warning (or an error if pedantic_errors)
8955 giving specified file name and line number, not current. */
8958 #if defined (__STDC__) && defined (HAVE_VPRINTF)
8959 pedwarn_with_file_and_line (char *file
, int line
, PRINTF_ALIST (msg
))
8961 pedwarn_with_file_and_line (file
, line
, PRINTF_ALIST (msg
))
8969 if (!pedantic_errors
&& inhibit_warnings
)
8972 fprintf (stderr
, "%s:%d: ", file
, line
);
8973 if (pedantic_errors
)
8975 if (!pedantic_errors
)
8976 fprintf (stderr
, "warning: ");
8977 VA_START (args
, msg
);
8978 vfprintf (stderr
, msg
, args
);
8980 fprintf (stderr
, "\n");
8983 /* Print the file names and line numbers of the #include
8984 directives which led to the current file. */
8987 print_containing_files ()
8989 FILE_BUF
*ip
= NULL
;
8993 /* If stack of files hasn't changed since we last printed
8994 this info, don't repeat it. */
8995 if (last_error_tick
== input_file_stack_tick
)
8998 for (i
= indepth
; i
>= 0; i
--)
8999 if (instack
[i
].fname
!= NULL
) {
9004 /* Give up if we don't find a source file. */
9008 /* Find the other, outer source files. */
9009 for (i
--; i
>= 0; i
--)
9010 if (instack
[i
].fname
!= NULL
) {
9014 fprintf (stderr
, "In file included");
9016 fprintf (stderr
, ",\n ");
9019 fprintf (stderr
, " from %s:%d", ip
->nominal_fname
, ip
->lineno
);
9022 fprintf (stderr
, ":\n");
9024 /* Record we have printed the status as of this time. */
9025 last_error_tick
= input_file_stack_tick
;
9028 /* Return the line at which an error occurred.
9029 The error is not necessarily associated with the current spot
9030 in the input stack, so LINE says where. LINE will have been
9031 copied from ip->lineno for the current input level.
9032 If the current level is for a file, we return LINE.
9033 But if the current level is not for a file, LINE is meaningless.
9034 In that case, we return the lineno of the innermost file. */
9037 line_for_error (line
)
9043 for (i
= indepth
; i
>= 0; ) {
9044 if (instack
[i
].fname
!= 0)
9049 line1
= instack
[i
].lineno
;
9057 * If OBUF doesn't have NEEDED bytes after OPTR, make it bigger.
9059 * As things stand, nothing is ever placed in the output buffer to be
9060 * removed again except when it's KNOWN to be part of an identifier,
9061 * so flushing and moving down everything left, instead of expanding,
9065 /* You might think void was cleaner for the return type,
9066 but that would get type mismatch in check_expand in strict ANSI. */
9069 grow_outbuf (obuf
, needed
)
9070 register FILE_BUF
*obuf
;
9071 register int needed
;
9076 if (obuf
->length
- (obuf
->bufp
- obuf
->buf
) > needed
)
9079 /* Make it at least twice as big as it is now. */
9081 /* Make it have at least 150% of the free space we will need. */
9082 minsize
= (3 * needed
) / 2 + (obuf
->bufp
- obuf
->buf
);
9083 if (minsize
> obuf
->length
)
9084 obuf
->length
= minsize
;
9086 if ((p
= (U_CHAR
*) xrealloc (obuf
->buf
, obuf
->length
)) == NULL
)
9089 obuf
->bufp
= p
+ (obuf
->bufp
- obuf
->buf
);
9095 /* Symbol table for macro names and special symbols */
9098 * install a name in the main hash table, even if it is already there.
9099 * name stops with first non alphanumeric, except leading '#'.
9100 * caller must check against redefinition if that is desired.
9101 * delete_macro () removes things installed by install () in fifo order.
9102 * this is important because of the `defined' special symbol used
9103 * in #if, and also if pushdef/popdef directives are ever implemented.
9105 * If LEN is >= 0, it is the length of the name.
9106 * Otherwise, compute the length by scanning the entire name.
9108 * If HASH is >= 0, it is the precomputed hash code.
9109 * Otherwise, compute the hash code.
9113 install (name
, len
, type
, value
, hash
)
9116 enum node_type type
;
9120 register HASHNODE
*hp
;
9121 register int i
, bucket
;
9122 register U_CHAR
*p
, *q
;
9126 while (is_idchar
[*p
])
9132 hash
= hashf (name
, len
, HASHSIZE
);
9134 i
= sizeof (HASHNODE
) + len
+ 1;
9135 hp
= (HASHNODE
*) xmalloc (i
);
9137 hp
->bucket_hdr
= &hashtab
[bucket
];
9138 hp
->next
= hashtab
[bucket
];
9139 hashtab
[bucket
] = hp
;
9141 if (hp
->next
!= NULL
)
9142 hp
->next
->prev
= hp
;
9145 hp
->value
.cpval
= value
;
9146 hp
->name
= ((U_CHAR
*) hp
) + sizeof (HASHNODE
);
9149 for (i
= 0; i
< len
; i
++)
9156 * find the most recent hash node for name name (ending with first
9157 * non-identifier char) installed by install
9159 * If LEN is >= 0, it is the length of the name.
9160 * Otherwise, compute the length by scanning the entire name.
9162 * If HASH is >= 0, it is the precomputed hash code.
9163 * Otherwise, compute the hash code.
9167 lookup (name
, len
, hash
)
9172 register U_CHAR
*bp
;
9173 register HASHNODE
*bucket
;
9176 for (bp
= name
; is_idchar
[*bp
]; bp
++) ;
9181 hash
= hashf (name
, len
, HASHSIZE
);
9183 bucket
= hashtab
[hash
];
9185 if (bucket
->length
== len
&& bcmp (bucket
->name
, name
, len
) == 0)
9187 bucket
= bucket
->next
;
9193 * Delete a hash node. Some weirdness to free junk from macros.
9194 * More such weirdness will have to be added if you define more hash
9195 * types that need it.
9198 /* Note that the DEFINITION of a macro is removed from the hash table
9199 but its storage is not freed. This would be a storage leak
9200 except that it is not reasonable to keep undefining and redefining
9201 large numbers of macros many times.
9202 In any case, this is necessary, because a macro can be #undef'd
9203 in the middle of reading the arguments to a call to it.
9204 If #undef freed the DEFINITION, that would crash. */
9211 if (hp
->prev
!= NULL
)
9212 hp
->prev
->next
= hp
->next
;
9213 if (hp
->next
!= NULL
)
9214 hp
->next
->prev
= hp
->prev
;
9216 /* Make sure that the bucket chain header that the deleted guy was
9217 on points to the right thing afterwards. */
9218 if (hp
== *hp
->bucket_hdr
)
9219 *hp
->bucket_hdr
= hp
->next
;
9222 if (hp
->type
== T_MACRO
) {
9223 DEFINITION
*d
= hp
->value
.defn
;
9224 struct reflist
*ap
, *nextap
;
9226 for (ap
= d
->pattern
; ap
!= NULL
; ap
= nextap
) {
9237 * return hash function on name. must be compatible with the one
9238 * computed a step at a time, elsewhere
9242 hashf (name
, len
, hashsize
)
9243 register U_CHAR
*name
;
9250 r
= HASHSTEP (r
, *name
++);
9252 return MAKE_POS (r
) % hashsize
;
9256 /* Dump the definition of a single macro HP to OF. */
9259 dump_single_macro (hp
, of
)
9260 register HASHNODE
*hp
;
9263 register DEFINITION
*defn
= hp
->value
.defn
;
9269 /* Print the definition of the macro HP. */
9271 fprintf (of
, "#define %s", hp
->name
);
9273 if (defn
->nargs
>= 0) {
9277 for (i
= 0; i
< defn
->nargs
; i
++) {
9278 dump_arg_n (defn
, i
, of
);
9279 if (i
+ 1 < defn
->nargs
)
9289 for (ap
= defn
->pattern
; ap
!= NULL
; ap
= ap
->next
) {
9290 dump_defn_1 (defn
->expansion
, offset
, ap
->nchars
, of
);
9291 offset
+= ap
->nchars
;
9293 if (ap
->nchars
!= 0)
9295 if (ap
->stringify
) {
9296 switch (ap
->stringify
) {
9297 case SHARP_TOKEN
: fprintf (of
, "#"); break;
9298 case WHITE_SHARP_TOKEN
: fprintf (of
, "# "); break;
9299 case PERCENT_COLON_TOKEN
: fprintf (of
, "%%:"); break;
9300 case WHITE_PERCENT_COLON_TOKEN
: fprintf (of
, "%%: "); break;
9304 if (ap
->raw_before
!= 0) {
9306 switch (ap
->raw_before
) {
9307 case WHITE_SHARP_TOKEN
:
9308 case WHITE_PERCENT_COLON_TOKEN
:
9315 switch (ap
->raw_before
) {
9316 case SHARP_TOKEN
: fprintf (of
, "##"); break;
9317 case WHITE_SHARP_TOKEN
: fprintf (of
, "## "); break;
9318 case PERCENT_COLON_TOKEN
: fprintf (of
, "%%:%%:"); break;
9319 case WHITE_PERCENT_COLON_TOKEN
: fprintf (of
, "%%:%%: "); break;
9326 dump_arg_n (defn
, ap
->argno
, of
);
9327 if (!traditional
&& ap
->raw_after
!= 0) {
9328 switch (ap
->raw_after
) {
9329 case SHARP_TOKEN
: fprintf (of
, "##"); break;
9330 case WHITE_SHARP_TOKEN
: fprintf (of
, " ##"); break;
9331 case PERCENT_COLON_TOKEN
: fprintf (of
, "%%:%%:"); break;
9332 case WHITE_PERCENT_COLON_TOKEN
: fprintf (of
, " %%:%%:"); break;
9338 dump_defn_1 (defn
->expansion
, offset
, defn
->length
- offset
, of
);
9342 /* Dump all macro definitions as #defines to stdout. */
9349 for (bucket
= 0; bucket
< HASHSIZE
; bucket
++) {
9350 register HASHNODE
*hp
;
9352 for (hp
= hashtab
[bucket
]; hp
; hp
= hp
->next
) {
9353 if (hp
->type
== T_MACRO
)
9354 dump_single_macro (hp
, stdout
);
9359 /* Output to OF a substring of a macro definition.
9360 BASE is the beginning of the definition.
9361 Output characters START thru LENGTH.
9362 Unless traditional, discard newlines outside of strings, thus
9363 converting funny-space markers to ordinary spaces. */
9366 dump_defn_1 (base
, start
, length
, of
)
9372 U_CHAR
*p
= base
+ start
;
9373 U_CHAR
*limit
= base
+ start
+ length
;
9376 fwrite (p
, sizeof (*p
), length
, of
);
9379 if (*p
== '\"' || *p
=='\'') {
9380 U_CHAR
*p1
= skip_quoted_string (p
, limit
, 0, NULL_PTR
,
9381 NULL_PTR
, NULL_PTR
);
9382 fwrite (p
, sizeof (*p
), p1
- p
, of
);
9393 /* Print the name of argument number ARGNUM of macro definition DEFN
9395 Recall that DEFN->args.argnames contains all the arg names
9396 concatenated in reverse order with comma-space in between. */
9399 dump_arg_n (defn
, argnum
, of
)
9404 register U_CHAR
*p
= defn
->args
.argnames
;
9405 while (argnum
+ 1 < defn
->nargs
) {
9406 p
= (U_CHAR
*) index ((char *) p
, ' ') + 1;
9410 while (*p
&& *p
!= ',') {
9416 /* Initialize syntactic classifications of characters. */
9419 initialize_char_syntax ()
9424 * Set up is_idchar and is_idstart tables. These should be
9425 * faster than saying (is_alpha (c) || c == '_'), etc.
9426 * Set up these things before calling any routines tthat
9429 for (i
= 'a'; i
<= 'z'; i
++) {
9430 is_idchar
[i
- 'a' + 'A'] = 1;
9432 is_idstart
[i
- 'a' + 'A'] = 1;
9435 for (i
= '0'; i
<= '9'; i
++)
9438 is_idstart
['_'] = 1;
9439 is_idchar
['$'] = dollars_in_ident
;
9440 is_idstart
['$'] = dollars_in_ident
;
9442 /* horizontal space table */
9443 is_hor_space
[' '] = 1;
9444 is_hor_space
['\t'] = 1;
9445 is_hor_space
['\v'] = 1;
9446 is_hor_space
['\f'] = 1;
9447 is_hor_space
['\r'] = 1;
9456 char_name
['\v'] = "vertical tab";
9457 char_name
['\f'] = "formfeed";
9458 char_name
['\r'] = "carriage return";
9461 /* Initialize the built-in macros. */
9464 initialize_builtins (inp
, outp
)
9468 install ((U_CHAR
*) "__LINE__", -1, T_SPECLINE
, NULL_PTR
, -1);
9469 install ((U_CHAR
*) "__DATE__", -1, T_DATE
, NULL_PTR
, -1);
9470 install ((U_CHAR
*) "__FILE__", -1, T_FILE
, NULL_PTR
, -1);
9471 install ((U_CHAR
*) "__BASE_FILE__", -1, T_BASE_FILE
, NULL_PTR
, -1);
9472 install ((U_CHAR
*) "__INCLUDE_LEVEL__", -1, T_INCLUDE_LEVEL
, NULL_PTR
, -1);
9473 install ((U_CHAR
*) "__VERSION__", -1, T_VERSION
, NULL_PTR
, -1);
9474 #ifndef NO_BUILTIN_SIZE_TYPE
9475 install ((U_CHAR
*) "__SIZE_TYPE__", -1, T_SIZE_TYPE
, NULL_PTR
, -1);
9477 #ifndef NO_BUILTIN_PTRDIFF_TYPE
9478 install ((U_CHAR
*) "__PTRDIFF_TYPE__ ", -1, T_PTRDIFF_TYPE
, NULL_PTR
, -1);
9480 install ((U_CHAR
*) "__WCHAR_TYPE__", -1, T_WCHAR_TYPE
, NULL_PTR
, -1);
9481 install ((U_CHAR
*) "__USER_LABEL_PREFIX__", -1, T_USER_LABEL_PREFIX_TYPE
,
9483 install ((U_CHAR
*) "__REGISTER_PREFIX__", -1, T_REGISTER_PREFIX_TYPE
,
9485 install ((U_CHAR
*) "__IMMEDIATE_PREFIX__", -1, T_IMMEDIATE_PREFIX_TYPE
,
9487 install ((U_CHAR
*) "__TIME__", -1, T_TIME
, NULL_PTR
, -1);
9489 install ((U_CHAR
*) "__STDC__", -1, T_CONST
, "1", -1);
9490 install ((U_CHAR
*) "__STDC_VERSION__", -1, T_CONST
, "199409L", -1);
9493 install ((U_CHAR
*) "__OBJC__", -1, T_CONST
, "1", -1);
9494 /* This is supplied using a -D by the compiler driver
9495 so that it is present only when truly compiling with GNU C. */
9496 /* install ((U_CHAR *) "__GNUC__", -1, T_CONST, "2", -1); */
9497 install ((U_CHAR
*) "__HAVE_BUILTIN_SETJMP__", -1, T_CONST
, "1", -1);
9501 char directive
[2048];
9502 U_CHAR
*udirective
= (U_CHAR
*) directive
;
9503 register struct directive
*dp
= &directive_table
[0];
9504 struct tm
*timebuf
= timestamp ();
9506 sprintf (directive
, " __BASE_FILE__ \"%s\"\n",
9507 instack
[0].nominal_fname
);
9508 output_line_directive (inp
, outp
, 0, same_file
);
9509 pass_thru_directive (udirective
, &udirective
[strlen (directive
)],
9512 sprintf (directive
, " __VERSION__ \"%s\"\n", version_string
);
9513 output_line_directive (inp
, outp
, 0, same_file
);
9514 pass_thru_directive (udirective
, &udirective
[strlen (directive
)],
9517 #ifndef NO_BUILTIN_SIZE_TYPE
9518 sprintf (directive
, " __SIZE_TYPE__ %s\n", SIZE_TYPE
);
9519 output_line_directive (inp
, outp
, 0, same_file
);
9520 pass_thru_directive (udirective
, &udirective
[strlen (directive
)],
9524 #ifndef NO_BUILTIN_PTRDIFF_TYPE
9525 sprintf (directive
, " __PTRDIFF_TYPE__ %s\n", PTRDIFF_TYPE
);
9526 output_line_directive (inp
, outp
, 0, same_file
);
9527 pass_thru_directive (udirective
, &udirective
[strlen (directive
)],
9531 sprintf (directive
, " __WCHAR_TYPE__ %s\n", wchar_type
);
9532 output_line_directive (inp
, outp
, 0, same_file
);
9533 pass_thru_directive (udirective
, &udirective
[strlen (directive
)],
9536 sprintf (directive
, " __DATE__ \"%s %2d %4d\"\n",
9537 monthnames
[timebuf
->tm_mon
],
9538 timebuf
->tm_mday
, timebuf
->tm_year
+ 1900);
9539 output_line_directive (inp
, outp
, 0, same_file
);
9540 pass_thru_directive (udirective
, &udirective
[strlen (directive
)],
9543 sprintf (directive
, " __TIME__ \"%02d:%02d:%02d\"\n",
9544 timebuf
->tm_hour
, timebuf
->tm_min
, timebuf
->tm_sec
);
9545 output_line_directive (inp
, outp
, 0, same_file
);
9546 pass_thru_directive (udirective
, &udirective
[strlen (directive
)],
9551 sprintf (directive
, " __STDC__ 1");
9552 output_line_directive (inp
, outp
, 0, same_file
);
9553 pass_thru_directive (udirective
, &udirective
[strlen (directive
)],
9558 sprintf (directive
, " __OBJC__ 1");
9559 output_line_directive (inp
, outp
, 0, same_file
);
9560 pass_thru_directive (udirective
, &udirective
[strlen (directive
)],
9567 * process a given definition string, for initialization
9568 * If STR is just an identifier, define it with value 1.
9569 * If STR has anything after the identifier, then it should
9570 * be identifier=definition.
9574 make_definition (str
, op
)
9579 struct directive
*kt
;
9582 p
= buf
= (U_CHAR
*) str
;
9583 if (!is_idstart
[*p
]) {
9584 error ("malformed option `-D %s'", str
);
9587 while (is_idchar
[*++p
])
9590 while (is_idchar
[*++p
] || *p
== ',' || is_hor_space
[*p
])
9593 p
= (U_CHAR
*) str
; /* Error */
9596 buf
= (U_CHAR
*) alloca (p
- buf
+ 4);
9597 strcpy ((char *)buf
, str
);
9598 strcat ((char *)buf
, " 1");
9599 } else if (*p
!= '=') {
9600 error ("malformed option `-D %s'", str
);
9604 /* Copy the entire option so we can modify it. */
9605 buf
= (U_CHAR
*) alloca (2 * strlen (str
) + 1);
9606 strncpy ((char *) buf
, str
, p
- (U_CHAR
*) str
);
9607 /* Change the = to a space. */
9608 buf
[p
- (U_CHAR
*) str
] = ' ';
9609 /* Scan for any backslash-newline and remove it. */
9611 q
= &buf
[p
- (U_CHAR
*) str
];
9613 if (*p
== '\"' || *p
== '\'') {
9614 int unterminated
= 0;
9615 U_CHAR
*p1
= skip_quoted_string (p
, p
+ strlen ((char *) p
), 0,
9616 NULL_PTR
, NULL_PTR
, &unterminated
);
9620 if (*p
== '\\' && p
[1] == '\n')
9624 } else if (*p
== '\\' && p
[1] == '\n')
9626 /* Change newline chars into newline-markers. */
9627 else if (*p
== '\n')
9639 ip
= &instack
[++indepth
];
9640 ip
->nominal_fname
= ip
->fname
= "*Initialization*";
9642 ip
->buf
= ip
->bufp
= buf
;
9643 ip
->length
= strlen ((char *) buf
);
9647 ip
->if_stack
= if_stack
;
9648 ip
->system_header_p
= 0;
9650 for (kt
= directive_table
; kt
->type
!= T_DEFINE
; kt
++)
9653 /* Pass NULL instead of OP, since this is a "predefined" macro. */
9654 do_define (buf
, buf
+ strlen ((char *) buf
), NULL_PTR
, kt
);
9658 /* JF, this does the work for the -U option */
9661 make_undef (str
, op
)
9666 struct directive
*kt
;
9668 ip
= &instack
[++indepth
];
9669 ip
->nominal_fname
= ip
->fname
= "*undef*";
9671 ip
->buf
= ip
->bufp
= (U_CHAR
*) str
;
9672 ip
->length
= strlen (str
);
9676 ip
->if_stack
= if_stack
;
9677 ip
->system_header_p
= 0;
9679 for (kt
= directive_table
; kt
->type
!= T_UNDEF
; kt
++)
9682 do_undef ((U_CHAR
*) str
, (U_CHAR
*) str
+ strlen (str
), op
, kt
);
9686 /* Process the string STR as if it appeared as the body of a #assert.
9687 OPTION is the option name for which STR was the argument. */
9690 make_assertion (option
, str
)
9695 struct directive
*kt
;
9696 U_CHAR
*buf
, *p
, *q
;
9698 /* Copy the entire option so we can modify it. */
9699 buf
= (U_CHAR
*) alloca (strlen (str
) + 1);
9700 strcpy ((char *) buf
, str
);
9701 /* Scan for any backslash-newline and remove it. */
9704 if (*p
== '\\' && p
[1] == '\n')
9712 if (!is_idstart
[*p
]) {
9713 error ("malformed option `%s %s'", option
, str
);
9716 while (is_idchar
[*++p
])
9718 SKIP_WHITE_SPACE (p
);
9719 if (! (*p
== 0 || *p
== '(')) {
9720 error ("malformed option `%s %s'", option
, str
);
9724 ip
= &instack
[++indepth
];
9725 ip
->nominal_fname
= ip
->fname
= "*Initialization*";
9727 ip
->buf
= ip
->bufp
= buf
;
9728 ip
->length
= strlen ((char *) buf
);
9732 ip
->if_stack
= if_stack
;
9733 ip
->system_header_p
= 0;
9735 for (kt
= directive_table
; kt
->type
!= T_ASSERT
; kt
++)
9738 /* Pass NULL as output ptr to do_define since we KNOW it never does
9740 do_assert (buf
, buf
+ strlen ((char *) buf
) , NULL_PTR
, kt
);
9744 /* The previous include prefix, if any, is PREV_FILE_NAME.
9745 Allocate a new include prefix whose name is the
9746 simplified concatenation of PREFIX and NAME,
9747 with a trailing / added if needed.
9748 But return 0 if the include prefix should be ignored,
9749 e.g. because it is a duplicate of PREV_FILE_NAME. */
9751 static struct file_name_list
*
9752 new_include_prefix (prev_file_name
, prefix
, name
)
9753 struct file_name_list
*prev_file_name
;
9758 fatal ("Directory name missing after command line option");
9761 /* Ignore the empty string. */
9764 struct file_name_list
*dir
9765 = ((struct file_name_list
*)
9766 xmalloc (sizeof (struct file_name_list
)
9767 + strlen (prefix
) + strlen (name
) + 1 /* for trailing / */));
9769 strcpy (dir
->fname
, prefix
);
9770 strcat (dir
->fname
, name
);
9771 len
= simplify_filename (dir
->fname
);
9773 /* Convert directory name to a prefix. */
9774 if (dir
->fname
[len
- 1] != '/') {
9775 if (len
== 1 && dir
->fname
[len
- 1] == '.')
9778 dir
->fname
[len
++] = '/';
9779 dir
->fname
[len
] = 0;
9782 /* Ignore a directory whose name matches the previous one. */
9783 if (prev_file_name
&& !strcmp (prev_file_name
->fname
, dir
->fname
)) {
9784 /* But treat `-Idir -I- -Idir' as `-I- -Idir'. */
9785 if (!first_bracket_include
)
9786 first_bracket_include
= prev_file_name
;
9792 /* VMS can't stat dir prefixes, so skip these optimizations in VMS. */
9794 /* Ignore a nonexistent directory. */
9795 if (stat (len
? dir
->fname
: ".", &dir
->st
) != 0) {
9796 if (errno
!= ENOENT
&& errno
!= ENOTDIR
)
9797 error_from_errno (dir
->fname
);
9802 /* Ignore a directory whose identity matches the previous one. */
9804 && INO_T_EQ (prev_file_name
->st
.st_ino
, dir
->st
.st_ino
)
9805 && prev_file_name
->st
.st_dev
== dir
->st
.st_dev
) {
9806 /* But treat `-Idir -I- -Idir' as `-I- -Idir'. */
9807 if (!first_bracket_include
)
9808 first_bracket_include
= prev_file_name
;
9815 dir
->c_system_include_path
= 0;
9816 dir
->got_name_map
= 0;
9822 /* Append a chain of `struct file_name_list's
9823 to the end of the main include chain.
9824 FIRST is the beginning of the chain to append, and LAST is the end. */
9827 append_include_chain (first
, last
)
9828 struct file_name_list
*first
, *last
;
9830 struct file_name_list
*dir
;
9832 if (!first
|| !last
)
9838 last_include
->next
= first
;
9840 if (first_bracket_include
== 0)
9841 first_bracket_include
= first
;
9843 for (dir
= first
; ; dir
= dir
->next
) {
9844 int len
= strlen (dir
->fname
) + INCLUDE_LEN_FUDGE
;
9845 if (len
> max_include_len
)
9846 max_include_len
= len
;
9852 last_include
= last
;
9855 /* Add output to `deps_buffer' for the -M switch.
9856 STRING points to the text to be output.
9857 SPACER is ':' for targets, ' ' for dependencies. */
9860 deps_output (string
, spacer
)
9864 int size
= strlen (string
);
9869 #ifndef MAX_OUTPUT_COLUMNS
9870 #define MAX_OUTPUT_COLUMNS 72
9872 if (MAX_OUTPUT_COLUMNS
- 1 /*spacer*/ - 2 /*` \'*/ < deps_column
+ size
9873 && 1 < deps_column
) {
9874 bcopy (" \\\n ", &deps_buffer
[deps_size
], 4);
9881 if (deps_size
+ size
+ 8 > deps_allocated_size
) {
9882 deps_allocated_size
= (deps_size
+ size
+ 50) * 2;
9883 deps_buffer
= xrealloc (deps_buffer
, deps_allocated_size
);
9885 if (spacer
== ' ') {
9886 deps_buffer
[deps_size
++] = ' ';
9889 bcopy (string
, &deps_buffer
[deps_size
], size
);
9891 deps_column
+= size
;
9892 if (spacer
== ':') {
9893 deps_buffer
[deps_size
++] = ':';
9896 deps_buffer
[deps_size
] = 0;
9900 fatal (PRINTF_ALIST (msg
))
9905 fprintf (stderr
, "%s: ", progname
);
9906 VA_START (args
, msg
);
9907 vfprintf (stderr
, msg
, args
);
9909 fprintf (stderr
, "\n");
9910 exit (FATAL_EXIT_CODE
);
9913 /* More 'friendly' abort that prints the line and file.
9914 config.h can #define abort fancy_abort if you like that sort of thing. */
9919 fatal ("Internal gcc abort.");
9923 perror_with_name (name
)
9926 fprintf (stderr
, "%s: ", progname
);
9927 fprintf (stderr
, "%s: %s\n", name
, my_strerror (errno
));
9932 pfatal_with_name (name
)
9935 perror_with_name (name
);
9939 exit (FATAL_EXIT_CODE
);
9943 /* Handler for SIGPIPE. */
9947 /* If this is missing, some compilers complain. */
9950 fatal ("output pipe has been closed");
9956 fatal ("Memory exhausted.");
9964 register GENERIC_PTR ptr
= (GENERIC_PTR
) malloc (size
);
9971 xrealloc (old
, size
)
9975 register GENERIC_PTR ptr
= (GENERIC_PTR
) realloc (old
, size
);
9982 xcalloc (number
, size
)
9983 size_t number
, size
;
9985 register size_t total
= number
* size
;
9986 register GENERIC_PTR ptr
= (GENERIC_PTR
) malloc (total
);
9997 size_t size
= strlen (input
);
9998 char *output
= xmalloc (size
+ 1);
9999 strcpy (output
, input
);
10005 /* Under VMS we need to fix up the "include" specification filename so
10006 that everything following the 1st slash is changed into its correct
10007 VMS file specification. */
10010 hack_vms_include_specification (fname
)
10013 register char *cp
, *cp1
, *cp2
;
10014 int f
, check_filename_before_returning
;
10017 check_filename_before_returning
= 0;
10019 cp
= base_name (fname
);
10022 * Check if we have a vax-c style '#include filename'
10023 * and add the missing .h
10025 if (!index (cp
,'.'))
10028 cp2
= Local
; /* initialize */
10030 /* We are trying to do a number of things here. First of all, we are
10031 trying to hammer the filenames into a standard format, such that later
10032 processing can handle them.
10034 If the file name contains something like [dir.], then it recognizes this
10035 as a root, and strips the ".]". Later processing will add whatever is
10036 needed to get things working properly.
10038 If no device is specified, then the first directory name is taken to be
10039 a device name (or a rooted logical). */
10041 /* See if we found that 1st slash */
10042 if (cp
== 0) return; /* Nothing to do!!! */
10043 if (*cp
!= '/') return; /* Nothing to do!!! */
10044 /* Point to the UNIX filename part (which needs to be fixed!) */
10046 /* If the directory spec is not rooted, we can just copy
10047 the UNIX filename part and we are done */
10048 if (((cp
- fname
) > 1) && ((cp
[-1] == ']') || (cp
[-1] == '>'))) {
10049 if (cp
[-2] != '.') {
10051 * The VMS part ends in a `]', and the preceding character is not a `.'.
10052 * We strip the `]', and then splice the two parts of the name in the
10053 * usual way. Given the default locations for include files in cccp.c,
10054 * we will only use this code if the user specifies alternate locations
10055 * with the /include (-I) switch on the command line. */
10056 cp
-= 1; /* Strip "]" */
10057 cp1
--; /* backspace */
10060 * The VMS part has a ".]" at the end, and this will not do. Later
10061 * processing will add a second directory spec, and this would be a syntax
10062 * error. Thus we strip the ".]", and thus merge the directory specs.
10063 * We also backspace cp1, so that it points to a '/'. This inhibits the
10064 * generation of the 000000 root directory spec (which does not belong here
10067 cp
-= 2; /* Strip ".]" */
10068 cp1
--; }; /* backspace */
10071 /* We drop in here if there is no VMS style directory specification yet.
10072 * If there is no device specification either, we make the first dir a
10073 * device and try that. If we do not do this, then we will be essentially
10074 * searching the users default directory (as if they did a #include "asdf.h").
10076 * Then all we need to do is to push a '[' into the output string. Later
10077 * processing will fill this in, and close the bracket.
10079 if (cp
[-1] != ':') *cp2
++ = ':'; /* dev not in spec. take first dir */
10080 *cp2
++ = '['; /* Open the directory specification */
10083 /* at this point we assume that we have the device spec, and (at least
10084 the opening "[" for a directory specification. We may have directories
10085 specified already */
10087 /* If there are no other slashes then the filename will be
10088 in the "root" directory. Otherwise, we need to add
10089 directory specifications. */
10090 if (index (cp1
, '/') == 0) {
10091 /* Just add "000000]" as the directory string */
10092 strcpy (cp2
, "000000]");
10093 cp2
+= strlen (cp2
);
10094 check_filename_before_returning
= 1; /* we might need to fool with this later */
10096 /* As long as there are still subdirectories to add, do them. */
10097 while (index (cp1
, '/') != 0) {
10098 /* If this token is "." we can ignore it */
10099 if ((cp1
[0] == '.') && (cp1
[1] == '/')) {
10103 /* Add a subdirectory spec. Do not duplicate "." */
10104 if (cp2
[-1] != '.' && cp2
[-1] != '[' && cp2
[-1] != '<')
10106 /* If this is ".." then the spec becomes "-" */
10107 if ((cp1
[0] == '.') && (cp1
[1] == '.') && (cp
[2] == '/')) {
10108 /* Add "-" and skip the ".." */
10113 /* Copy the subdirectory */
10114 while (*cp1
!= '/') *cp2
++= *cp1
++;
10115 cp1
++; /* Skip the "/" */
10117 /* Close the directory specification */
10118 if (cp2
[-1] == '.') /* no trailing periods */
10122 /* Now add the filename */
10123 while (*cp1
) *cp2
++ = *cp1
++;
10125 /* Now append it to the original VMS spec. */
10126 strcpy (cp
, Local
);
10128 /* If we put a [000000] in the filename, try to open it first. If this fails,
10129 remove the [000000], and return that name. This provides flexibility
10130 to the user in that they can use both rooted and non-rooted logical names
10131 to point to the location of the file. */
10133 if (check_filename_before_returning
) {
10134 f
= open (fname
, O_RDONLY
, 0666);
10136 /* The file name is OK as it is, so return it as is. */
10140 /* The filename did not work. Try to remove the [000000] from the name,
10142 cp
= index (fname
, '[');
10143 cp2
= index (fname
, ']') + 1;
10144 strcpy (cp
, cp2
); /* this gets rid of it */
10152 /* These are the read/write replacement routines for
10153 VAX-11 "C". They make read/write behave enough
10154 like their UNIX counterparts that CCCP will work */
10157 read (fd
, buf
, size
)
10162 #undef read /* Get back the REAL read routine */
10164 register int total
= 0;
10166 /* Read until the buffer is exhausted */
10168 /* Limit each read to 32KB */
10169 i
= (size
> (32*1024)) ? (32*1024) : size
;
10170 i
= read (fd
, buf
, i
);
10172 if (i
== 0) return (total
);
10175 /* Account for this read */
10184 write (fd
, buf
, size
)
10189 #undef write /* Get back the REAL write routine */
10193 /* Limit individual writes to 32Kb */
10196 j
= (i
> (32*1024)) ? (32*1024) : i
;
10197 if (write (fd
, buf
, j
) < 0) return (-1);
10198 /* Account for the data written */
10205 /* The following wrapper functions supply additional arguments to the VMS
10206 I/O routines to optimize performance with file handling. The arguments
10208 "mbc=16" - Set multi-block count to 16 (use a 8192 byte buffer).
10209 "deq=64" - When extending the file, extend it in chunks of 32Kbytes.
10210 "fop=tef"- Truncate unused portions of file when closing file.
10211 "shr=nil"- Disallow file sharing while file is open. */
10214 freopen (fname
, type
, oldfile
)
10219 #undef freopen /* Get back the REAL fopen routine */
10220 if (strcmp (type
, "w") == 0)
10221 return freopen (fname
, type
, oldfile
, "mbc=16", "deq=64", "fop=tef", "shr=nil");
10222 return freopen (fname
, type
, oldfile
, "mbc=16");
10226 fopen (fname
, type
)
10230 #undef fopen /* Get back the REAL fopen routine */
10231 /* The gcc-vms-1.42 distribution's header files prototype fopen with two
10232 fixed arguments, which matches ANSI's specification but not VAXCRTL's
10233 pre-ANSI implementation. This hack circumvents the mismatch problem. */
10234 FILE *(*vmslib_fopen
)() = (FILE *(*)()) fopen
;
10237 return (*vmslib_fopen
) (fname
, type
, "mbc=32",
10238 "deq=64", "fop=tef", "shr=nil");
10240 return (*vmslib_fopen
) (fname
, type
, "mbc=32");
10244 open (fname
, flags
, prot
)
10249 #undef open /* Get back the REAL open routine */
10250 return open (fname
, flags
, prot
, "mbc=16", "deq=64", "fop=tef");
10253 /* more VMS hackery */
10257 extern unsigned long sys$
parse(), sys$
search();
10259 /* Work around another library bug. If a file is located via a searchlist,
10260 and if the device it's on is not the same device as the one specified
10261 in the first element of that searchlist, then both stat() and fstat()
10262 will fail to return info about it. `errno' will be set to EVMSERR, and
10263 `vaxc$errno' will be set to SS$_NORMAL due yet another bug in stat()!
10264 We can get around this by fully parsing the filename and then passing
10265 that absolute name to stat().
10267 Without this fix, we can end up failing to find header files, which is
10268 bad enough, but then compounding the problem by reporting the reason for
10269 failure as "normal successful completion." */
10271 #undef fstat /* get back to library version */
10274 VMS_fstat (fd
, statbuf
)
10276 struct stat
*statbuf
;
10278 int result
= fstat (fd
, statbuf
);
10283 char nambuf
[NAM$C_MAXRSS
+1];
10285 if ((fp
= fdopen (fd
, "r")) != 0 && fgetname (fp
, nambuf
) != 0)
10286 result
= VMS_stat (nambuf
, statbuf
);
10287 /* No fclose(fp) here; that would close(fd) as well. */
10294 VMS_stat (name
, statbuf
)
10296 struct stat
*statbuf
;
10298 int result
= stat (name
, statbuf
);
10304 char exp_nam
[NAM$C_MAXRSS
+1], /* expanded name buffer for sys$parse */
10305 res_nam
[NAM$C_MAXRSS
+1]; /* resultant name buffer for sys$search */
10308 fab
.fab$l_fna
= (char *) name
;
10309 fab
.fab$b_fns
= (unsigned char) strlen (name
);
10310 fab
.fab$l_nam
= (void *) &nam
;
10312 nam
.nam$l_esa
= exp_nam
, nam
.nam$b_ess
= sizeof exp_nam
- 1;
10313 nam
.nam$l_rsa
= res_nam
, nam
.nam$b_rss
= sizeof res_nam
- 1;
10314 nam
.nam$b_nop
= NAM$M_PWD
| NAM$M_NOCONCEAL
;
10315 if (sys$
parse (&fab
) & 1)
10317 if (sys$
search (&fab
) & 1)
10319 res_nam
[nam
.nam$b_rsl
] = '\0';
10320 result
= stat (res_nam
, statbuf
);
10322 /* Clean up searchlist context cached by the system. */
10323 nam
.nam$b_nop
= NAM$M_SYNCHK
;
10324 fab
.fab$l_fna
= 0, fab
.fab$b_fns
= 0;
10325 (void) sys$
parse (&fab
);